@font-face {
    font-family: 'HelveticaNowDisplay';
    src: url('fonts/HelveticaNowDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNowDisplay';
    src: url('fonts/HelveticaNowDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNowDisplay';
    src: url('fonts/HelveticaNowDisplay-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/*==Font-setup==*/

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'HelveticaNowDisplay';
    font-size: 16px;
    color: #000;
    background: #FBFBFB;
}

a,
a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
  margin: 0;
}

/*==Basic-setup==*/
.scrolltotop {
  display: none;
}

.scrolltotop:hover {
  background: #B48350;
}

.scrolltotop i {
  color: #ffff;
  font-size: 20px;
}

.container {
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 20px;
}

/*==container-setup==*/
.header-area {
  padding: 10px 0;
  background: #1a1a2e;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-item img {
  max-width: 48px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  column-gap: 35px;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
}

.menu-item a {
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.58);
  display: block;
  cursor: pointer;
  padding: 10px 0;
  padding-left: 10px;
  text-transform: capitalize;
}

.main-nav ul li:nth-of-type(1) span {
  width: 2px;
  height: 36px;
  background: rgba(255, 255, 255, 0.10);
  display: block;
}

#menu-act {
  font-weight: 300;
  color: #B48350;
  position: relative;
}

#menu-act::after {
  display: none;
}

.menu-act2::after {
  left: -10px !important;
}

.header-right-flex {
  display: grid;
  display: flex;
  align-items: center;
  gap: 14px;
  align-items: center;
}

.header-line {
  width: 1px;
  background: rgba(255, 255, 255, 0.30);
  height: 24px;
  min-height: 24px;
}

.header-btn-wrap {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  column-gap: 8px;
  justify-content: end;
  margin-left: auto;
  align-items: center;
}

.header-search-wrap {
  position: relative;
}

.search-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.10);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.search-box {
  display: none;
  position: absolute;
  width: 250px;
  left: 0;
  bottom: -67px;
  z-index: 1100;
}

.search-box.active {
  display: block;
}

.search-icon {
  cursor: pointer;
  font-size: 18px;
  color: #333;
}

.search-wrap {
  border: 2px solid rgba(255, 255, 255, 0.20);
  background: #1B1F3D;
  border-radius: 5px;
}

.search-box input {
  font-family: 'HelveticaNowDisplay';
  font-weight: 400;
  font-size: 16px;
  color: #F9F9FB;
  width: 100%;
  outline: none;
  padding: 12px 30px 12px 10px;
  background: none;
  border: none;
} 

.search-box input::placeholder {
   font-family: 'HelveticaNowDisplay';
  font-weight: 400;
  font-size: 16px;
  color: #F9F9FB;
}

.search-wrap {
  position: relative;
}

.search-submit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
  background: none;
}

.search-submit button {
  background: none;
  border: none;
  cursor: pointer;
}

.search-submit button img {
  width: 20px;
}


/*===language-css===*/
.lang-dropdown-wrap {
    position: relative;
}

.selected-country10 {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.20);
    padding: 0;
    border-radius: 10px;
    cursor: pointer;
    width: 38px;
    height: 38px;
    overflow: hidden;
}

.lang-flag {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.selected-country10 img {
    width: 22px;
    height: auto;
    display: block;
}

/* DROPDOWN */
.lang-dropdown10 {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 130px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    z-index: 1000;
    overflow: hidden;
    animation: fadeDown10 0.18s ease;
}

.lang-dropdown10.open {
    display: block;
}

@keyframes fadeDown10 {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dropdown-item10 {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    transition: background 0.15s;
}

.dropdown-item10:hover {
    background: #f4f4f8;
}

.dropdown-item10 img {
    width: 20px;
    height: auto;
    display: block;
    border-radius: 2px;
}
/*===language-css===*/
.header-btn a {
  font-weight: 400;
  font-size: 13px;
  color: #F9F9FB;
  display: block;
  text-align: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  padding: 8px 20px;
  white-space: nowrap;
  transition: 0.2s all ease;
}

.header-btn1 a:hover {
  background: #B48350;
  border-color: #B48350;

}

.header-btn2 a {
  background: #B48350;
  border-color: #B48350;
}

.header-btn2 a:hover {
  opacity: 0.9;
}

.menu-btn {
  width: 30px;
  cursor: pointer;
  display: none;
}

.menu-btn img {
  width: 28px;
  display: block;
}

.mobil-brand img {
  max-width: 42px;
}

.sidebar-menu {
  position: fixed;
  top: 0;
  left: -400px;
  max-width: 400px;
  width: 100%;
  height: 100vh;
  background: #1B1F3D;
  overflow-y: auto;
  transition: left 0.4s ease;
  z-index: 10000;
  display: none;
}

.sidebar-menu.active {
  left: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.menu-wrap {
  padding: 15px 20px 0 20px;
}

.close-icon {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: red;
}

.close-icon i {
  font-size: 23px;
  color: #F9F9FB;
}

/*==overlay-css==*/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/*==mobil-css-header==*/
.mobil-header-wrap {
  display: none;
}

.mobil-header-wrap ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 12px;
}

.mobil-header-wrap ul li span {
  display: block;
  width: 1px;
  height: 11px;
  background: rgba(255, 255, 255, 0.30);
}

/*==main-content-wrapper==*/
.main-content-wrapper {
  padding: 28px 0;
}

.main-content-main {
  display: grid;
  grid-template-columns: 290px auto;
  column-gap: 24px;
}

.main-content-left {
  border-radius: 20px;
  background: #ffffff;
  padding: 18px;
  align-self: start;
}

.countri-title h2 {
  font-weight: 700;
  font-size: 15px;
  color: #000000;
}

.profile-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  margin-bottom: 6px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.profile-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.profile-nav-back:hover {
  color: #B48350;
}

.profile-nav-arrows {
  display: flex;
  gap: 4px;
}

.profile-nav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.45);
  text-decoration: none;
  transition: all 0.2s;
}

.profile-nav-arrow:hover {
  background: rgba(180, 131, 80, 0.1);
  color: #B48350;
}

.nearby-box {
  margin-top: 10px;
}

.nearby-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  background: rgba(180, 131, 80, 0.08);
  color: #B48350;
  font-family: 'HelveticaNowDisplay', sans-serif;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nearby-btn:hover {
  background: rgba(180, 131, 80, 0.14);
}

.nearby-btn svg {
  flex-shrink: 0;
}

.content-left-box {
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.025);
  padding: 14px 12px;
  margin-top: 10px;
}

.search-countri input {
  font-weight: 400;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.50);
  width: 100%;
  outline: none;
  border: none;
  border-radius: 10px;
  background: #FFF;
  padding: 9px 12px;
}

.search-countri input::placeholder {
   font-family: 'HelveticaNowDisplay';
  font-weight: 400;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.50);
}

.countri-dropdown-wrap {
  margin-top: 14px;
}

.accordion10 {
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.accordion10-wrap + .accordion10-wrap {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.accordion10 .link10 {
  cursor: pointer;
  padding: 8px;
  position: relative;
  border-radius: 10px 10px 0 0;
}

.open10 .link10 {
  background: #ffffff;
}

.accordion10-wrap .link10:hover {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  transition: background 0.2s ease;
}

.link10 ul {
  display: grid;
  grid-template-columns: 26px auto;
  align-items: center;
  column-gap: 7px;
}

.link10 ul li:nth-of-type(1) {
  font-weight: 400;
  font-size: 14px;
  color: #999;
}

.link10 ul li span {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.angle-accordion {
  position: absolute;
  top: 14px;
  left: 12px;
  font-size: 18px;
  color: #595959;
  transition: 0.3s;
}

.angle-accordion {
  right: 12px;
  left: auto;
}

.open10 .angle-accordion {
  transform: rotate(180deg);
  color: #b63b4d;
}

.submenu10 {
  height: 0;
  overflow: hidden;
  background: #ffffff;
  border-radius: 0 0 10px 10px;
}

.open10 .submenu10 {
  max-height: 1000px; 
}

.box {
   padding: 9px 10px 14px 9px;
}

.more {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

.more.hidden {
  height: 0;
}

.submenu10 ul {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 11px;
}

.submenu10 ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  padding: 3px 5px;
  transition: background 0.2s ease;
  cursor: pointer;
}

.submenu10 ul li:hover {
  background: rgba(0, 0, 0, 0.04);
}

.submenu10 ul li:hover h4 {
  color: #B48350;
}

.submenu10 ul li h4 {
  font-weight: 400;
  font-size: 16px;
  color: #999;
}

.submenu10 ul li h3 {
  font-weight: 600;
  font-size: 16px;
  color: #000000;
}

.view-btn {
  font-weight: 600;
  font-size: 16px;
  color: #B88A5A;
  cursor: pointer;
  margin-top: 11px;
  display: none;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.stories-item-wrap h2 {
  font-weight: 600;
  font-size: 20px;
  color: #000000;
  text-transform: capitalize;
  margin-top: 24px;
}

.stories-item {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  outline: 3px solid #B48350;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, outline-color 0.2s ease, box-shadow 0.2s ease;
}

.stories-item:hover {
  transform: scale(1.12);
  outline-color: #D4A76A;
  box-shadow: 0 4px 16px rgba(180, 131, 80, 0.35);
}

.stories-item img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: filter 0.2s ease;
}

.stories-item:hover img {
  filter: brightness(1.08);
}

.stories-flex {
  display: flex;
  align-items: center;
  column-gap: 16px;
  margin-top: 16px;
  margin-bottom: 28px;
}

.item-bord {
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1B1F3D;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(33.5px);
  z-index: 2;
  position: absolute;
  bottom: 0;
  right: 0;
}

/* =============================================
   FILTER SECTION — Premium dark-glass aesthetic
   Brand: #1a1a2e navy | #B48350 gold accent
   ============================================= */

.filter-wrap {
  display: flex;
  align-items: center;
  column-gap: 7px;
  margin-top: 14px;
  flex-wrap: wrap;
  row-gap: 7px;
}

.filter-dropdown {
  position: relative;
}

.filter-btn {
  font-family: 'HelveticaNowDisplay', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #1B1F3D;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #fff;
  padding: 8px 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  column-gap: 8px;
  transition: border-color 0.2s ease;
  white-space: nowrap;
}

.filter-btn:hover,
.filter-dropdown:hover .filter-btn,
.filter-dropdown.active .filter-btn {
  border-color: #B48350;
}

.filter-btn .arrow {
  display: flex;
  align-items: center;
}

.filter-btn .arrow img {
  width: 11px;
  height: 11px;
}

.filter-dropdown.active .filter-btn .arrow img {
  transform: rotate(180deg);
}

.filter-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 220px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  padding: 10px;
  display: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  z-index: 10;
}

.filter-dropdown:hover .filter-menu,
.filter-dropdown.active .filter-menu {
  display: block;
}

.filter-menu label {
  font-family: 'HelveticaNowDisplay', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #1B1F3D;
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 6px 8px;
  cursor: pointer;
  border-radius: 6px;
}

.filter-menu label:hover {
  background: #f5f5f5;
}

/* check-box inside dropdown */
.filter-menu input[type=checkbox] {
  appearance: none;
  height: 16px;
  width: 16px;
  background: #fff;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.filter-menu input[type=checkbox]::after {
  content: "\f00c";
  font-weight: 900;
  font-family: 'Font Awesome 5 Free';
  font-size: 8px;
  color: #fff;
  display: none;
}

.filter-menu input[type=checkbox]:checked {
  background: #B48350;
  border-color: #B48350;
}

.filter-menu input[type=checkbox]:checked::after {
  display: block;
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 6px;
  align-items: center;
}

.quick-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'HelveticaNowDisplay', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #555;
  cursor: pointer;
  user-select: none;
}

.quick-filter input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
}

.quick-filter input[type="checkbox"]::after {
  content: "\f00c";
  font-weight: 900;
  font-family: 'Font Awesome 5 Free';
  font-size: 8px;
  color: #fff;
  display: none;
}

.quick-filter input[type="checkbox"]:checked {
  background: #B48350;
  border-color: #B48350;
}

.quick-filter input[type="checkbox"]:checked::after {
  display: block;
}

.qf-check {
  display: none;
}

.quick-filter em {
  font-style: normal;
  font-weight: 400;
  color: #999;
  font-size: 12px;
}

.best-item-main {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  column-gap: 14px;
  margin-top: 18px;
  row-gap: 14px;
}

.best-img img {
  width: 100%;
  object-fit: cover;
}

.best-item {
  position: relative;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: 12px;
}

.best-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.best-item:hover .best-img img {
  transform: scale(1.04);
}

.best-img {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.best-img img {
  transition: transform 0.35s ease;
}

/* Badge system */
.best-badges {
  position: absolute;
  left: 8px;
  top: 8px;
  display: flex;
  flex-direction: row;
  z-index: 3;
}

.best-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  margin-right: -6px;
  position: relative;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.best-badge::before {
  font-size: 10px;
}

.best-badge::after {
  content: attr(data-label);
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #1B1F3D;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 10;
}

.best-badge:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.best-badge:hover {
  z-index: 15;
  transform: scale(1.2);
  transition: transform 0.15s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.best-badge--top {
  background: #B48350;
}

.best-badge--top::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f005";
  font-size: 9px;
}

.best-badge--new {
  background: #1B1F3D;
}

.best-badge--new::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f0e7";
  font-size: 10px;
}

.best-badge--real {
  background: #3D6B9E;
}

.best-badge--real::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f030";
  font-size: 9px;
}

.best-badge--verified {
  background: #6B4C8A;
}

.best-badge--verified::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f058";
  font-size: 9px;
}

.best-badge--pornstar {
  background: #C0392B;
}

.best-badge--pornstar::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f521";
  font-size: 9px;
}

.best-badge--independent {
  background: #D4A76A;
}

.best-badge--independent::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f007";
  font-size: 9px;
}

.best-badge--vip {
  background: linear-gradient(135deg, #B48350, #D4A76A);
}

.best-badge--vip::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f521";
  font-size: 9px;
}

.best-badge--video {
  background: #2D314C;
}

.best-badge--video::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f03d";
  font-size: 9px;
}

.best-badge--duo {
  background: #8E5A6E;
}

.best-badge--duo::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f500";
  font-size: 9px;
}

/* Legacy badge hide */
.best-bord {
  display: none;
}

.best-item-cnt {
  position: absolute;
  width: 96%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 7px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.20);
backdrop-filter: blur(14.550000190734863px);
}

.best-item-cnt ul {
  display: flex;
  align-items: center;
  column-gap: 9px;
}

.best-item-cnt ul li {
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
}

.best-item-cnt ul li img {
  display: block;
}

.best-item-cnt h2 {
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  margin-top: 5px;
}

.best-item-cnt p {
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.80);
  margin-top: 5px;
}

.best-item-cnt p span {
  font-weight: 700;
  padding-left: 5px;
}

.best-bord2 {
  display: none;
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
  text-align: center;
  position: absolute;
  width: 120px;
  background: linear-gradient(95deg, #DF0746 0.24%, #CF02BB 67.05%, #C700F5 99.06%);
  padding: 7px 12px;
  position: absolute;
  top: 9px;
  left: -38px;
  transform: rotate(-36deg);
}

.pagination-wrap {
  display: grid;
  grid-template-columns: 30% auto;
  align-items: center;
  margin-top: 54px;
}

.pagination-left h3 {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.30);
}

.pagination-right ul {
  display: flex;
  align-items: center;
  column-gap: 22px;
  justify-content: flex-end;
}

.pagination-right ul li a {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.30);

}

.pagination-right ul li svg {
  opacity: 0.3;
  width: 44px;
  height: 44px;
}

#svg-act {
  opacity: 1;
}

.pagi-act {
  font-weight: 700 !important;
  color: #000000 !important;
}

/*==patners-section==*/
.patner-area {
  padding: 24px 0 32px 0;
}

.patner-title h2 {
  font-weight: 600;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.40);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.patner-main {
  display: grid;
  grid-template-columns: repeat(8,1fr);
  column-gap: 10px;
  row-gap: 10px;
  margin-top: 16px;
}

.patner-item img {
  border-radius: 12px;
  vertical-align: middle;
  width: 100%;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.patner-item img:hover {
  transform: scale(1.03);
}

.patner-btm-wrap {
  text-align: center;
  /*! max-width: 1044px; */
  margin: auto;
  margin-top: 60px;
}

.patner-btm-wrap h2 {
  font-weight: 700;
  font-size: 28px;
  color: #000000;
}

.patner-btm-wrap h3 {
  font-weight: 700;
  font-size: 17px;
  color: #000000;
  margin-top: 16px;
}

.patner-btm-wrap p {
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  margin-top: 14px;
} 

/*==footer-area==*/
.footer-area {
  background: #1a1a2e;
  border-top: 1px solid rgba(180, 131, 80, 0.15);
  padding: 40px 0 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  column-gap: 60px;
  align-items: start;
}

.footer-logo img {
  max-width: 48px;
}

.footer-left p {
  font-weight: 400;
  font-size: 13px;
  margin-top: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.40);
}

.footer-lang-wrap1 {
  margin-top: 16px;
}

.footer-lang-wrap1 ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 8px;
  margin-top: 0;
}

.footer-lang-wrap1 ul li {
  display: flex;
  align-items: center;
  column-gap: 6px;
  padding: 4px 6px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.footer-lang-wrap1 ul li:hover {
  background: rgba(255, 255, 255, 0.06);
}

.footer-right h4 {
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.60);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
}

.footer-lang-img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #2D314C;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.footer-lang-img img {
  width: 12px;
  display: block;
}

.footer-lang-cnt {
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.50);
  white-space: nowrap;
}

.footer-lang-cnt b {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
}

.footer-countri-wrap {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-countri-wrap h3 {
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.60);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.custom-lang-picker {
  position: relative;
  max-width: 180px;
  user-select: none;
  margin-top: 12px;
}

.custom-lang-picker__selected {
  font-weight: 500;
  font-size: 13px;
  color: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  column-gap: 10px;
  align-items: center;
  position: relative;
}

.custom-lang-picker__selected::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  width: 14px;
  height: 8px;
  background: url('images/top-angle.svg') no-repeat;
}

.custom-lang-picker__dropdown {
  position: absolute;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-top: 4px;
  max-height: 180px;
  overflow-y: auto;
  display: none;
  z-index: 100;
}

.custom-lang-picker__option {
  font-weight: 500;
  font-size: 13px;
  color: #1B1F3D;
  padding: 8px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.custom-lang-picker__option.active {
  background-color: #007bff;
  color: white;
  /*! background: linear-gradient(95deg, #DF0746 0%, #CF02BB 67.61%, #C700F5 100%); */
}

.custom-lang-picker__flag {
  width: 22px;
  vertical-align: middle;
}

.custom-lang-picker__arrow {
  border: solid #666;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-left: 10px;
  display: none;
  
}

.custom-lang-picker__arrow.open {
  transform: rotate(-135deg);
}

.copyright-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  padding-top: 20px;
  margin-top: 30px;
}

.copyright-left p {
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.copyright-left p a {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.70);
  transition: 0.2s all ease;
}

.copyright-left p a:hover {
  color: #B48350;
}

.copyright-right ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 16px;
}

.copyright-right ul li a {
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  transition: 0.2s all ease;
}

.copyright-right ul li a:hover {
  color: rgba(255, 255, 255, 0.70);
}

.copyright-right ul li span {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  height: 14px;
  display: block
}

.footer-lang-wrap2 {
  display: none;
}

.footer-lang-wrap2 ul {
  display: flex;
  align-items: center;
  column-gap: 35px;
  row-gap: 20px;
}

.footer-lang-wrap2 ul li {
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.vm-box7 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 35px;
  position: relative;
  row-gap: 20px;
  margin-top: 20px;
}

.vm-more7 {
  display: none;
}

.vm-btn7 {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  margin-top: 0;
  order: 1;
  text-decoration: underline;
  text-decoration-thickness: 2px;
 text-underline-offset: 5px;
}

.toggle-dropdown {
  width: 100%;
  overflow: hidden;
}

.toggle-header {
  border-radius: 9px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #FFF;
  cursor: pointer;
  padding: 12px;
  position: relative;
}

.toggle-header ul {
  display: grid;
  grid-template-columns: 60% auto;
  align-items: center;
  justify-content: space-between;
}

.toggle-header ul li:nth-of-type(1) {
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.toggle-header .toggle-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.toggle-header.open .toggle-arrow {
  transform: translateY(-50%) rotate(180deg);
  color: #b63b4d;
}

.toggle-content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

.mobil-filter-wrapper {
  display: none;
}

.mobil-filter-dropdown {
  display: none;
}



.splide-slider {
  width:100%;
  overflow:visible;
  /*! padding: 0 10px; */
}

.splide__slide img{
  width:100%;
}

/* arrows */
.custom-arrows{
  display:flex;
  gap:20px;
  margin-top:15px;
  justify-content:center;
  display: none;
}

.custom-arrows button{
  background:#333;
  color:#fff;
  border:none;
  border-radius:50%;
  width:50px;
  height:50px;
  font-size:24px;
  cursor:pointer;
}

.splide__pagination {
  padding: 0;
  position: initial;
  margin-top: 20px;
  column-gap: 10px;
  display: none;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  display: block;
  border-radius: 50%;
  width: 20px !important;
  height: 20px;
  margin: 0;
  opacity: .7;
  padding: 0;
  position: relative;
  transition: transform .2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: red;
  transform: initial;
  z-index: 1;
}

.stories-mobil-slider {
    display: none;
}

/*===detalish-page===*/
.thumbnial-area .container,
.angels-area .container,
.information-area .container,
.review-area .container {
  max-width: 1280px;
}

.thumbnial-area {
  padding: 30px 0 35px 0;
}

.profile-badges {
  position: absolute;
  left: 14px;
  top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.profile-badges .best-badge {
  width: 32px;
  height: 32px;
}

.profile-badges .best-badge::before {
  font-size: 14px;
}

.profile-badges .best-badge::after {
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  margin-left: 8px;
}

.slider-container {
  display: flex;
  flex-direction: row;
  column-gap: 25px;
}

.main-image {
  height: 500px;
  overflow: hidden;
  position: relative;
  flex: 0 0 73%;
  cursor: grab;
  border-radius: 20px;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s ease;
}

.main-image img.slide-left {
  transform: translateX(-100%);
}

.main-image img.slide-right {
  transform: translateX(100%);
}

.main-image img.active {
  transform: translateX(0);
}

.thmp-inner {
  position: relative;
  flex: 0 0 25%;
  height: 500px;
}

.thumbnail-container {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  user-select: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
  height: 100%;
}

.thumbnail-container::-webkit-scrollbar {
  display: none;
}

.thumbnail {
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: border 0.3s ease;
  flex-shrink: 0;
  height: 32%;
  border-radius: 15px;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  transition: opacity 0.3s ease;
  display: none;
}

.prev-button {
  left: 10px;
}

.next-button {
  right: 10px;
}

.thumb-nav-button {
  border: none;
  width: 100%;
  cursor: pointer;
  height: 50px;
  border-radius: 0;
  position: absolute;
  left: 0;
  z-index: 5;
}

.thumb-prev-button {
  top: -1px;
  background: linear-gradient(to bottom, #EEEEF3 40%, rgba(238,238,243,0) 100%);
}

.thumb-next-button {
  bottom: -1px;
  background: linear-gradient(to top, #EEEEF3 40%, rgba(238,238,243,0) 100%);
}

.image-counter {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.desk-none {
  display: none;
}

/*==angels-section==*/
.angels-area {
  padding-bottom: 30px;
}

.angels-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.angels-content {
  flex: 1;
}

.angels-left h4 {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.80);
}

.angels-left h2 {
  font-weight: 600;
  font-size: 24px;
  color: #000000;
  margin-top: 2px;
}

.angels-agency-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 5px 12px 5px 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.2s ease;
}

.angels-agency-link:hover {
  background: rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.12);
}

.angels-agency-link img {
  width: 16px;
  height: 16px;
  opacity: 0.55;
}

.angels-agency-link span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.55);
}

.angels-agency-link i {
  font-size: 12px;
  color: #6B4C8A;
}

.angels-pg p {
  font-weight: 400;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.50);
  margin-top: 12px;
  line-height: 1.6;
}

/* Contact card */
.angels-contact-card {
  flex: 0 0 280px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}

.angels-booking-btn {
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  border-radius: 12px;
  background: #B48350;
  padding: 14px 0;
  border: none;
  margin-bottom: 16px;
}

.angels-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.angels-contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.03);
  text-decoration: none;
  transition: background 0.2s;
}

.angels-contact-links a:hover {
  background: rgba(180, 131, 80, 0.1);
}

.angels-contact-links a img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.angels-contact-links a span {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.angels-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.angels-card-actions button {
  flex: 1;
  font-weight: 500;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  border-radius: 8px;
  background: transparent;
  padding: 8px 0;
  border: 1px solid rgba(0, 0, 0, 0.10);
  transition: background 0.2s;
}

.angels-card-actions button:hover {
  background: rgba(0, 0, 0, 0.04);
}

/*==information-section==*/
.information-area {
  padding-bottom: 35px;
}

.information-main {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 25px;
}

.information-box-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  padding: 18px 25px;
}

.information-box-title h2 {
  font-weight: 600;
  font-size: 22px;
  color: #000000;
}

.information-box {
  border-radius: 20px;
  background: #fff;
}

.information-item-wrap {
  padding: 16px 20px;
}

.information-item-wrap ul {
  display: grid;
  grid-template-columns: 60% auto;
  align-items: center;
  row-gap: 14px;
}

.information-item-wrap ul li {
  display: grid;
  grid-template-columns: 45px auto;
  align-items: center;
  column-gap: 12px;
}

.information-img img {
  max-width: 45px;
}

.information-text h4 {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.50);
  letter-spacing: -0.75px;
}

.information-text h3 {
  font-weight: 600;
  font-size: 15px;
  color: #000000;
  margin-top: 3px;
}

.information-box2 {
  margin-top: 20px;
}

.information-box2 .information-box-title {
  border-bottom: none;
}

.information-box2 ul {
  display: grid;
  grid-template-columns: 60% auto;
}

.working-hours-wrap {
  padding: 0 20px 20px;
}

/* Calendar nav */
.wh-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.wh-cal-month {
  font-weight: 700;
  font-size: 15px;
  color: #000;
}

.wh-nav-btn {
  background: none;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(0,0,0,0.50);
  transition: all 0.15s;
}

.wh-nav-btn:hover {
  background: rgba(0,0,0,0.04);
  color: #000;
}

/* Calendar grid */
.wh-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.wh-cal-dayname {
  font-weight: 600;
  font-size: 11px;
  color: rgba(0,0,0,0.35);
  text-transform: uppercase;
  padding: 4px 0 8px;
}

.wh-cal-empty {
  padding: 8px 0;
}

.wh-cal-day {
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: #B48350;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
}

.wh-cal-day:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(180,131,80,0.30);
}

.wh-cal-off {
  background: rgba(0,0,0,0.04);
  color: rgba(0,0,0,0.25);
}

.wh-cal-off:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.wh-cal-today {
  background: #1a1a2e;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(26,26,46,0.25);
}

.wh-cal-past {
  background: rgba(180,131,80,0.15);
  color: rgba(180,131,80,0.50);
}

.wh-cal-selected {
  outline: 2px solid #1a1a2e;
  outline-offset: 1px;
  transform: scale(1.1);
}

/* Detail panel */
.wh-detail {
  margin-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 16px;
}

.wh-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.wh-detail-date {
  font-weight: 700;
  font-size: 14px;
  color: #000;
}

.wh-detail-hours {
  font-weight: 500;
  font-size: 13px;
  color: #B48350;
}

.wh-detail-closed {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.30);
}

/* Time slots */
.wh-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.wh-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  border: 1px solid rgba(180,131,80,0.20);
  border-radius: 8px;
  background: rgba(180,131,80,0.04);
}

.wh-slot--past {
  opacity: 0.35;
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.06);
}

.wh-slot-time {
  font-size: 11px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
}

.wh-slot-status {
  font-size: 10px;
  font-weight: 500;
  color: #B48350;
  margin-top: 2px;
}

.wh-slot--past .wh-slot-status {
  color: rgba(0,0,0,0.30);
}

.duration-box-wrap {
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(15.949999809265137px);
  padding: 5px 0;
  margin-top: 18px;
}

.duration-flex {
  display: grid;
  grid-template-columns: 44% 40% auto;
  padding: 0 42px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.duration-flex:last-child {
  border-bottom: 0;
}

.duration-box-wrap2 .duration-flex {
  grid-template-columns: 43% 43% auto;
}

.duration-flex1 {
  border-radius: 27px;
  background: #B48350;
  padding: 0 42px;
}

.duration-item {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.50);
  padding: 12px 0;
}

.duration-item img {
  width: 18px;
}

.duration-flex1 .duration-item {
  color: #ffffff;
}

.review-area {
  padding-bottom: 50px;
}

.review-title {
  padding: 18px 25px;
}

.review-title h2 {
  font-weight: 700;
  font-size: 22px;
  color: #000000;
}

.review-main {
  border-radius: 20px;
  background: #ffffff;
}

.Reviews-box-wrap {
  border-top: 1px solid rgba(0, 0, 0, 0.10);
  padding: 20px 25px 18px 25px;
}

.Reviews-box-flex {
  display: grid;
  grid-template-columns: 60% auto;
  justify-content: space-between;
}

.Reviews-box-left ul {
  display: grid;
  grid-template-columns: 46px auto;
  align-items: center;
  column-gap: 12px;
}

.Reviews-box-left ul li:nth-of-type(1) img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.Reviews-box-left ul li:nth-of-type(2) h4 {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
}

.Reviews-box-left ul li:nth-of-type(2) img {
  max-width: 118px;
  margin-top: 5px;
}

.time-text h4 {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.35);
}

.reviews-text-btm {
  margin-top: 12px;
}

.service-review {
  margin-top: 12px;
}

.reviews-text-btm h3 {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.35);
}

.reviews-text-btm h4 {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  margin-top: 4px;
}

.reviews-text-btm p {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.70);
  line-height: 1.5;
}

.patner-btm-wrap2 {
  margin-top: 0;
}

.detalish-btm-area {
  background: #ffffff;
  margin-top: 120px;
  padding: 75px 0;
}

.detalish-btm-area {
  margin-top: 40px;
  padding: 38px 0;
}

.modal-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  padding: 32px 36px 28px 36px;
}

.modal-title h2 {
  font-weight: 700;
  font-size: 30px;
  color: #000000;
}

.modal-input-wrap {
  padding: 28px 36px;
}

.modal-input-space {
  margin-top: 23px;
}

.modal-input-flex {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 20px;
}

.modal-input h4 {
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}

.modal-input h4 span {
  color: rgba(0, 0, 0, 0.50);
}

.modal-input input {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.40);
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.20);
  background: #ffffff;
  padding: 14px 20px;
  margin-top: 8px;
  outline: none;
  width: 100%;
}

.modal-input input::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.40);
}

.modal-input textarea {
   font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.40);
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.20);
  background: #ffffff;
  padding: 20px;
  width: 100%;
  margin-top: 8px;
  outline: none;
}

.modal-input textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.40);
}

.modal-submit button {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  border: none;
  border-radius: 15px;
  background: #B48350;
  padding: 18px 50px;
  margin-top: 27px;
  transition: 0.2s all ease;
  cursor: pointer;
}

.modal-submit button:hover {
  opacity: 0.9;
}

.modal-ad {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  z-index: 999;
  overflow-y: auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}

.modal-ad.active-ad {
  opacity: 1;
  visibility: visible;
}

.modal-box-ad {
  background: #fff;
  max-width: 938px;
  width: 90%;
  margin: auto;
  border-radius: 20px;
  position: relative;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, .25);

  transform: translateY(-60px);
  opacity: 0;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1),
    opacity .45s ease;
}

.modal-ad.active-ad .modal-box-ad {
  transform: translateY(0);
  opacity: 1;
}

.modal-close-ad img {
 max-width: 40px;
 cursor: pointer;
}

.modal-dropzone {
  border: 2px dashed rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
  background: rgba(0, 0, 0, 0.02);
}

.modal-dropzone:hover {
  border-color: rgba(180, 131, 80, 0.4);
  background: rgba(180, 131, 80, 0.04);
}

.modal-dropzone.dragover {
  border-color: #B48350;
  background: rgba(180, 131, 80, 0.08);
}

.modal-dropzone svg {
  color: rgba(0, 0, 0, 0.25);
  margin-bottom: 8px;
}

.modal-dropzone p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
}

.modal-dropzone span {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.35);
}

.modal-dropzone-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.modal-dropzone-preview .preview-item {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-dropzone-preview .preview-item img,
.modal-dropzone-preview .preview-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-dropzone-preview .preview-item .preview-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  padding: 0;
}

/*==agency-page==*/
.agency-page-title {
  margin-bottom: 24px;
}

.agency-page-title h1 {
  font-weight: 700;
  font-size: 28px;
  color: #000;
}

.agency-page-title p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 4px;
}

.agency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.agency-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}

.agency-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.agency-card-cover {
  height: 80px;
  background: linear-gradient(135deg, #1B1F3D 0%, #2a3158 100%);
  position: relative;
}

.agency-card-cover--gold {
  background: linear-gradient(135deg, #8B6914 0%, #B48350 100%);
}

.agency-card-cover--dark {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.agency-card-cover--wine {
  background: linear-gradient(135deg, #4a1942 0%, #6b2d5b 100%);
}

.agency-card-body {
  padding: 0 16px 16px;
  position: relative;
}

.agency-card-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: -26px;
  position: relative;
  z-index: 1;
}

.agency-card-logo img {
  width: 24px;
  height: 24px;
  opacity: 0.6;
}

.agency-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.agency-card-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(180, 131, 80, 0.1);
  color: #B48350;
  margin-top: -18px;
}

.agency-card-badge--premium {
  background: rgba(180, 131, 80, 0.15);
  color: #96682e;
}

.agency-card-info h3 {
  font-weight: 600;
  font-size: 15px;
  color: #000;
  margin-bottom: 3px;
}

.agency-card-location {
  display: flex;
  align-items: center;
  gap: 4px;
}

.agency-card-location img {
  width: 11px;
  height: 11px;
  opacity: 0.4;
}

.agency-card-location span {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.4);
}

.agency-card-stats {
  display: flex;
  margin: 10px 0;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.agency-card-stat {
  flex: 1;
  text-align: center;
}

.agency-card-stat + .agency-card-stat {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.agency-card-stat strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.agency-card-stat span {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.35);
  margin-top: 3px;
  display: block;
}

.agency-card-btn {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #B48350;
  border-radius: 8px;
  padding: 9px 0;
  text-decoration: none;
  transition: opacity 0.2s;
}

.agency-card-btn:hover {
  opacity: 0.9;
}
}
/*==agency-detail-page==*/
.agency-detail-hero {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 24px;
}

.agency-detail-cover {
  height: 180px;
  background: linear-gradient(135deg, #1B1F3D 0%, #2a3158 100%);
}

.agency-detail-cover--gold {
  background: linear-gradient(135deg, #8B6914 0%, #B48350 100%);
}

.agency-detail-cover--dark {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.agency-detail-cover--wine {
  background: linear-gradient(135deg, #4a1942 0%, #6b2d5b 100%);
}

.agency-detail-header {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 18px 24px 20px;
  margin-top: -26px;
  position: relative;
  z-index: 1;
}

.agency-detail-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.agency-detail-logo img {
  width: 36px;
  height: 36px;
  opacity: 0.6;
}

.agency-detail-info {
  padding-bottom: 4px;
}

.agency-detail-info h1 {
  font-weight: 700;
  font-size: 24px;
  color: #000;
}

.agency-detail-location {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}

.agency-detail-location img {
  width: 13px;
  height: 13px;
  opacity: 0.4;
}

.agency-detail-location span {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}

.agency-detail-body {
  margin-bottom: 30px;
}

.agency-detail-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.agency-detail-content {
  flex: 1;
}

.agency-detail-stats {
  display: flex;
  background: #fff;
  border-radius: 14px;
  padding: 18px 0;
  margin-bottom: 20px;
}

.agency-detail-stat {
  flex: 1;
  text-align: center;
}

.agency-detail-stat + .agency-detail-stat {
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.agency-detail-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.agency-detail-stat span {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 4px;
  display: block;
}

.agency-detail-about {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
}

.agency-detail-about h2 {
  font-weight: 700;
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}

.agency-detail-about p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
}

.agency-detail-website-btn {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
  text-align: center;
  cursor: pointer;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 12px 0;
  margin-bottom: 16px;
  text-decoration: none;
  transition: all 0.2s;
}

.agency-detail-website-btn:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.7);
}

.agency-detail-models {
  margin-bottom: 30px;
}

.agency-detail-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.agency-detail-section-title h2 {
  font-weight: 700;
  font-size: 20px;
  color: #000;
}

.agency-detail-count {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.4);
}

/*==contact-page==*/
.contact-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0 60px;
}

.contact-hero {
  text-align: center;
  margin-bottom: 40px;
}

.contact-hero h1 {
  font-weight: 700;
  font-size: 32px;
  color: #000;
}

.contact-hero p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form-wrap h2 {
  font-weight: 700;
  font-size: 20px;
  color: #000;
  margin-bottom: 20px;
}

.contact-info-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-info-wrap h2 {
  font-weight: 700;
  font-size: 20px;
  color: #000;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-item:last-of-type {
  border-bottom: none;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(180, 131, 80, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #B48350;
  font-size: 16px;
}

.contact-info-item h4 {
  font-weight: 600;
  font-size: 16px;
  color: #000;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 3px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-item a:hover {
  color: #B48350;
}

.contact-social {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-social h4 {
  font-weight: 600;
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
}

.contact-social-links {
  display: flex;
  gap: 8px;
}

.contact-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.4);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
}

.contact-social-links a:hover {
  background: rgba(180, 131, 80, 0.1);
  color: #B48350;
}
