:root {
  --gold: #d4a63a;
  --gold-light: #f0cf76;
  --gold-dark: #9c741f;

  --navy: #06111f;
  --navy-deep: #020812;
  --navy-soft: #0b1b2d;

  --white: #f7f3ea;
  --muted: #b8b2a8;

  --border-gold: rgba(212, 166, 58, 0.35);
  --card-bg: rgba(8, 22, 38, 0.72);

  --gold-gradient: linear-gradient(
    135deg,
    #8f651c 0%,
    #d4a63a 28%,
    #f6df8f 50%,
    #c8942e 72%,
    #7d5517 100%
  );

  --gold-gradient-hover: linear-gradient(
    135deg,
    #f6df8f 0%,
    #d4a63a 35%,
    #fff0ad 55%,
    #b47b22 100%
  );
}

/* =========================
   BASE
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--navy-deep);
  color: var(--white);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   GENERAL LAYOUT
========================= */

.container {
  width: min(1180px, 90%);
  margin: 0 auto;
}

.narrow {
  width: min(880px, 90%);
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

h1,
h2,
h3,
.logo-text {
  font-family: "Cinzel", serif;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 600;
}

h3 {
  color: var(--gold-light);
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 600;
}

p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 18px;
}


/* =========================
   NAVBAR
========================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  z-index: 100;
  background: rgba(3, 9, 18, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212, 166, 58, 0.12);
}

.nav-container {
  width: min(1240px, 92%);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo {
  height: 24px;
  width: auto;
  display: block;
}

.nav-logo-mobile {
  display: none;
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(212, 166, 58, 0.28));
}

.mobile-menu {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-menu a {
  color: #d7d1c7;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-controls {
  display: none;
  align-items: center;
  gap: 18px;
}


/* =========================
   NAVBAR BUTTONS
========================= */

.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.3s ease;
}

.icon-btn:hover {
  background: var(--gold-gradient);
  color: var(--navy-deep);
  border-color: transparent;
  box-shadow:
    0 0 22px rgba(212, 166, 58, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.order-btn {
  padding: 15px 30px;
  background: var(--gold-gradient);
  color: #07101b;
  font-size: 14px;
  font-weight: 800;
  border-radius: 4px;
  letter-spacing: 0.8px;
  margin-left: 12px;
  transition: 0.35s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 10px 26px rgba(212, 166, 58, 0.18);
}

.order-btn:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 0 26px rgba(212, 166, 58, 0.45),
    0 14px 36px rgba(0, 0, 0, 0.28);
}


/* =========================
   BURGER BUTTON
========================= */

.burger-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 166, 58, 0.55);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 120;
}

.burger-btn span {
  width: 18px;
  height: 2px;
  background: var(--gold);
  display: block;
  transition: 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================
   LANGUAGE SWITCH
========================= */

.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  color: var(--gold-light);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.8px;
  cursor: pointer;
  padding: 12px 4px;
  transition: 0.3s ease;
}

.lang-current span {
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg) translateY(-2px);
  transition: 0.3s ease;
}

.lang-switch:hover .lang-current {
  color: var(--gold);
}

.lang-switch:hover .lang-current span {
  border-color: var(--gold-light);
  transform: rotate(225deg) translateY(-2px);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 82px;
  padding: 10px 0;
  background: rgba(2, 8, 18, 0.96);
  border: 1px solid rgba(212, 166, 58, 0.24);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 150;
}

.lang-dropdown a {
  display: block;
  padding: 8px 16px;
  color: #d7d1c7;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-align: center;
  transition: 0.25s ease;
}

.lang-dropdown a:hover {
  color: var(--gold-light);
  background: rgba(212, 166, 58, 0.08);
}

.lang-switch:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* DESKTOP LANGUAGE SWITCH TUNING */

.desktop-lang .lang-current {
  height: 36px;
  padding: 0 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: rgba(212, 166, 58, 0.9);
}

.desktop-lang .lang-current span {
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg) translateY(-1px);
}

.desktop-lang:hover .lang-current {
  color: var(--gold-light);
}

.desktop-lang:hover .lang-current span {
  border-color: var(--gold-light);
  transform: rotate(225deg) translateY(-1px);
}


/* =========================
   MOBILE WHATSAPP
========================= */

.mobile-whatsapp {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212, 166, 58, 0.55);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 17, 31, 0.34);
  transition: 0.3s ease;
}

.mobile-whatsapp img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(77%) sepia(51%) saturate(489%) hue-rotate(360deg) brightness(102%) contrast(91%);
}

.mobile-whatsapp:hover {
  background: var(--gold-gradient);
  border-color: transparent;
}

.mobile-whatsapp:hover img {
  filter: brightness(0) saturate(100%) invert(4%) sepia(32%) saturate(1972%) hue-rotate(178deg) brightness(89%) contrast(99%);
}


/* =========================
   HERO
========================= */

.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  background:
    linear-gradient(
      rgba(2, 8, 18, 0.1),
      rgba(2, 8, 18, 0.65)
    ),
    url("images/hero_background2.png") center center / cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 92px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(212, 166, 58, 0.08), transparent 36%),
    linear-gradient(
      to bottom,
      rgba(2, 8, 18, 0) 55%,
      rgba(2, 8, 18, 0.45) 78%,
      var(--navy-deep) 100%
    );
  pointer-events: none;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 40px 20px;
  animation: fadeUp 1.2s ease forwards;
}

.hero-logo {
  width: min(320px, 70vw);
  height: auto;
  display: block;
  margin: 0 auto 54px;
  filter: drop-shadow(0 0 28px rgba(212, 166, 58, 0.28));
}

.hero-text {
  color: var(--white);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 300;
  margin-bottom: 48px;
  letter-spacing: 0.5px;
}

/* HERO STATS SOFTER VERSION */

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  margin: 0 auto 34px;
  opacity: 0.86;
}

.hero-stat strong {
  font-family: "Cinzel", serif;
  font-size: 34px;
  line-height: 1;
  color: rgba(240, 207, 118, 1);
  font-weight: 600;
  text-shadow: 0 0 14px rgba(212, 166, 58, 0.16);
}

.hero-stat span {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 13.5px;
  line-height: 1.18;
  letter-spacing: 1.2px;
  color: rgba(247, 243, 234, 1);
  text-align: left;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  position: relative;
}

.hero-stat + .hero-stat::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 50%;
  width: 1px;
  height: 34px;
  transform: translateY(-50%);
  background: rgba(212, 166, 58, 0.28);
}

.hero-btn,
.main-btn {
  display: inline-block;
  padding: 18px 40px;
  border: 1px solid rgba(212, 166, 58, 0.75);
  border-radius: 4px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  background: rgba(6, 17, 31, 0.48);
  transition: 0.35s ease;
  box-shadow: inset 0 0 0 1px rgba(212, 166, 58, 0.08);
}

.hero-btn:hover,
.main-btn:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  color: var(--navy-deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 0 30px rgba(212, 166, 58, 0.42),
    0 16px 38px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}


/* =========================
   INTRO
========================= */

.intro-section {
  background:
    radial-gradient(circle at top center, rgba(212, 166, 58, 0.08), transparent 35%),
    linear-gradient(180deg, var(--navy-deep), var(--navy));
  text-align: center;
  position: relative;
  z-index: 5;
  padding-top: 130px;
  padding-bottom: 30px;
}

.intro-section::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, 70%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 166, 58, 0.45),
    transparent
  );
}

.intro-section p {
  font-size: 18px;
}


/* =========================
   ADVANTAGES
========================= */

.advantages-section {
  background: var(--navy);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.premium-card {
  min-height: 310px;
  padding: 34px 26px;
  background:
    linear-gradient(180deg, rgba(12, 31, 51, 0.88), rgba(3, 10, 20, 0.92));
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}

.premium-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(212, 166, 58, 0.18), transparent 68%);
}

.premium-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 207, 118, 0.7);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

.card-number {
  color: rgba(212, 166, 58, 0.38);
  font-family: "Cinzel", serif;
  font-size: 42px;
  margin-bottom: 30px;
}


/* =========================
   ATMOSPHERE
========================= */

.atmosphere-section {
  background:
    linear-gradient(180deg, var(--navy), var(--navy-deep));
}

.atmosphere-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.atmosphere-image {
  height: 560px;
  background:
    linear-gradient(rgba(2, 8, 18, 0.18), rgba(2, 8, 18, 0.45)),
    url("images/massage.jpg") center/cover no-repeat;
  border: 1px solid var(--border-gold);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  position: relative;
}

.atmosphere-image::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(212, 166, 58, 0.28);
}

.atmosphere-text {
  padding: 30px 0;
}


/* =========================
   RETURN SECTION
========================= */

.return-section {
  background:
    linear-gradient(180deg, var(--navy-deep), var(--navy));
  overflow: hidden;
  padding: 78px 0 86px;
}

.return-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 76px;
  align-items: center;
}

.return-left {
  position: sticky;
  top: 130px;
}

.return-left .section-label {
  margin-bottom: 14px;
}

.return-left h2 {
  max-width: 560px;
  margin-bottom: 26px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.08;
}

.return-left p {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.75;
}

.return-list {
  display: flex;
  flex-direction: column;
}

.return-item {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(212, 166, 58, 0.16);
  transition: 0.35s ease;
}

.return-item:first-child {
  border-top: 1px solid rgba(212, 166, 58, 0.16);
}

.return-item span {
  font-family: "Cinzel", serif;
  font-size: 54px;
  line-height: 1;
  color: rgba(212, 166, 58, 0.22);
  transition: 0.35s ease;
}

.return-item h3 {
  margin-bottom: 7px;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--white);
}

.return-item p {
  margin: 0;
  max-width: 560px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--muted);
}

.return-item:hover {
  transform: translateX(8px);
}

.return-item:hover span {
  color: var(--gold-light);
  text-shadow: 0 0 28px rgba(212, 166, 58, 0.28);
}

.return-item:hover h3 {
  color: var(--gold-light);
}


/* =========================
   SERVICES
========================= */

/* =========================
   SERVICES
========================= */

.services-section {
  background:
    linear-gradient(
      180deg,
      var(--navy-deep) 0%,
      #04101d 52%,
      var(--navy) 100%
    );
  overflow: hidden;
}

.services-carousel-shell {
  position: relative;
  margin-top: 52px;
  padding: 0 72px;
}

.services-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.services-grid::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  padding: 38px;
  min-height: 230px;
  background:
    linear-gradient(145deg, rgba(7, 18, 32, 0.95), rgba(12, 31, 51, 0.78));
  border: 1px solid rgba(212, 166, 58, 0.24);
  transition: 0.35s ease;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 38px;
  width: 70px;
  height: 2px;
  background: var(--gold);
}

.service-card:hover {
  border-color: rgba(240, 207, 118, 0.65);
  transform: none;
  box-shadow:
    0 0 0 1px rgba(212, 166, 58, 0.12),
    0 18px 45px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(212, 166, 58, 0.12);
}

.services-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(212, 166, 58, 0.55);
  border-radius: 50%;
  background: rgba(2, 8, 18, 0.7);
  color: var(--gold-light);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  transition: 0.35s ease;
}

.services-arrow:hover {
  background: var(--gold-gradient);
  color: var(--navy-deep);
  border-color: transparent;
  box-shadow:
    0 0 24px rgba(212, 166, 58, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.services-prev {
  left: 0;
}

.services-next {
  right: 0;
}

.services-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.services-dots .dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(212, 166, 58, 0.2);
  cursor: pointer;
  transition: 0.3s ease;
}

.services-dots .dot.active {
  background: var(--gold);
  box-shadow: 0 0 16px rgba(212, 166, 58, 0.45);
}

@media (max-width: 1100px) {
  .service-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 820px) {
  .services-carousel-shell {
    padding: 0;
  }

  .services-arrow {
    display: none;
  }

  .service-card {
    flex: 0 0 100%;
  }

  .services-dots {
    display: flex;
  }
}

@media (max-width: 520px) {
  .services-carousel-shell {
    margin-top: 38px;
  }

  .service-card {
    padding: 28px 22px;
    min-height: 230px;
  }
}

/* =========================
   CTA
========================= */

.cta-section {
  position: relative;
  padding: 130px 0;
  background:
    linear-gradient(rgba(2, 8, 18, 0.72), rgba(2, 8, 18, 0.92)),
    url("cta-bg.jpg") center/cover no-repeat;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(212, 166, 58, 0.13), transparent 35%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content p {
  font-size: 18px;
}

.cta-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 34px 0 42px;
}

.cta-lines span {
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: 20px;
  letter-spacing: 1px;
}


/* =========================
   FOOTER
========================= */

.footer {
  padding: 34px 0;
  background: #01050b;
  border-top: 1px solid rgba(212, 166, 58, 0.16);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer p {
  margin: 0;
  font-size: 13px;
  color: #8d867b;
}


/* =========================
   ANIMATION
========================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================
   RESPONSIVE: 1100px
========================= */

@media (max-width: 1100px) {
  .nav-menu {
    gap: 20px;
  }

  .logo-text {
    font-size: 20px;
  }

  .order-btn {
    padding: 13px 20px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .atmosphere-layout {
    grid-template-columns: 1fr;
  }

  .atmosphere-image {
    height: 460px;
  }

  .return-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .return-left {
    position: static;
    text-align: center;
  }

  .return-left h2,
  .return-left p {
    margin-left: auto;
    margin-right: auto;
  }
}


/* =========================
   RESPONSIVE: 820px
========================= */

@media (max-width: 820px) {
  .navbar {
    height: 72px;
    padding: 0;
    position: fixed;
  }

  .nav-container {
    width: 91%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 0;
  }

  .logo-link {
    display: flex;
    align-items: center;
  }

  .nav-logo {
    height: 22px;
  }

  .nav-logo-desktop {
    display: none;
  }

  .nav-logo-mobile {
    display: block;
    width: 58px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(212, 166, 58, 0.24));
  }

  .desktop-lang {
    display: none;
  }

  .mobile-controls {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .mobile-lang {
    display: flex;
    align-items: center;
  }

  .mobile-lang .lang-current {
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 1.2px;
    font-weight: 700;
    color: rgba(212, 166, 58, 0.78);
  }

  .mobile-lang .lang-current span {
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg) translateY(-1px);
  }

  .mobile-lang .lang-dropdown {
    left: 50%;
    min-width: 74px;
  }

  .mobile-lang:hover .lang-current {
    color: var(--gold-light);
  }

  .mobile-lang:hover .lang-current span {
    border-color: var(--gold-light);
  }

  .mobile-whatsapp {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-whatsapp img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(60%) sepia(38%) saturate(713%) hue-rotate(5deg) brightness(88%) contrast(86%);
  }

  .mobile-whatsapp:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .mobile-whatsapp:hover img {
    filter: brightness(0) saturate(100%) invert(75%) sepia(51%) saturate(489%) hue-rotate(360deg) brightness(100%) contrast(91%);
  }

  .burger-btn {
    display: flex;
    width: 36px;
    height: 34px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
  }

  .burger-btn span {
    width: 36px;
    height: 1.4px;
    background: var(--gold);
    display: block;
    transition: 0.3s ease;
  }

  .burger-btn.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }

  .burger-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .burger-btn.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    padding: 34px 5% 38px;
    background: rgba(2, 8, 18, 0.98);
    border-top: 1px solid rgba(212, 166, 58, 0.14);
    border-bottom: 1px solid rgba(212, 166, 58, 0.16);
    backdrop-filter: blur(18px);

    display: flex;
    flex-direction: column;
    gap: 30px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition: 0.35s ease;
  }

  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu .nav-menu,
  .nav-menu {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .mobile-menu .nav-menu a,
  .nav-menu a {
    font-size: 16px;
  }

  .mobile-menu .nav-actions,
  .nav-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .mobile-menu .order-btn,
  .order-btn {
    margin-left: 0;
  }

  .mobile-menu .order-btn {
    width: min(280px, 86vw);
    text-align: center;
  }

  .hero {
    min-height: 100svh;
    padding-top: 72px;
    background-attachment: scroll;
    background-position: center top;
    background-size: auto 100%;
  }

  .cards-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card.wide {
    grid-column: span 1;
  }

  .section {
    padding: 80px 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}


/* =========================
   FAQ SECTION
========================= */

.faq-section {
  position: relative;
  padding: 110px 0 115px;
  background:
    linear-gradient(
      180deg,
      var(--navy) 0%,
      #071524 48%,
      var(--navy-deep) 100%
    );
}

.faq-header {
  max-width: 980px;
  margin: 0 auto 46px;
  text-align: left;
}

.faq-header .section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.faq-header h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(212, 166, 58, 0.16);
}

.faq-item:first-child {
  border-top: 1px solid rgba(212, 166, 58, 0.16);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  border: none;
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-family: "Cinzel", serif;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.28;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: none;
  color: var(--white);
  transition: 0.3s ease;
}

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  transition: 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.faq-answer p {
  max-width: 860px;
  margin: 0;
  padding: 0 72px 26px 0;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.faq-item.active .faq-question span:first-child {
  color: var(--gold-light);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--gold-light);
}

.faq-question:hover span:first-child,
.faq-question:hover .faq-icon {
  color: var(--gold-light);
}

/* FAQ MOBILE */

@media (max-width: 820px) {
  .faq-section {
    padding: 82px 0 86px;
  }

  .faq-header {
    margin-bottom: 34px;
  }

  .faq-header h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .faq-question {
    padding: 21px 0;
    gap: 18px;
  }

  .faq-question span:first-child {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.6px;
  }

  .faq-answer p {
    padding: 0 34px 22px 0;
    font-size: 15.5px;
    line-height: 1.68;
  }

  .faq-icon {
    font-size: 24px;
  }
}

@media (max-width: 520px) {
  .faq-section {
    padding: 76px 0 78px;
  }

  .faq-header h2 {
    font-size: 31px;
  }

  .faq-header .section-kicker {
    font-size: 12px;
    letter-spacing: 3.2px;
  }

  .faq-question {
    padding: 19px 0;
  }

  .faq-question span:first-child {
    font-size: 16.5px;
    line-height: 1.34;
    letter-spacing: 0.4px;
  }

  .faq-answer p {
    padding: 0 14px 20px 0;
    font-size: 15px;
    line-height: 1.65;
  }

  .faq-icon {
    width: 22px;
    height: 22px;
    font-size: 23px;
  }
}

/* =========================
   RESPONSIVE: 520px
========================= */

@media (max-width: 520px) {
  .logo-text {
    font-size: 18px;
    text-align: center;
  }

  .nav-menu a {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 46px;
    letter-spacing: 5px;
  }

  .hero-subtitle {
    letter-spacing: 5px;
  }

  .hero-logo {
    width: min(280px, 76vw);
    margin-bottom: 42px;
  }

  .hero-text {
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 30px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
  }

  .hero-stat {
    justify-content: center;
    gap: 14px;
  }

  .hero-stat strong {
    font-size: 38px;
  }

  .hero-stat span {
    font-size: 15px;
    line-height: 1.2;
  }

  .hero-stat + .hero-stat::before {
    display: none;
  }

  .hero-btn {
    width: min(330px, 86vw);
    padding: 17px 20px;
    font-size: 13px;
  }

  h2 {
    font-size: 32px;
  }

  .premium-card,
  .service-card {
    padding: 28px 22px;
  }

  .atmosphere-image {
    height: 360px;
  }
}

@media (max-width: 520px) {
  .hero-stats {
    gap: 14px;
    margin-bottom: 32px;
    opacity: 0.84;
  }

  .hero-stat {
    gap: 10px;
  }

  .hero-stat strong {
    font-size: 29px;
  }

  .hero-stat span {
    font-size: 12.5px;
    letter-spacing: 1px;
  }

  .hero-stat + .hero-stat::before {
    display: none;
  }
}


/* =========================
   RESPONSIVE: 430px
========================= */

@media (max-width: 430px) {
  .nav-container {
    width: 91%;
  }

  .nav-logo-mobile {
    width: 54px;
    height: auto;
  }

  .mobile-controls {
    gap: 16px;
  }

  .mobile-whatsapp {
    width: 32px;
    height: 32px;
  }

  .mobile-whatsapp img {
    width: 32px;
    height: 32px;
  }

  .mobile-lang .lang-current {
    font-size: 16px;
    font-weight: 300;
    gap: 5px;
    letter-spacing: 1px;
  }

  .mobile-lang .lang-current span {
    width: 6px;
    height: 6px;
  }

  .burger-btn {
    width: 34px;
  }

  .burger-btn span {
    width: 34px;
    height: 1.5px;
  }
}

/* ATMOSPHERE MOBILE ORDER FIX */

@media (max-width: 1100px) {
  .atmosphere-layout {
    display: flex;
    flex-direction: column;
    gap: 46px;
  }

  .atmosphere-text {
    order: 1;
    padding: 0;
  }

  .atmosphere-image {
    order: 2;
    width: 100%;
    height: clamp(380px, 58vh, 520px);
    background-position: center center;
  }
}

@media (max-width: 520px) {
  .atmosphere-section {
    padding-top: 72px;
  }

  .atmosphere-layout {
    gap: 38px;
  }

  .atmosphere-text {
    text-align: left;
  }

  .atmosphere-image {
    height: 390px;
  }
}


/* =========================
   HOME PAGE SMOOTH BACKGROUND FLOW
========================= */

.intro-section {
  background:
    radial-gradient(circle at top center, rgba(212, 166, 58, 0.08), transparent 34%),
    linear-gradient(
      180deg,
      var(--navy-deep) 0%,
      #04101d 48%,
      var(--navy) 100%
    );
  padding-bottom: 90px;
}

.return-section {
  background:
    linear-gradient(
      180deg,
      var(--navy) 0%,
      #071524 48%,
      var(--navy-soft) 100%
    );
}

.atmosphere-section {
  background:
    linear-gradient(
      180deg,
      var(--navy-soft) 0%,
      #061321 48%,
      var(--navy-deep) 100%
    );
}

.services-section {
  background:
    linear-gradient(
      180deg,
      var(--navy-deep) 0%,
      #04101d 52%,
      var(--navy) 100%
    );
}

.faq-section {
  background:
    linear-gradient(
      180deg,
      var(--navy) 0%,
      #071524 48%,
      var(--navy-deep) 100%
    );
  margin-top: -1px;
}

.cta-section {
  margin-top: -1px;
  background:
    linear-gradient(
      180deg,
      var(--navy-deep) 0%,
      rgba(2, 8, 18, 0.94) 18%,
      rgba(2, 8, 18, 0.84) 48%,
      rgba(2, 8, 18, 0.94) 100%
    ),
    url("cta-bg.jpg") center/cover no-repeat;
}

.cta-section::before {
  background:
    radial-gradient(circle at center, rgba(212, 166, 58, 0.06), transparent 38%);
}

.intro-section,
.return-section,
.atmosphere-section,
.services-section {
  margin-top: -1px;
}

/* MASSEUSES PAGE */

.masseuses-hero {
  min-height: 68vh;
  padding: 168px 0 82px;
  display: flex;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(212, 166, 58, 0.1), transparent 34%),
    linear-gradient(180deg, var(--navy-deep), var(--navy));
}

.masseuses-hero h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}

.masseuses-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.85;
}

.masseuses-section {
  padding: 34px 0 130px;
  background:
    linear-gradient(180deg, var(--navy), var(--navy-deep));
}

.masseuses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 58px;
}

.masseuse-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 470px;
  background:
    linear-gradient(145deg, rgba(7, 18, 32, 0.94), rgba(12, 31, 51, 0.72));
  border: 1px solid rgba(212, 166, 58, 0.22);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(55px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    border-color 0.35s ease;
}

.masseuse-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.masseuse-card:nth-child(even) {
  grid-template-columns: 1.22fr 0.78fr;
}

.masseuse-card:nth-child(even) .masseuse-image-wrap {
  order: 2;
}

.masseuse-card:nth-child(even) .masseuse-info {
  order: 1;
}

.masseuse-card:hover {
  border-color: rgba(240, 207, 118, 0.58);
}

.masseuse-image-wrap {
  position: relative;
  height: 100%;
  min-height: 470px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
}

.masseuse-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 48%, rgba(2, 8, 18, 0.46)),
    radial-gradient(circle at center, transparent 42%, rgba(2, 8, 18, 0.28));
  z-index: 2;
  pointer-events: none;
}

.masseuse-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition:
    opacity 0.7s ease,
    transform 0.9s ease;
}

.photo-main {
  opacity: 1;
  transform: scale(1);
}

.photo-hover {
  opacity: 0;
  transform: scale(1.06);
}

.masseuse-card:hover .photo-main {
  opacity: 0;
  transform: scale(1.06);
}

.masseuse-card:hover .photo-hover {
  opacity: 1;
  transform: scale(1);
}

.gallery-open {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 4;
  padding: 12px 22px;
  border: 1px solid rgba(212, 166, 58, 0.68);
  border-radius: 4px;
  background: rgba(2, 8, 18, 0.58);
  backdrop-filter: blur(10px);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.35s ease;
}

.gallery-open:hover {
  background: var(--gold-gradient);
  color: var(--navy-deep);
  border-color: transparent;
}

.masseuse-info {
  padding: 54px 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.masseuse-info::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 58px;
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.masseuse-info span {
  font-family: "Cinzel", serif;
  font-size: 72px;
  line-height: 1;
  color: rgba(212, 166, 58, 0.55);
  margin-bottom: 18px;
  text-shadow: 0 0 22px rgba(212, 166, 58, 0.18);
}

.masseuse-info h2 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 18px;
}

.masseuse-info p {
  max-width: 470px;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.masseuse-btn {
  width: fit-content;
  padding: 15px 34px;
  border: 1px solid rgba(212, 166, 58, 0.72);
  border-radius: 4px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: rgba(6, 17, 31, 0.5);
  transition: 0.35s ease;
}

.masseuse-btn:hover {
  background: var(--gold-gradient);
  color: var(--navy-deep);
  border-color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 0 28px rgba(212, 166, 58, 0.42);
  transform: translateY(-2px);
}

/* PHOTO MODAL */

.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(2, 8, 18, 0.94);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}

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

.modal-image {
  max-width: min(92vw, 760px);
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid rgba(212, 166, 58, 0.28);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.modal-close {
  position: absolute;
  top: 26px;
  right: 30px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 166, 58, 0.5);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-light);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s ease;
}

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 1px solid rgba(212, 166, 58, 0.5);
  border-radius: 50%;
  background: rgba(2, 8, 18, 0.45);
  color: var(--gold-light);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s ease;
}

.modal-arrow:hover,
.modal-close:hover {
  background: var(--gold-gradient);
  color: var(--navy-deep);
  border-color: transparent;
}

.modal-prev {
  left: 32px;
}

.modal-next {
  right: 32px;
}

.modal-counter {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  letter-spacing: 2px;
}

/* MASSEUSES RESPONSIVE */

@media (max-width: 900px) {
  .masseuses-hero {
    min-height: auto;
    padding: 130px 0 54px;
  }

  .masseuses-section {
    padding: 30px 0 90px;
  }

  .masseuses-grid {
    gap: 34px;
  }

  .masseuse-card,
  .masseuse-card:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .masseuse-card:nth-child(even) .masseuse-image-wrap,
  .masseuse-card:nth-child(even) .masseuse-info {
    order: initial;
  }

  .masseuse-image-wrap {
    min-height: 0;
    height: clamp(340px, 55vh, 480px);
    aspect-ratio: auto;
  }

  .masseuse-info {
    padding: 34px 26px 38px;
    text-align: center;
    align-items: center;
  }

  .masseuse-info::before {
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
  }

  .masseuse-info::before {
    display: none;
  }

  .masseuse-info span {
    font-size: 44px;
    margin-bottom: 10px;
  }

  .masseuse-info h2 {
    font-size: 38px;
    margin-bottom: 14px;
  }

  .masseuse-info p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .masseuse-btn {
    padding: 14px 30px;
  }
}

@media (max-width: 520px) {
  .masseuses-hero {
    padding: 118px 0 46px;
  }

  .masseuses-hero h1 {
    font-size: 38px;
  }

  .masseuses-hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  .masseuse-image-wrap {
    height: clamp(300px, 48vh, 390px);
  }

  .masseuse-info {
    padding: 30px 20px 34px;
  }

  .masseuse-info span {
    font-size: 54px;
    color: rgba(212, 166, 58, 0.5);
    margin-bottom: 14px;
  }

  .masseuse-info h2 {
    font-size: 34px;
  }

  .gallery-open {
    left: 16px;
    bottom: 16px;
    padding: 10px 16px;
    font-size: 11px;
  }

  .modal-image {
    max-width: 92vw;
    max-height: 78vh;
  }

  .modal-arrow {
    width: 44px;
    height: 44px;
    font-size: 34px;
  }

  .modal-prev {
    left: 14px;
  }

  .modal-next {
    right: 14px;
  }

  .modal-close {
    top: 18px;
    right: 18px;
  }
}


/* CONTACT PAGE - COMPACT */

.contact-page {
  min-height: 100vh;
  padding: 118px 0 54px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(2, 8, 18, 0.72), rgba(2, 8, 18, 0.92)),
    url("images/contact-bg.jpg") center/cover no-repeat;
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.contact-left h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-left p {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

.contact-benefits {
  display: grid;
  gap: 12px;
  margin: 30px 0 34px;
  max-width: 560px;
}

.contact-benefits div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 166, 58, 0.14);
}

.contact-benefits span {
  font-family: "Cinzel", serif;
  font-size: 28px;
  color: rgba(212, 166, 58, 0.52);
  line-height: 1;
}

.contact-benefits p {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  line-height: 1.45;
}

.contact-card-luxury {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(212, 166, 58, 0.32);
  background:
    linear-gradient(145deg, rgba(212, 166, 58, 0.08), transparent 38%),
    rgba(2, 8, 18, 0.36);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.5),
    0 0 46px rgba(212, 166, 58, 0.08);
}

.contact-card-inner {
  position: relative;
  padding: 44px 50px 38px;
  background:
    linear-gradient(145deg, rgba(10, 22, 35, 0.95), rgba(5, 11, 20, 0.94));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  text-align: center;
}

.contact-card-inner::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(212, 166, 58, 0.11);
  pointer-events: none;
}

.contact-small-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-card-inner h2 {
  font-size: clamp(34px, 3.4vw, 46px);
  margin-bottom: 28px;
}

.contact-details {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.contact-detail {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212, 166, 58, 0.13);
}

.contact-detail span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-detail p {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  line-height: 1.45;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.contact-icons a {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(212, 166, 58, 0.72);
  border-radius: 50%;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
  background: rgba(6, 17, 31, 0.35);
}

.contact-icons a img {
  width: 23px;
  height: 23px;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(77%) sepia(51%) saturate(489%) hue-rotate(360deg) brightness(102%) contrast(91%);
  transition: 0.35s ease;
}

.contact-icons a:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  box-shadow:
    0 0 22px rgba(212, 166, 58, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
}

.contact-icons a:hover img {
  filter: brightness(0) saturate(100%) invert(4%) sepia(32%) saturate(1972%) hue-rotate(178deg) brightness(89%) contrast(99%);
}

.contact-note {
  margin: 20px 0 0;
  text-align: center;
  font-size: 13px;
  color: rgba(247, 243, 234, 0.58);
  position: relative;
  z-index: 2;
}

.contact-primary-btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--gold-gradient);
  color: var(--navy-deep);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.35s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 12px 30px rgba(212, 166, 58, 0.22);
}

@media (max-height: 820px) and (min-width: 901px) {
  .contact-page {
    padding: 108px 0 42px;
  }

  .contact-left h1 {
    font-size: clamp(42px, 4.4vw, 62px);
  }

  .contact-left p {
    font-size: 16px;
    line-height: 1.55;
  }

  .contact-benefits {
    margin: 24px 0 28px;
    gap: 10px;
  }

  .contact-card-inner {
    padding: 34px 44px 30px;
  }

  .contact-card-inner h2 {
    margin-bottom: 20px;
  }

  .contact-details {
    gap: 10px;
  }

  .contact-detail {
    padding-bottom: 10px;
  }

  .contact-icons {
    margin-top: 22px;
  }

  .contact-note {
    margin-top: 14px;
  }
}

/* CONTACT MOBILE FIX */

@media (max-width: 900px) {
  .contact-page {
    min-height: auto;
    padding: 128px 0 70px;
    overflow: hidden;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 46px;
    text-align: center;
  }

  .contact-left {
    max-width: 100%;
  }

  .contact-left h1 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: 1.05;
    margin-bottom: 22px;
  }

  .contact-left p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.65;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-benefits {
    max-width: 100%;
    margin: 28px auto 34px;
  }

  .contact-benefits div {
    grid-template-columns: 58px 1fr;
    gap: 16px;
    text-align: left;
  }

  .contact-primary-btn {
    width: 100%;
    max-width: 360px;
    text-align: center;
  }

  .contact-card-luxury {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 12px;
  }

  .contact-card-inner {
    padding: 46px 28px 40px;
  }

  .contact-card-inner::before {
    inset: 12px;
  }
}

@media (max-width: 520px) {
  .contact-page {
    padding: 112px 0 56px;
  }

  .contact-left h1 {
    font-size: 38px;
  }

  .contact-left p {
    font-size: 15.5px;
  }

  .contact-benefits {
  width: 100%;
  max-width: 560px;
  margin: 28px auto 34px;
}

.contact-benefits div {
  grid-template-columns: 50px 1fr;
  gap: 12px;
  text-align: left;
  justify-items: start;
}

.contact-benefits p {
  width: 100%;
  text-align: left;
  margin: 0;
}

  .contact-benefits span {
    font-size: 28px;
  }

  .contact-benefits p {
    font-size: 15px;
  }

  .contact-card-luxury {
    padding: 8px;
  }

  .contact-card-inner {
    padding: 40px 20px 36px;
  }

  .contact-small-label {
    font-size: 10px;
    letter-spacing: 2.2px;
  }

  .contact-card-inner h2 {
    font-size: 34px;
    margin-bottom: 26px;
  }

  .contact-detail {
    padding-bottom: 14px;
  }

  .contact-detail span {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .contact-detail p {
    font-size: 16px;
  }

  .contact-icons {
    gap: 12px;
    margin-top: 26px;
  }

  .contact-icons a {
    width: 44px;
    height: 44px;
  }

  .contact-note {
    font-size: 12.5px;
    line-height: 1.5;
  }
}


/* PRACA PAGE */

.job-hero {
  min-height: auto;
  padding: 150px 0 80px;
  display: flex;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(212, 166, 58, 0.1), transparent 34%),
    linear-gradient(180deg, var(--navy-deep), var(--navy));
}

.job-hero h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}

.job-hero-subtitle {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: 20px;
  line-height: 1.8;
}

.job-hero-cta {
  margin-top: 18px;
}

.job-intro {
  background:
    linear-gradient(180deg, var(--navy), var(--navy-deep));
  padding-top: 20px;
  padding-bottom: 80px;
}

.job-intro-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: start;
}

.job-intro-right p {
  font-size: 17px;
  line-height: 1.85;
}
.job-intro-right {
  padding-top: 46px;
}

.job-benefits {
  background: var(--navy-deep);
}

.job-section-head {
  text-align: center;
  margin-bottom: 54px;
}

.job-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.job-card {
  min-height: 260px;
  padding: 34px 30px;
  background:
    linear-gradient(145deg, rgba(7, 18, 32, 0.95), rgba(12, 31, 51, 0.75));
  border: 1px solid rgba(212, 166, 58, 0.2);
  position: relative;
  transition: 0.35s ease;
  overflow: hidden;
}

.job-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(212, 166, 58, 0.16), transparent 70%);
}

.job-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 207, 118, 0.62);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.job-card-number {
  font-family: "Cinzel", serif;
  font-size: 44px;
  color: rgba(212, 166, 58, 0.34);
  margin-bottom: 20px;
}

.job-card h3 {
  margin-bottom: 14px;
}

.job-requirements {
  background:
    linear-gradient(180deg, var(--navy-deep), var(--navy));
}

.job-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.job-column {
  min-height: 100%;
  padding: 38px 34px;
  background:
    linear-gradient(145deg, rgba(7, 18, 32, 0.92), rgba(12, 31, 51, 0.74));
  border: 1px solid rgba(212, 166, 58, 0.18);
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.job-list-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
}

.job-list-item span {
  color: var(--gold);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.job-list-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.job-note-box {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(212, 166, 58, 0.16);
  background: rgba(6, 17, 31, 0.46);
}

.job-note-box p:last-child {
  margin-bottom: 0;
}

.job-steps {
  background: var(--navy);
}

.job-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  min-height: 230px;
  padding: 32px 28px;
  border: 1px solid rgba(212, 166, 58, 0.18);
  background:
    linear-gradient(145deg, rgba(7, 18, 32, 0.94), rgba(12, 31, 51, 0.72));
  transition: 0.35s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 207, 118, 0.62);
}

.step-number {
  font-family: "Cinzel", serif;
  font-size: 38px;
  color: rgba(212, 166, 58, 0.38);
  margin-bottom: 18px;
}

.job-cta {
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(212, 166, 58, 0.08), transparent 35%),
    linear-gradient(180deg, var(--navy-deep), #01050b);
}

.job-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}

.job-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}

@media (max-width: 1000px) {
  .job-intro-layout,
  .job-columns {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .job-cards-grid,
  .job-steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .job-hero {
    min-height: auto;
    padding: 130px 0 70px;
  }

  .job-hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
  }

  .job-column,
  .job-card,
  .step-card {
    padding: 28px 24px;
  }
}

@media (max-width: 520px) {
  .job-hero {
    padding: 118px 0 56px;
  }

  .job-hero h1 {
    font-size: 42px;
  }

  .job-hero-subtitle {
    font-size: 16px;
  }

  .job-cta p {
    font-size: 16px;
  }

  .job-card-number {
    font-size: 36px;
  }

  .step-number {
    font-size: 32px;
  }
}


/* OFERTA PAGE */

.offer-hero {
  min-height: auto;
  padding: 128px 0 52px;
  display: flex;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(212, 166, 58, 0.1), transparent 34%),
    linear-gradient(180deg, var(--navy-deep), var(--navy));
}

.offer-hero h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 22px;
}

.offer-hero-text {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 16.5px;
  line-height: 1.65;
}

.offer-slider-section {
  background:
    linear-gradient(180deg, var(--navy), var(--navy-deep));
  overflow: hidden;
  padding-top: 46px;
  padding-bottom: 72px;
}

.offer-head {
  text-align: center;
  margin-bottom: 28px;
}

.offer-head .section-label {
  margin-bottom: 12px;
}

.offer-head h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  margin-bottom: 0;
}

.offer-slider-shell {
  position: relative;
  padding: 0 72px;
}

.offer-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.offer-track::-webkit-scrollbar {
  display: none;
}

/* MAIN CARD */

.offer-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  min-height: 500px;
  height: min(560px, calc(100svh - 250px));
  background:
    linear-gradient(145deg, rgba(7, 18, 32, 0.96), rgba(12, 31, 51, 0.78));
  border: 1px solid rgba(212, 166, 58, 0.24);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.offer-card-image {
  position: relative;
  height: 100%;
  min-height: 100%;
  background: rgba(2, 8, 18, 0.55);
  overflow: hidden;
}

.offer-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(2, 8, 18, 0.15), rgba(2, 8, 18, 0.35)),
    linear-gradient(to top, rgba(2, 8, 18, 0.35), transparent 46%);
  pointer-events: none;
}

.offer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* якщо фото не завантажилось, ліва частина не буде виглядати пустою */
.offer-card-image::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(212, 166, 58, 0.12);
  z-index: 2;
  pointer-events: none;
}

/* TEXT SIDE */

.offer-card-content {
  padding: 38px 52px 38px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  position: relative;
}


.offer-card-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}

.offer-card-content h3 {
  font-family: "Cinzel", serif;
  color: var(--white);
  font-size: clamp(28px, 2.45vw, 38px);
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 620px;
}

.offer-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.offer-prices span {
  padding: 8px 13px;
  border: 1px solid rgba(212, 166, 58, 0.25);
  background: rgba(255, 255, 255, 0.02);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.35px;
}

.offer-card-content p {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.58;
  margin-bottom: 14px;
  color: var(--muted);
}

.offer-list {
  list-style: none;
  margin: 4px 0 22px;
  padding: 0;
  display: grid;
  gap: 6px;
  max-width: 620px;
}

.offer-list li {
  position: relative;
  padding-left: 19px;
  color: var(--muted);
  font-size: 14.2px;
  line-height: 1.42;
}

.offer-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 18px;
  line-height: 1.1;
}

.offer-card .hero-btn {
  width: fit-content;
  padding: 14px 30px;
  font-size: 12.5px;
  margin-top: auto;
}

/* ARROWS */

.offer-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(212, 166, 58, 0.55);
  border-radius: 50%;
  background: rgba(2, 8, 18, 0.7);
  color: var(--gold-light);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  transition: 0.35s ease;
}

.offer-arrow:hover {
  background: var(--gold-gradient);
  color: var(--navy-deep);
  border-color: transparent;
  box-shadow:
    0 0 24px rgba(212, 166, 58, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.offer-prev {
  left: 0;
}

.offer-next {
  right: 0;
}

.offer-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.offer-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(212, 166, 58, 0.2);
  cursor: pointer;
  transition: 0.3s ease;
}

.offer-dots .dot.active {
  background: var(--gold);
  box-shadow: 0 0 16px rgba(212, 166, 58, 0.45);
}

/* EXTRAS */

.offer-extras {
  background:
    linear-gradient(180deg, var(--navy-deep), var(--navy));
  padding-top: 90px;
  padding-bottom: 100px;
}

.offer-extras-intro {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
}

.extras-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.extra-card {
  padding: 34px 30px;
  min-height: 220px;
  background:
    linear-gradient(145deg, rgba(7, 18, 32, 0.94), rgba(12, 31, 51, 0.74));
  border: 1px solid rgba(212, 166, 58, 0.18);
  position: relative;
  transition: 0.35s ease;
}

.extra-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 207, 118, 0.62);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.extra-price {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: 28px;
  line-height: 1;
}

.extra-card h3 {
  color: var(--white);
  margin-bottom: 14px;
}

.extra-card-wide {
  grid-column: span 2;
}

/* CTA */

.offer-cta {
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(212, 166, 58, 0.08), transparent 35%),
    linear-gradient(180deg, var(--navy), #01050b);
}

.offer-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}

/* DESKTOP HEIGHT FIX */

@media (max-height: 830px) and (min-width: 901px) {
  .offer-hero {
    padding: 120px 0 42px;
  }

  .offer-hero h1 {
    font-size: clamp(34px, 4.5vw, 58px);
    margin-bottom: 18px;
  }

  .offer-hero-text {
    font-size: 15.5px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .offer-slider-section {
    padding-top: 36px;
    padding-bottom: 58px;
  }

  .offer-head {
    margin-bottom: 24px;
  }

  .offer-card {
    height: min(520px, calc(100svh - 230px));
    min-height: 470px;
  }

  .offer-card-content {
    padding: 30px 46px 30px 60px;
  }

  .offer-card-content h3 {
    font-size: clamp(26px, 2.25vw, 34px);
    margin-bottom: 14px;
  }

  .offer-prices {
    margin-bottom: 14px;
  }

  .offer-prices span {
    padding: 7px 12px;
    font-size: 12.5px;
  }

  .offer-card-content p {
    font-size: 14.2px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .offer-list {
    gap: 5px;
    margin-bottom: 18px;
  }

  .offer-list li {
    font-size: 13.5px;
    line-height: 1.35;
  }

  .offer-card .hero-btn {
    padding: 13px 28px;
  }
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .offer-slider-shell {
    padding: 0 56px;
  }

  .offer-card {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .offer-card-content {
    padding: 34px 42px 34px 56px;
  }
}

@media (max-width: 900px) {
  .offer-hero {
    padding: 118px 0 52px;
  }

  .offer-slider-section {
    padding-top: 42px;
    padding-bottom: 64px;
  }

  .offer-slider-shell {
    padding: 0;
  }

  .offer-arrow {
    display: none;
  }

  .offer-card {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .offer-card-image {
    flex: 0 0 300px;
    height: 300px;
    min-height: 300px;
    width: 100%;
  }

  .offer-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .offer-card-content {
    padding: 42px 36px 42px;
    display: block;
  }

  .offer-card-label {
    margin-bottom: 18px;
  }

  .offer-card-content h3 {
    margin-bottom: 24px;
  }

  .offer-prices {
    margin-bottom: 28px;
  }

  .offer-card-content p {
    margin-bottom: 24px;
  }

  .offer-list {
    margin: 0 0 34px;
    gap: 12px;
  }

  .offer-card .hero-btn {
    margin-top: 0;
  }

  .extras-grid {
    grid-template-columns: 1fr;
  }

  .extra-card-wide {
    grid-column: span 1;
  }
}


@media (max-width: 520px) {
  .offer-hero {
    padding: 104px 0 40px;
  }

  .offer-hero h1 {
    font-size: 31px;
    line-height: 1.08;
  }

  .offer-hero-text,
  .offer-cta p,
  .offer-extras-intro {
    font-size: 15px;
    line-height: 1.6;
  }

  .offer-slider-section {
    padding-top: 34px;
    padding-bottom: 54px;
  }

  .offer-head {
    margin-bottom: 22px;
  }

  .offer-head h2 {
    font-size: 30px;
  }

  .offer-track {
    align-items: stretch;
  }

  .offer-card {
    height: calc(100svh - 112px);
    min-height: 0;
    max-height: none;
    display: flex;
    flex-direction: column;
  }

  .offer-card-image {
    flex: 0 0 155px;
    height: 155px;
    min-height: 155px;
  }

  .offer-card-image::before {
    inset: 16px;
  }

  .offer-card-content {
    flex: 1;
    min-height: 0;
    padding: 28px 30px 1px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .offer-card-content::-webkit-scrollbar {
    width: 3px;
  }

  .offer-card-content::-webkit-scrollbar-thumb {
    background: rgba(212, 166, 58, 0.35);
    border-radius: 20px;
  }

  .offer-card-label {
    margin-bottom: 13px;
    font-size: 10px;
    letter-spacing: 3px;
  }

  .offer-card-content h3 {
    font-size: 30px;
    line-height: 1.08;
    margin-bottom: 20px;
  }

  .offer-prices {
    gap: 10px;
    margin-bottom: 22px;
  }

  .offer-prices span {
    font-size: 13px;
    padding: 10px 14px;
  }

  .offer-card-content p {
    font-size: 15.2px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .offer-list {
    gap: 10px;
    margin-bottom: 26px;
  }

  .offer-list li {
    font-size: 15px;
    line-height: 1.45;
    padding-left: 22px;
  }

  .offer-list li::before {
    font-size: 18px;
  }

  .offer-card .hero-btn {
    width: 100%;
    text-align: center;
    padding: 15px 18px;
    font-size: 12.5px;
    flex-shrink: 0;
    margin-top: auto;
  }

  .offer-card-scroll {
    overflow-y: auto;
    padding-right: 6px;
    margin-bottom: 22px;
    min-height: 0;
  }

  .offer-card-scroll::-webkit-scrollbar {
    width: 3px;
  }

  .offer-card-scroll::-webkit-scrollbar-thumb {
    background: rgba(212, 166, 58, 0.35);
    border-radius: 20px;
  }

  .offer-card-scroll::-webkit-scrollbar-track {
    background: transparent;
  }

  .extra-card {
    padding: 28px 22px;
    min-height: auto;
  }

  .extra-price {
    font-size: 24px;
  }
}
/* =========================
   OFERTA DESKTOP CARD BALANCE
========================= */

@media (min-width: 901px) {
  .offer-slider-section {
    padding-top: 42px;
    padding-bottom: 76px;
  }

  .offer-slider-section .container {
    width: min(1360px, 92%);
  }

  .offer-slider-shell {
    padding: 0 70px;
  }

  .offer-card {
    min-height: 560px;
    height: calc(100svh - 260px);
    max-height: 640px;
    grid-template-columns: minmax(390px, 0.88fr) minmax(0, 1.12fr);
  }

  .offer-card-content {
    padding: 38px 58px 36px 70px;
    justify-content: stretch;
    overflow: hidden;
  }

  .offer-card-scroll {
    min-height: 0;
    overflow-y: auto;
    padding-right: 34px;
    margin-bottom: 22px;
    scrollbar-width: none;
  }

  .offer-card-scroll::-webkit-scrollbar {
    display: none;
  }

  .offer-card-content h3 {
    font-size: clamp(30px, 2.4vw, 40px);
    margin-bottom: 16px;
  }

  .offer-card-content p {
    font-size: 15px;
    line-height: 1.58;
  }

  .offer-list li {
    font-size: 14.2px;
    line-height: 1.42;
  }

  .offer-card .hero-btn {
    flex-shrink: 0;
    margin-top: auto;
  }
}

/* =========================
   OFERTA REAL SCROLL INDICATOR
========================= */

@media (min-width: 901px) {
  .offer-card-content {
    position: relative;
  }

  .offer-scrollbar {
    position: absolute;
    right: 34px;
    top: 88px;
    bottom: 96px;
    width: 3px;
    border-radius: 20px;
    background: rgba(212, 166, 58, 0.12);
    overflow: hidden;
    pointer-events: none;
  }

  .offer-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 42px;
    border-radius: 20px;
    background: linear-gradient(
      180deg,
      rgba(246, 223, 143, 0.95),
      rgba(212, 166, 58, 0.62)
    );
    box-shadow: 0 0 12px rgba(212, 166, 58, 0.34);
  }

  .offer-scrollbar.is-hidden {
    display: none;
  }
}



/* =========================
   GIFT VOUCHER SECTION
========================= */

.gift-section {
  position: relative;
  padding: 34px 0 46px;
  background:
    linear-gradient(
      180deg,
      var(--navy-deep) 0%,
      #04101d 100%
    );
}

.gift-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
  padding: 34px 42px;
  border: 1px solid rgba(212, 166, 58, 0.22);
  background:
    linear-gradient(
      135deg,
      rgba(212, 166, 58, 0.055),
      rgba(7, 18, 32, 0.72) 38%,
      rgba(12, 31, 51, 0.52)
    );
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  position: relative;
  overflow: hidden;
}

.gift-box::before {
  content: "";
  position: absolute;
  left: 42px;
  top: 0;
  width: 86px;
  height: 2px;
  background: var(--gold);
  opacity: 0.85;
}

.gift-text {
  position: relative;
  z-index: 2;
}

.gift-text .section-label {
  margin-bottom: 10px;
}

.gift-text h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 14px;
}

.gift-text p {
  max-width: 720px;
  margin: 0;
  font-size: 15.5px;
  line-height: 1.75;
}

.gift-btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  white-space: nowrap;
  padding: 15px 30px;
  border: 1px solid rgba(212, 166, 58, 0.72);
  border-radius: 4px;
  color: var(--gold-light);
  background: rgba(6, 17, 31, 0.42);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.35s ease;
}

.gift-btn:hover {
  background: var(--gold-gradient);
  color: var(--navy-deep);
  border-color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 0 26px rgba(212, 166, 58, 0.36);
  transform: translateY(-2px);
}

@media (max-width: 820px) {
  .gift-section {
    padding: 28px 0 40px;
  }

  .gift-box {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px 26px;
    text-align: left;
  }

  .gift-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .gift-box {
    padding: 28px 22px;
  }

  .gift-text h2 {
    font-size: 30px;
  }

  .gift-text p {
    font-size: 15px;
    line-height: 1.65;
  }
}

/* =========================
   EXTRAS CAROUSEL
========================= */

.extras-grid {
  display: none;
}

.extras-carousel-shell {
  position: relative;
  margin-top: 48px;
  padding: 0 74px;
}

.extras-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.extras-track::-webkit-scrollbar {
  display: none;
}

.extras-track .extra-card {
  flex: 0 0 calc((100% - 24px) / 3);
  scroll-snap-align: start;
  min-height: 240px;
}

.extras-track .extra-card:hover {
  transform: none;
  border-color: rgba(240, 207, 118, 0.62);
  box-shadow:
    0 0 0 1px rgba(212, 166, 58, 0.12),
    0 18px 44px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(212, 166, 58, 0.1);
}

.extras-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(212, 166, 58, 0.55);
  border-radius: 50%;
  background: rgba(2, 8, 18, 0.7);
  color: var(--gold-light);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  transition: 0.35s ease;
}

.extras-arrow:hover {
  background: var(--gold-gradient);
  color: var(--navy-deep);
  border-color: transparent;
  box-shadow:
    0 0 24px rgba(212, 166, 58, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.extras-prev {
  left: 0;
}

.extras-next {
  right: 0;
}

.extras-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.extras-dots .dot {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: rgba(212, 166, 58, 0.2);
  cursor: pointer;
  transition: 0.3s ease;
}

.extras-dots .dot.active {
  background: var(--gold);
  box-shadow: 0 0 16px rgba(212, 166, 58, 0.45);
}

/* =========================
   EXTRAS CAROUSEL DESKTOP FIX
========================= */

@media (min-width: 901px) {
  .offer-extras .container {
    width: min(1380px, 94%);
  }

  .extras-carousel-shell {
    padding: 0 62px;
  }

  .extras-track {
    gap: 22px;
  }

  .extras-track .extra-card {
    flex: 0 0 calc((100% - 44px) / 3);
    min-height: 300px;
    padding: 30px 28px;
  }

  .extras-arrow {
    width: 50px;
    height: 50px;
  }

  .extras-prev {
    left: 0;
  }

  .extras-next {
    right: 0;
  }
}

@media (min-width: 1200px) {
  .offer-extras .container {
    width: min(1460px, 94%);
  }

  .extras-carousel-shell {
    padding: 0 70px;
  }

  .extras-track .extra-card {
    padding: 34px 32px;
  }
}

@media (max-width: 900px) {
  .extras-carousel-shell {
    padding: 0;
  }

  .extras-arrow {
    display: none;
  }

  .extras-track .extra-card {
    flex: 0 0 100%;
  }
}

.extra-card {
  position: relative;
  padding: 30px 30px 28px;
  min-height: 260px;
  background:
    linear-gradient(145deg, rgba(5, 16, 30, 0.96), rgba(8, 26, 44, 0.82));
  border: 1px solid rgba(212, 166, 58, 0.24);
  border-radius: 18px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: 0.35s ease;
  overflow: hidden;
}

.extra-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 88px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), transparent);
  opacity: 0.95;
}

.extra-card::after {
  content: "";
  position: absolute;
  top: -55px;
  right: -55px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(212, 166, 58, 0.10), transparent 70%);
  pointer-events: none;
}

.extra-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 207, 118, 0.58);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(212, 166, 58, 0.08);
}

.extra-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.extra-card h3 {
  margin: 0;
  color: var(--white);
  font-family: "Cinzel", serif;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.extra-price {
  flex-shrink: 0;
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
  text-align: right;
  margin: 0;
}

.extra-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.72;
  max-width: 95%;
}

.extras-track .extra-card {
  flex: 0 0 calc((100% - 44px) / 3);
  scroll-snap-align: start;
  min-height: 290px;
}

@media (max-width: 900px) {
  .extras-track .extra-card {
    flex: 0 0 100%;
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .extra-card {
    padding: 24px 22px 24px;
    border-radius: 16px;
  }

  .extra-card-top {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
  }

  .extra-card h3 {
    font-size: 18px;
    line-height: 1.22;
  }

  .extra-price {
    font-size: 21px;
  }

  .extra-card p {
    font-size: 15px;
    line-height: 1.62;
    max-width: 100%;
  }
}

.extra-card {
  position: relative;
  padding: 30px 30px 28px;
  min-height: 260px;
  background:
    linear-gradient(145deg, rgba(5, 16, 30, 0.96), rgba(8, 26, 44, 0.82));
  border: 1px solid rgba(212, 166, 58, 0.24);
  border-radius: 0;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: 0.35s ease;
  overflow: hidden;
}

.extra-card::before {
  display: none;
}

.extra-card::after {
  content: "";
  position: absolute;
  top: -55px;
  right: -55px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(212, 166, 58, 0.10), transparent 70%);
  pointer-events: none;
}

.extra-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 207, 118, 0.58);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(212, 166, 58, 0.08);
}

.extra-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.extra-card h3 {
  margin: 0;
  color: var(--white);
  font-family: "Cinzel", serif;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.extra-price {
  flex-shrink: 0;
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
  text-align: right;
  margin: 0;
}

.extra-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.72;
  max-width: 95%;
}

/* =========================
   OFERTA SMOOTH SECTION FLOW
========================= */

.offer-slider-section {
  background:
    linear-gradient(
      180deg,
      var(--navy) 0%,
      #061321 48%,
      var(--navy-deep) 100%
    );
  margin-top: -1px;
}

.offer-extras {
  background:
    linear-gradient(
      180deg,
      var(--navy-deep) 0%,
      #04101d 44%,
      #061321 100%
    );
  margin-top: -1px;
  padding-bottom: 86px;
}

.gift-section {
  position: relative;
  margin-top: -1px;
  padding: 26px 0 64px;
  background:
    linear-gradient(
      180deg,
      #061321 0%,
      #071524 42%,
      var(--navy) 100%
    );
}

.gift-section::before {
  display: none;
}

.gift-section .container {
  position: relative;
  z-index: 2;
}

.gift-box {
  background:
    linear-gradient(
      135deg,
      rgba(212, 166, 58, 0.045),
      rgba(7, 18, 32, 0.58) 38%,
      rgba(12, 31, 51, 0.42)
    );
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.offer-cta {
  margin-top: -1px;
  background:
    radial-gradient(circle at center, rgba(212, 166, 58, 0.07), transparent 36%),
    linear-gradient(
      180deg,
      var(--navy) 0%,
      #061321 42%,
      var(--navy-deep) 100%
    );
}


/* =========================
   MOBILE CTA BUTTONS EQUAL WIDTH
========================= */

@media (max-width: 520px) {
  .offer-cta .job-cta-buttons,
  .job-cta .job-cta-buttons {
    width: 100%;
    gap: 18px;
  }

  .offer-cta .job-cta-buttons .main-btn,
  .offer-cta .job-cta-buttons .hero-btn,
  .job-cta .job-cta-buttons .main-btn,
  .job-cta .job-cta-buttons .hero-btn {
    width: 80%;
    max-width: 300px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 22px;
  }
}

/* =========================
   ARROWS CENTER FIX
========================= */

.services-arrow,
.offer-arrow,
.extras-arrow,
.modal-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 0;
  line-height: 1;
}

.services-prev::before,
.offer-prev::before,
.extras-prev::before,
.modal-prev::before {
  content: "‹";
}

.services-next::before,
.offer-next::before,
.extras-next::before,
.modal-next::before {
  content: "›";
}

.services-arrow::before,
.offer-arrow::before,
.extras-arrow::before,
.modal-arrow::before {
  display: block;
  font-size: 38px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  transform: translateY(-3px);
}

/* =========================
   PRIVACY POLICY PAGE
========================= */

.privacy-hero {
  padding: 160px 0 30px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(212, 166, 58, 0.08), transparent 34%),
    linear-gradient(180deg, var(--navy-deep), var(--navy));
}

.privacy-hero h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

.privacy-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
}

.privacy-section {
  background:
    linear-gradient(
      180deg,
      var(--navy) 0%,
      #061321 46%,
      var(--navy-deep) 100%
    );
  padding-top: 70px;
}

.privacy-content {
  width: min(940px, 90%);
  padding: 54px 58px;
  border: 1px solid rgba(212, 166, 58, 0.2);
  background:
    linear-gradient(145deg, rgba(7, 18, 32, 0.92), rgba(12, 31, 51, 0.62));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.privacy-content h2 {
  margin-top: 44px;
  margin-bottom: 18px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

.privacy-content h2:first-of-type {
  margin-top: 0;
}

.privacy-content p {
  font-size: 16px;
  line-height: 1.82;
  margin-bottom: 18px;
}

.privacy-content a {
  color: var(--gold-light);
  transition: 0.3s ease;
}

.privacy-content a:hover {
  color: var(--gold);
}

.privacy-content ul {
  list-style: none;
  margin: 10px 0 26px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.privacy-content li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.privacy-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 20px;
  line-height: 1.35;
}

.privacy-date {
  margin-top: 38px;
  color: var(--gold-light);
  font-weight: 600;
}

@media (max-width: 820px) {
  .privacy-hero {
    padding: 128px 0 54px;
  }

  .privacy-section {
    padding-top: 46px;
  }

  .privacy-content {
    padding: 38px 28px;
  }

  .privacy-content p,
  .privacy-content li {
    font-size: 15.5px;
    line-height: 1.7;
  }
}

@media (max-width: 520px) {
  .privacy-hero {
    padding: 116px 0 46px;
  }

  .privacy-hero h1 {
    font-size: 38px;
  }

  .privacy-hero p {
    font-size: 15.5px;
  }

  .privacy-content {
    padding: 32px 22px;
  }

  .privacy-content h2 {
    font-size: 25px;
    margin-top: 36px;
  }
}

/* =========================
   FOOTER LINKS
========================= */

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: #8d867b;
  font-size: 13px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-links p {
  margin: 0;
}

@media (max-width: 820px) {
  .footer-links {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }
}

/* =========================
   FOOTER PREMIUM REDESIGN
========================= */

.footer {
  padding: 38px 0 34px;
  background:
    linear-gradient(
      180deg,
      #01050b 0%,
      #020812 100%
    );
  border-top: 1px solid rgba(212, 166, 58, 0.16);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-left p {
  margin: 0;
}

.footer-left p:first-child {
  color: rgba(247, 243, 234, 0.58);
  /* font-family: "Cinzel", serif; */
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-left p:last-child {
  color: rgba(141, 134, 123, 0.72);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.footer-links a {
  position: relative;
  color: rgba(184, 178, 168, 0.82);
  font-size: 13px;
  font-weight: 500;
  transition: 0.3s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-links a:hover::after {
  width: 100%;
}


@media (max-width: 820px) {
  .footer {
    padding: 40px 0 34px;
  }

  .footer-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 18px;
  }

  .footer-left {
    align-items: center;
  }

  .footer-links {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a::after {
    display: none;
  }
}


/* =========================
   MOBILE CAROUSEL ARROWS HIDE FIX
========================= */

@media (max-width: 900px) {
  .services-arrow,
  .offer-arrow,
  .extras-arrow {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
  }

  .services-carousel-shell,
  .offer-slider-shell,
  .extras-carousel-shell {
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden;
  }
}


/* =========================
   BURGER NARROWER
========================= */

@media (max-width: 820px) {
  .burger-btn {
    width: 28px;
    /* height: 34px; */
    gap: 7px;
  }

  .burger-btn span {
    width: 28px;
    /* height: 1.4px; */
  }

  .burger-btn.active span:nth-child(1) {
    transform: translateY(8.3px) rotate(45deg);
  }

  .burger-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .burger-btn.active span:nth-child(3) {
    transform: translateY(-8.3px) rotate(-45deg);
  }
}

@media (max-width: 430px) {
  .burger-btn {
    width: 26px;
  }

  .burger-btn span {
    width: 26px;
  }
}

/* =========================
   LANGUAGE SWITCH ACTIVE STATE
========================= */

.lang-dropdown a.active {
  color: var(--gold-light);
  background: rgba(212, 166, 58, 0.12);
}
