/* ═══════════════════════════════════════════════════════════
   Ukande Skin Clinic — Public Website
   Luxury White & Gold Design System
   ═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --gold:      #c9a84c;
  --gold-lt:   #e8c97c;
  --gold-dk:   #a0762a;
  --gold-glow: rgba(201,168,76,.15);
  --gold-grad: linear-gradient(135deg, #c9a84c 0%, #e8c97c 50%, #c9a84c 100%);
  --cream:     #faf8f3;
  --white:     #ffffff;
  --charcoal:  #1a1a2e;
  --text:      #2d2d2d;
  --muted:     #6b6b7b;
  --border:    rgba(201,168,76,.25);

  --ff-serif:  'Playfair Display', Georgia, serif;
  --ff-sans:   'Inter', system-ui, sans-serif;

  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --shadow-gold: 0 8px 32px rgba(201,168,76,.20);

  --radius:    14px;
  --radius-sm: 8px;
  --transition: all .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--ff-serif); line-height: 1.25; }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  color: var(--charcoal);
  margin-bottom: .5rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto .25rem;
}

.gold-rule {
  width: 56px;
  height: 3px;
  background: var(--gold-grad);
  border-radius: 2px;
  margin: 1.1rem auto 2.5rem;
}

.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header .gold-rule { margin-top: 1rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .78rem 1.8rem;
  border-radius: 50px;
  font-family: var(--ff-sans);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-grad);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(201,168,76,.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.45);
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 6rem 0; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

#navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 3rem;
  transition: var(--transition);
}

/* Scrolled state */
#navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(201,168,76,.12);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
}

.nav-logo svg { flex-shrink: 0; }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  transition: color .25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width .3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Transparent nav — white text on hero */
#navbar:not(.scrolled) .nav-links a,
#navbar:not(.scrolled) .nav-logo { color: var(--charcoal); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .3rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 860px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 1.5rem 2rem; gap: 1.2rem; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
#hero {
  min-height: calc(100vh - 58px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(105deg,
      rgba(250,248,243,1)   0%,
      rgba(250,248,243,.98) 40%,
      rgba(250,248,243,.82) 62%,
      rgba(250,248,243,.45) 80%,
      rgba(250,248,243,.15) 100%
    ),
    url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?w=1920&auto=format&fit=crop&q=80')
    center right / cover no-repeat;
  padding-top: 5rem;
  overflow: hidden;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: 2rem;
}

#hero .container {
  max-width: 1400px;
  padding: 0 3rem;
}

.hero-content { position: relative; }

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--charcoal);
  margin-bottom: 1.1rem;
  position: relative;
}

.hero-title .underline-gold {
  position: relative;
  display: inline-block;
}

.hero-title .underline-gold::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 4px;
  background: var(--gold-grad);
  border-radius: 2px;
  animation: growUnderline 1.2s .6s ease forwards;
}

@keyframes growUnderline {
  to { width: 100%; }
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Stat badges */
.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .8rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.hero-stat .stat-number {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: .25rem;
}

/* Hero illustration — hidden, bg photo shows on the right */
.hero-visual {
  display: none;
}

@keyframes floatIllustration {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* ══════════════════════════════════════════════════════════
   MOBILE — RADICAL PREMIUM OVERHAUL (≤ 760px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 760px) {

  /* ── Global mobile rhythm ───────────────────────────── */
  section { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }
  .section-title { font-size: 1.5rem; }
  .section-sub { font-size: .88rem; }
  .gold-rule { width: 40px; margin: .7rem auto 1.5rem; }
  .section-header { margin-bottom: 1.5rem; }

  /* ── Hero — immersive mobile layout ─────────────────── */
  #hero {
    min-height: 100svh;
    padding: 0;
    display: flex;
    align-items: center;
    background:
      linear-gradient(
        180deg,
        rgba(250,248,243,.97) 0%,
        rgba(250,248,243,.85) 50%,
        rgba(250,248,243,.95) 100%
      ),
      url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?w=800&auto=format&fit=crop&q=60')
      center center / cover no-repeat;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 5rem 0 2rem;
  }

  #hero .container {
    padding: 0 1.5rem;
  }

  .eyebrow {
    font-size: .68rem;
    letter-spacing: .18em;
    background: var(--gold-glow);
    padding: .35rem .9rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    display: inline-block;
  }

  .hero-title {
    font-size: 2.6rem;
    margin-bottom: .6rem;
    line-height: 1.15;
  }

  .hero-sub {
    font-size: .9rem;
    max-width: 320px;
    margin: 0 auto 1.8rem;
    line-height: 1.65;
    color: var(--muted);
  }

  .hero-ctas {
    justify-content: center;
    gap: .7rem;
    margin-bottom: 2rem;
  }

  .hero-ctas .btn {
    padding: .75rem 1.6rem;
    font-size: .88rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    width: 100%;
    padding: 0 .25rem;
  }

  .hero-stat {
    padding: .75rem .4rem;
    text-align: center;
    border-radius: 12px;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .hero-stat .stat-number {
    font-size: 1.35rem;
  }

  .hero-stat .stat-label {
    font-size: .65rem;
    letter-spacing: .03em;
    text-transform: uppercase;
  }

  /* ── Marquee ────────────────────────────────────────── */
  .marquee-section { padding: .8rem 0; }
  .marquee-item { font-size: .75rem; padding: 0 1.5rem; }

  /* ── Services ───────────────────────────────────────── */
  .service-card {
    padding: 1.3rem 1rem;
  }

  .service-icon {
    width: 44px; height: 44px;
    margin-bottom: .8rem;
  }

  .service-icon svg { width: 22px; height: 22px; }

  .service-name { font-size: .95rem; }
  .service-desc { font-size: .8rem; }

  /* ── About ──────────────────────────────────────────── */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }

  .about-avatar-wrap {
    flex-direction: column;
    align-items: center;
  }

  .avatar-circle { width: 140px; height: 140px; }

  .credential-strip { gap: .5rem; }

  .credential {
    font-size: .78rem;
    padding: .5rem .8rem;
  }

  .about-text p { font-size: .9rem; }
  .about-quote { font-size: 1rem; }

  /* ── Stats row ──────────────────────────────────────── */
  #stats { padding: 2.5rem 0; }
  .stat-block { padding: 1.5rem .75rem; }
  .stat-block .stat-label { font-size: .8rem; }

  /* ── Why cards ──────────────────────────────────────── */
  .why-card {
    padding: 1.5rem 1.2rem;
  }

  .why-icon {
    width: 48px; height: 48px;
    margin-bottom: 1rem;
  }

  .why-card h3 { font-size: .95rem; }
  .why-card p { font-size: .82rem; }

  /* ── Testimonials ───────────────────────────────────── */
  .testimonial-card {
    padding: 1.8rem 1.2rem;
  }

  .testimonial-text { font-size: 1rem; }

  /* ── Booking ────────────────────────────────────────── */
  .booking-wrap { padding: 1.5rem 1rem; }

  /* ── Contact ────────────────────────────────────────── */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .map-wrap { height: 250px; }

  /* ── Footer ─────────────────────────────────────────── */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  footer { padding: 2.5rem 0 1.5rem; }
}

/* ══════════════════════════════════════════════════════════
   MARQUEE STRIP
   ══════════════════════════════════════════════════════════ */
.marquee-section {
  padding: 1.2rem 0;
  background: var(--charcoal);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 0 2.5rem;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.marquee-item .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════ */
#services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,168,76,.18);
}

.service-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.1rem;
  background: var(--gold-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.service-card:hover .service-icon svg { color: white; }

.service-icon svg { width: 26px; height: 26px; color: var(--gold); transition: var(--transition); }

.service-name {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: .4rem;
}

.service-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════ */
#about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.about-avatar-wrap { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

.avatar-circle {
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 4px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    var(--gold-grad) border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  overflow: hidden;
}

.avatar-circle::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 40% 35%, rgba(201,168,76,.08) 0%, transparent 70%);
}

.credential-strip {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  width: 100%;
}

.credential {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .6rem 1rem;
  font-size: .84rem;
  color: var(--text);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.credential svg { color: var(--gold); flex-shrink: 0; }

/* About text */
.about-text h2 { color: var(--charcoal); margin-bottom: 1.1rem; }

.about-text p { color: var(--muted); margin-bottom: 1rem; font-size: 1rem; }

.about-gold-rule {
  width: 48px; height: 3px;
  background: var(--gold-grad);
  border-radius: 2px;
  margin: 1.5rem 0;
}

.about-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--charcoal);
  border-left: 3px solid var(--gold);
  padding-left: 1.1rem;
  margin-top: .5rem;
}

/* about mobile handled in main mobile block below */

/* ══════════════════════════════════════════════════════════
   STATS ROW
   ══════════════════════════════════════════════════════════ */
#stats {
  padding: 4rem 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,.06) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.stat-block {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(4px);
}

.stat-block .stat-number {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-block .stat-suffix {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-block .stat-label {
  font-size: .92rem;
  color: rgba(255,255,255,.55);
  margin-top: .6rem;
  letter-spacing: .04em;
}

@media (max-width: 600px) { .stats-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════
   WHY CHOOSE US
   ══════════════════════════════════════════════════════════ */
#why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  background: var(--cream);
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.why-icon {
  width: 60px; height: 60px;
  background: var(--gold-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.why-card:hover .why-icon { background: var(--gold-glow); border-color: var(--gold); }

.why-icon svg { width: 28px; height: 28px; color: var(--gold); }

.why-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: .5rem;
}

.why-card p { font-size: .88rem; color: var(--muted); }

@media (max-width: 960px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .why-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
#testimonials {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimonials-carousel {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  animation: fadeSlide .5s ease;
}
.testimonial-slide.active { display: block; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  letter-spacing: .1em;
}

.testimonial-text {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold);
}

.testimonial-loc {
  font-size: .82rem;
  color: var(--muted);
  margin-top: .2rem;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.8rem;
}

.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════
   BOOKING FORM
   ══════════════════════════════════════════════════════════ */
#booking {
  background: var(--white);
}

.booking-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: .83rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: .02em;
}

.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .72rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--ff-sans);
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.14);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-submit { grid-column: 1 / -1; }

.booking-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

/* Status messages */
.form-status {
  grid-column: 1 / -1;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 500;
  display: none;
}

.form-status.success {
  display: block;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}

.form-status.error {
  display: block;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

@media (max-width: 600px) {
  .booking-form { grid-template-columns: 1fr; }
  .booking-wrap { padding: 1.8rem 1.2rem; }
}

/* ══════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════ */
#contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.contact-icon {
  width: 40px; height: 40px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 18px; height: 18px; color: var(--gold); }

.contact-item-text strong {
  display: block;
  font-size: .88rem;
  color: var(--charcoal);
  margin-bottom: .15rem;
}

.contact-item-text span, .contact-item-text a {
  font-size: .88rem;
  color: var(--muted);
}

.contact-item-text a:hover { color: var(--gold); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .72rem 1.5rem;
  background: #25d366;
  color: white;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 340px;
  background: #f0ede6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
}

@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .nav-logo { color: white; margin-bottom: .8rem; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.5); max-width: 280px; }

.footer-col h4 {
  font-family: var(--ff-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer-col ul li + li { margin-top: .6rem; }

.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .25s;
}

.footer-col ul li a:hover { color: var(--gold-lt); }

.footer-col p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

.footer-bottom span { color: var(--gold); }

@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ══════════════════════════════════════════════════════════
   ENTRANCE ANIMATIONS
   ══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.slide-left  { transform: translateX(-32px); }
.reveal.slide-right { transform: translateX(32px); }

.reveal.visible {
  opacity: 1;
  transform: translate(0);
}

/* Stagger delay for grid children */
.stagger > *:nth-child(1) { transition-delay: .05s; }
.stagger > *:nth-child(2) { transition-delay: .12s; }
.stagger > *:nth-child(3) { transition-delay: .19s; }
.stagger > *:nth-child(4) { transition-delay: .26s; }
.stagger > *:nth-child(5) { transition-delay: .33s; }
.stagger > *:nth-child(6) { transition-delay: .40s; }
.stagger > *:nth-child(7) { transition-delay: .47s; }
.stagger > *:nth-child(8) { transition-delay: .54s; }

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
#faq { background: var(--white); }

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  transition: color .25s;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s ease;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

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

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.2rem;
}

.faq-answer p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.75;
}

.faq-answer a { color: var(--gold); text-decoration: underline; }

/* ══════════════════════════════════════════════════════════
   TREATMENT PAGES
   ══════════════════════════════════════════════════════════ */
.treatment-hero {
  background: var(--cream);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.treatment-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

.treatment-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: .9rem;
}

.treatment-hero .lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 2rem;
}

.treatment-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.treatment-section { margin-bottom: 3rem; }

.treatment-section h2 {
  font-family: var(--ff-serif);
  font-size: 1.55rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--border);
}

.treatment-section p {
  color: var(--muted);
  margin-bottom: .85rem;
  line-height: 1.8;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin: 1rem 0;
}

.symptom-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .85rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--text);
  transition: border-color .25s;
}

.symptom-item:hover { border-color: var(--gold); }

.symptom-item::before {
  content: '✦';
  color: var(--gold);
  font-size: .65rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.approach-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 1rem 0;
}

.approach-list li {
  display: block;
  padding: .9rem 1.2rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}

.approach-list li strong {
  display: block;
  color: var(--charcoal);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .25rem;
}

.treatment-cta-band {
  background: var(--charcoal);
  padding: 4rem 0;
  text-align: center;
}

.treatment-cta-band h2 {
  font-family: var(--ff-serif);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: .75rem;
}

.treatment-cta-band p {
  color: rgba(255,255,255,.6);
  margin-bottom: 2rem;
}

@media (max-width: 580px) {
  .symptom-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ══════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: .7rem;
  background: #25d366;
  color: white;
  border-radius: 50px;
  padding: .75rem 1.2rem .75rem .9rem;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  text-decoration: none;
  font-family: var(--ff-sans);
  font-size: .88rem;
  font-weight: 600;
  transition: transform .3s ease, box-shadow .3s ease, padding .3s ease;
  animation: waPulse 2.5s ease-in-out infinite;
}

.wa-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.wa-float .wa-label {
  white-space: nowrap;
  overflow: hidden;
  max-width: 130px;
  transition: max-width .35s ease, opacity .35s ease;
  opacity: 1;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(37,211,102,.55);
}

/* Collapsed state — just the icon */
.wa-float.collapsed {
  padding: .85rem;
  border-radius: 50%;
}

.wa-float.collapsed .wa-label {
  max-width: 0;
  opacity: 0;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,.7); }
}

@media (max-width: 768px) {
  .wa-float { display: none !important; }
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
