:root {
  --bg: #0b0b0b;
  --bg-soft: #141414;
  --text: #f5f5f5;
  --muted: #c5c5c5;
  --gold: #d4af37;
  --gold-deep: #b68c18;
  --white: #ffffff;
  --light: #f4f4f4;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  --radius: 20px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  font-family: Poppins, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.section-light {
  background: linear-gradient(180deg, #151515, #111111);
}

.section-dark {
  background: var(--bg-soft);
}

.section-heading {
  text-align: center;
  margin-bottom: 38px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 1.2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(11, 11, 11, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap,
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.nav-wrap {
  position: relative;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand img,
.footer-brand img {
  width: 42px;
  height: 42px;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.mobile-menu-toggle:hover {
  border-color: rgba(212, 175, 55, 0.7);
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #111;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #f0c653, var(--gold));
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.02);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.72)),
    url("assets/images/hero-massage.svg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 28%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.hero-subtitle {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-card,
.service-card,
.review-card,
.contact-card,
.map-card,
.faq-item,
.feature-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card-inner {
  padding: 28px;
}

.hero-card li {
  margin: 10px 0;
  color: var(--muted);
}

.card-grid,
.feature-grid,
.stats-grid {
  display: grid;
  gap: 22px;
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.review-card {
  padding: 24px;
}

.icon-wrap {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-item {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-item span {
  color: var(--gold);
  font-size: 1.4rem;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 8px;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stars {
  color: var(--gold);
  margin-bottom: 10px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 14px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text);
  padding: 20px 22px;
  font: inherit;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 16px;
  color: var(--gold);
  font-size: 1.4rem;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 160px;
  padding: 0 22px 20px;
}

.section-contact {
  background: linear-gradient(180deg, #111111, #0c0c0c);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-card,
.map-card {
  padding: 26px;
}

.contact-lines p {
  margin-bottom: 12px;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.map-card iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 18px;
}

.site-footer {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: #25d366;
  color: #0d0d0d;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow);
  border: 0;
  cursor: pointer;
}

.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 100;
}

.booking-modal.open {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  width: min(520px, 100%);
  background: #111;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  position: relative;
}

.close-modal {
  position: absolute;
  right: 16px;
  top: 12px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

#bookingForm {
  display: grid;
  gap: 14px;
}

#bookingForm label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

#bookingForm input,
#bookingForm select {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 14px;
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.fade-left {
  transform: translateX(-30px);
}

.reveal.fade-right {
  transform: translateX(30px);
}

.reveal.fade-left.is-visible,
.reveal.fade-right.is-visible {
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 980px) {
  .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    background: rgba(11, 11, 11, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 60;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .hero-grid,
  .contact-layout,
  .services-grid,
  .review-grid,
  .feature-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 740px) {
  .hero {
    padding: 80px 0;
  }

  .hero-grid,
  .contact-layout,
  .services-grid,
  .review-grid,
  .feature-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .brand span {
    font-size: 0.95rem;
    max-width: 200px;
  }

  .mobile-menu-toggle {
    margin-left: auto;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
  }
}
