/* ============================================================
   OLIVIA SKIN & HAIR CLINIC — STYLESHEET
   Palette:
     Maroon:  #4A0E0E  |  Gold:   #C9A84C
     Cream:   #FAF7F2  |  Beige:  #F0E6D3
     Text:    #2C1810  |  Muted:  #6B5E56
   ============================================================ */

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body  { font-family: 'Lato', sans-serif; color: #2C1810; background: #FAF7F2; overflow-x: hidden; width: 100%; line-height: 1.75; -webkit-tap-highlight-color: transparent; }
a     { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
a:focus, a:focus-visible { outline: none; }
img   { max-width: 100%; height: auto; display: block; }
ul    { list-style: none; }
button { font-family: inherit; -webkit-tap-highlight-color: transparent; }
button:focus, button:focus-visible { outline: none; }

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --maroon:       #4A0E0E;
  --maroon-l:     #6B1414;
  --maroon-d:     #2C0808;
  --gold:         #C9A84C;
  --gold-l:       #DFC27A;
  --gold-d:       #A8893A;
  --cream:        #FAF7F2;
  --beige:        #F0E6D3;
  --beige-d:      #DDD0BB;
  --text:         #2C1810;
  --muted:        #6B5E56;
  --white:        #FFFFFF;
  --shadow-s:     0 2px 12px rgba(74,14,14,.10);
  --shadow-m:     0 6px 24px rgba(74,14,14,.14);
  --shadow-l:     0 12px 40px rgba(74,14,14,.20);
  --radius:       12px;
  --ease:         all .3s ease;
}

/* ── UTILITIES ──────────────────────────────────────────────── */
.container   { max-width: 1180px; margin: 0 auto; padding: 0 24px; width: 100%; }
.section     { padding: 96px 0; overflow-x: hidden; }
.visually-hidden { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag    { display:inline-block; font-size:.78rem; letter-spacing:3px; text-transform:uppercase; color:var(--gold); font-weight:700; margin-bottom:10px; }
.section-title  { font-family:'Playfair Display',serif; font-size:clamp(1.9rem,4vw,2.7rem); color:var(--maroon); margin-bottom:14px; line-height:1.25; }
.section-title span { color:var(--gold); }
.section-desc   { color:var(--muted); max-width:580px; margin:0 auto; font-size:1rem; }
.divider        { width:56px; height:3px; background:linear-gradient(90deg,var(--maroon),var(--gold)); border-radius:2px; margin:14px auto 0; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px; border: 2px solid transparent;
  font-family: 'Lato', sans-serif; font-size: .93rem; font-weight: 700;
  cursor: pointer; transition: var(--ease); letter-spacing:.4px; white-space: nowrap;
}
.btn-wa           { background:#25D366; color:#fff; border-color:#25D366; box-shadow:0 4px 14px rgba(37,211,102,.30); }
.btn-wa:hover     { background:#1eb85c; border-color:#1eb85c; transform:translateY(-2px); box-shadow:0 7px 20px rgba(37,211,102,.40); color:#fff; }
.btn-outline-white{ background:transparent; color:#fff; border-color:rgba(255,255,255,.75); }
.btn-outline-white:hover { background:#fff; color:var(--maroon); border-color:#fff; transform:translateY(-2px); }
.btn-primary      { background:var(--maroon); color:#fff; border-color:var(--maroon); }
.btn-primary:hover{ background:var(--maroon-l); border-color:var(--maroon-l); transform:translateY(-2px); box-shadow:var(--shadow-m); color:#fff; }
.btn-block        { width:100%; justify-content:center; padding:15px; font-size:.98rem; }
.btn-sm           { padding:9px 20px; font-size:.82rem; }

/* ── SCROLL ANIMATIONS ──────────────────────────────────────── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .65s ease, transform .65s ease;
}
.reveal       { transform: translateY(24px); }
.reveal-left  { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0, 0);
}

/* ── WHATSAPP FLOAT ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 9000;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  transition: var(--ease);
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-3px); color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,.55); }
.whatsapp-float::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; animation: wa-pulse 2.2s infinite; z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .6; }
  70%  { transform: scale(1.5); opacity: 0;  }
  100% { transform: scale(1.5); opacity: 0;  }
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 5000;
  padding: 6px 0; width: 100%;
  background: rgba(28, 4, 4, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
/* Gold shimmer accent line at top of navbar */
.navbar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-d) 20%, var(--gold-l) 50%, var(--gold-d) 80%, transparent 100%);
}
.navbar.scrolled {
  background: rgba(26, 4, 4, 0.97);
  border-bottom-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 4px 28px rgba(0,0,0,.55);
}
.nav-container {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { line-height: 0; flex-shrink: 0; }
.nav-logo img {
  height: 90px;
  width: auto;
  max-width: 180px;
  display: block;
  transition: var(--ease);
  /* negative margin compensates for transparent padding in the image file */
  margin: -14px 0;
}
.nav-logo img:hover { opacity: .9; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: rgba(255,255,255,.82); font-size: .78rem; font-weight: 700;
  letter-spacing: .9px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 50px;
  transition: var(--ease); position: relative;
  -webkit-tap-highlight-color: transparent; outline: none;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%);
  width: 0; height: 1.5px; background: var(--gold); border-radius: 2px;
  transition: width .25s ease;
}
.nav-link:hover { color: var(--gold-l); background: rgba(201,168,76,.08); }
.nav-link:hover::after { width: 16px; }
.nav-link.active { color: var(--gold); background: rgba(201,168,76,.13); }
.nav-link.active::after { width: 20px; }
/* Contact — always looks like a CTA pill */
.nav-links li:last-child .nav-link {
  border: 1px solid rgba(201,168,76,.45); color: var(--gold-l);
}
.nav-links li:last-child .nav-link:hover,
.nav-links li:last-child .nav-link.active {
  background: var(--gold); color: var(--maroon-d); border-color: var(--gold);
}
.nav-links li:last-child .nav-link::after { display: none; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 6000;
  -webkit-tap-highlight-color: transparent; outline: none;
}
.hamburger span {
  display: block; width: 25px; height: 2px;
  background: #fff; border-radius: 2px; transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile overlay (behind open menu) */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 8000;
}
.nav-overlay.active { display: block; }

/* ── MOBILE FULL-SCREEN MENU ──────────────────────────────
   Placed directly in <body> — outside <nav> — so the
   navbar's backdrop-filter cannot trap position:fixed.
   ──────────────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 9000;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0; padding: 24px 20px; overflow-x: hidden;
  background: linear-gradient(160deg, #1a0404 0%, #2C0808 45%, #3a0c0c 100%);
  /* subtle dot texture */
  background-image:
    radial-gradient(circle, rgba(201,168,76,.06) 1px, transparent 1px),
    linear-gradient(160deg, #1a0404 0%, #2C0808 45%, #3a0c0c 100%);
  background-size: 22px 22px, 100% 100%;
  /* clip-path slide from top */
  clip-path: inset(0 0 100% 0);
  transition: clip-path .42s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open {
  display: flex;
  clip-path: inset(0 0 0% 0);
}

/* Close × */
.mobile-menu-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  cursor: pointer; color: rgba(255,255,255,.8); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.mobile-menu-close:hover { background: var(--gold); color: var(--maroon-d); border-color: var(--gold); }

/* Logo */
.mm-logo { margin-bottom: 6px; }
.mm-logo img { height: 90px; width: auto; margin: -14px auto; }

/* Gold rule */
.mm-rule {
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 14px 0;
}

/* Nav links */
.mm-links {
  display: flex; flex-direction: column;
  align-items: stretch; width: 100%; max-width: 300px;
  gap: 2px;
}
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  color: rgba(255,255,255,.82);
  font-family: 'Lato', sans-serif;
  font-size: .95rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 20px; border-radius: 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--ease);
  -webkit-tap-highlight-color: transparent;
  outline: none; user-select: none;
  /* stagger animation */
  opacity: 0; transform: translateX(-20px);
}
.mobile-menu.open .mobile-nav-link { opacity: 1; transform: translateX(0); }
.mobile-menu.open .mobile-nav-link:nth-child(1) { transition-delay: .08s; }
.mobile-menu.open .mobile-nav-link:nth-child(2) { transition-delay: .14s; }
.mobile-menu.open .mobile-nav-link:nth-child(3) { transition-delay: .20s; }
.mobile-menu.open .mobile-nav-link:nth-child(4) { transition-delay: .26s; }
.mobile-menu.open .mobile-nav-link:nth-child(5) { transition-delay: .32s; }
.mobile-menu.open .mobile-nav-link:nth-child(6) { transition-delay: .38s; }

.mobile-nav-link i { font-size: .75rem; color: var(--gold); opacity: 0; transition: var(--ease); }
.mobile-nav-link:hover {
  color: var(--gold);
  background: rgba(201,168,76,.10);
  padding-left: 28px;
}
.mobile-nav-link:hover i { opacity: 1; }

/* WhatsApp CTA */
.mm-wa {
  margin-top: 4px; width: 100%; max-width: 300px;
  justify-content: center; font-size: .9rem;
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s ease .45s, transform .4s ease .45s, background .3s ease, box-shadow .3s ease;
}
.mobile-menu.open .mm-wa { opacity: 1; transform: translateY(0); }

/* Tagline */
.mm-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: .78rem;
  color: rgba(201,168,76,.55);
  letter-spacing: 1px; margin-top: 10px;
  opacity: 0; transition: opacity .4s ease .52s;
}
.mobile-menu.open .mm-tagline { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; width: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
/* Slideshow wrapper — moves as one unit for parallax */
.hero-slideshow {
  position: absolute;
  top: -10%; left: 0; right: 0;
  height: 120%;
  will-change: transform;
}

/* Individual slides */
.slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.slide.active { opacity: 1; }

/* Dot indicators */
.slide-dots {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.slide-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: 2px solid rgba(255,255,255,.7);
  cursor: pointer; padding: 0; transition: all .3s ease;
}
.slide-dot.active {
  background: var(--gold); border-color: var(--gold); transform: scale(1.25);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,4,4,.60) 0%, rgba(74,14,14,.42) 50%, rgba(28,4,4,.58) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; color: #fff;
  max-width: 780px; width: 100%; padding: 0 24px;
  animation: heroIn 1.1s ease forwards;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: .82rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-l); font-weight: 700; margin-bottom: 18px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  font-weight: 700; line-height: 1.12; margin-bottom: 22px;
  text-shadow: 2px 4px 18px rgba(0,0,0,.28);
}
.hero-title em { color: var(--gold-l); font-style: italic; }
.hero-sub {
  font-size: 1.08rem; color: rgba(255,255,255,.82);
  margin-bottom: 40px; line-height: 1.65; max-width: 100%;
}
@media (max-width: 600px) { .hero-br { display: none; } }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll-wrap { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-dot {
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.45); border-radius: 11px;
  position: relative;
}
.scroll-dot::after {
  content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--gold); border-radius: 2px;
  animation: scrollBob 2s infinite;
}
@keyframes scrollBob {
  0%, 100% { top: 5px; opacity: 1; }
  80%       { top: 20px; opacity: 0; }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════════ */
.about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1.25fr 1fr;
  gap: 64px; align-items: center;
}
.doctor-section-head { margin-bottom: 4px; }
.doctor-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; color: var(--maroon); line-height: 1.25;
}
.doctor-section-title span { color: var(--gold); }
.about-text p { color: var(--muted); margin-bottom: 16px; font-size: 1rem; line-height: 1.8; }
.about-lead   { font-size: 1.08rem !important; color: var(--text) !important; font-weight: 500; }

/* Highlight cards */
.highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.highlight-card {
  background: #fff; border-radius: var(--radius); padding: 22px 18px;
  text-align: center; box-shadow: var(--shadow-s);
  border-bottom: 3px solid var(--gold); transition: var(--ease);
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-bottom-color: var(--maroon); }
.highlight-card i { font-size: 1.8rem; color: var(--gold); margin-bottom: 10px; }
.highlight-card h4 { font-family: 'Lato',sans-serif; font-size: .88rem; font-weight: 700; color: var(--maroon); margin-bottom: 6px; }
.highlight-card p  { font-size: .8rem; color: var(--muted); line-height: 1.5; }

/* Doctor Card */
.doctor-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-m); border: 1px solid var(--beige-d);
  transition: var(--ease);
}
.doctor-card:hover { box-shadow: var(--shadow-l); transform: translateY(-5px); }
.doctor-img-wrap {
  background: linear-gradient(135deg, var(--maroon-d), var(--maroon-l));
  padding: 44px; display: flex; justify-content: center;
}
.doctor-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.2rem; color: var(--gold-l);
}
.doctor-body { padding: 28px 26px; }
.doctor-badge {
  display: inline-block; background: var(--beige); color: var(--maroon);
  font-size: .7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 12px;
}
.doctor-body h3 { font-size: 1.55rem; color: var(--maroon); margin-bottom: 4px; }
.doctor-qual    { color: var(--gold-d); font-size: .88rem; font-weight: 700; letter-spacing: .4px; }
.doctor-divider { border: none; border-top: 1px solid var(--beige-d); margin: 16px 0; }
.doctor-bio     { color: var(--muted); font-size: .9rem; line-height: 1.72; margin-bottom: 20px; }
.doctor-stats   { display: flex; flex-wrap: wrap; gap: 18px; padding-top: 16px; border-top: 1px solid var(--beige-d); }
.stat           { display: flex; flex-direction: column; align-items: center; flex: 1; }
.stat strong    { font-family: 'Playfair Display',serif; font-size: 1.45rem; color: var(--maroon); }
.stat span      { font-size: .72rem; color: var(--muted); text-align: center; line-height: 1.35; margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════════ */
.services { background: var(--beige); }

.service-category { margin-bottom: 60px; }
.service-category:last-child { margin-bottom: 0; }

.cat-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 26px; padding-bottom: 14px;
  border-bottom: 2px solid var(--beige-d);
}
.cat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--maroon); color: var(--gold-l);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.cat-header h3 { font-size: 1.35rem; color: var(--maroon); }

/* Service cards grid */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr)); gap: 18px; }
.svc-card {
  background: #fff; border-radius: var(--radius); padding: 26px 22px;
  box-shadow: var(--shadow-s); border-top: 3px solid var(--gold);
  display: flex; flex-direction: column; transition: var(--ease);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); border-top-color: var(--maroon); }
.svc-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--beige); color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 14px; transition: var(--ease);
}
.svc-card:hover .svc-icon { background: var(--maroon); color: var(--gold-l); }
.svc-card h3   { font-family:'Lato',sans-serif; font-size:.95rem; font-weight:700; color:var(--maroon); margin-bottom:8px; }
.svc-card p    { font-size:.84rem; color:var(--muted); line-height:1.65; flex:1; margin-bottom:16px; }
.svc-enquire {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .83rem; font-weight: 700; color: var(--maroon);
  border-top: 1px solid var(--beige-d); padding-top: 13px;
  margin-top: auto; transition: var(--ease);
}
.svc-enquire:hover { color: #1eb85c; gap: 10px; }
.svc-enquire i { font-size: 1rem; }

/* Conditions tags */
.conditions-grid { display: flex; flex-wrap: wrap; gap: 11px; }
.condition-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--text); padding: 9px 18px;
  border-radius: 50px; font-size: .88rem; font-weight: 600;
  box-shadow: var(--shadow-s); border: 1px solid var(--beige-d);
  transition: var(--ease); cursor: default;
  word-break: break-word; max-width: 100%;
}
.condition-tag:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); transform: translateY(-2px); }
.condition-tag i { color: var(--gold); font-size: .75rem; }
.condition-tag:hover i { color: var(--gold-l); }

/* ══════════════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════════════ */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer; aspect-ratio: 4/3;
  box-shadow: var(--shadow-s);
}
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .55s ease; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,4,4,.82) 0%, rgba(28,4,4,.2) 60%, transparent 100%);
  opacity: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  transition: opacity .35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay i    { font-size: 1.8rem; color: var(--gold-l); }
.gallery-overlay span { color: #fff; font-size: .88rem; font-weight: 700; letter-spacing: .4px; }

/* Mobile Gallery Slider (hidden on desktop) */
.gallery-mobile-slider { display: none; }
.gms-wrap {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow-m);
}
.gms-track {
  display: flex; height: 100%;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.gms-slide {
  position: relative; min-width: 100%; flex-shrink: 0; cursor: pointer;
}
.gms-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gms-caption { display: none; }
.gms-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-top: 14px;
}
.gms-arrow {
  background: var(--maroon); border: none; color: var(--gold);
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: .8rem; flex-shrink: 0;
  transition: background .2s ease;
}
.gms-arrow:hover { background: var(--maroon-l); }
.gms-dots { display: flex; gap: 7px; align-items: center; }
.gms-dot {
  width: 7px; height: 7px; border-radius: 50%; border: none; padding: 0;
  background: rgba(74,14,14,.22); cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.gms-dot.active { background: var(--gold); transform: scale(1.35); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(0,0,0,.96);
  display: none; align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lb-content { max-width: 90vw; max-height: 90vh; text-align: center; }
.lb-content img  { max-width:100%; max-height:80vh; border-radius:8px; object-fit:contain; }
#lbCaption { color:var(--gold-l); margin-top:12px; font-family:'Playfair Display',serif; font-size:1rem; }
.lb-btn {
  position: absolute; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18); color: #fff;
  border-radius: 50%; width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; transition: var(--ease);
}
.lb-btn:hover { background: var(--maroon); border-color: var(--maroon); }
.lb-close { top:18px; right:18px; }
.lb-prev  { left:18px; top:50%; transform:translateY(-50%); }
.lb-next  { right:18px; top:50%; transform:translateY(-50%); }

/* ══════════════════════════════════════════════════════════════
   OFFERS
   ══════════════════════════════════════════════════════════════ */
.offers {
  background: linear-gradient(135deg, var(--maroon-d) 0%, var(--maroon) 100%);
  position: relative; overflow-x: hidden;
}
.offers::before {
  content: ''; position: absolute; inset: 0; opacity: .06;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 28px 28px;
}
.offers .section-tag  { color: var(--gold-l); }
.offers .section-title{ color: #fff; }
.offers .section-title span { color: var(--gold-l); }
.offers .section-desc { color: rgba(255,255,255,.68); }
.offers .divider      { background: linear-gradient(90deg, var(--gold-l), #fff); }

.offers-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; max-width:880px; margin:0 auto; }

.offer-card {
  background: rgba(255,255,255,.06); backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,.3); border-radius: 20px;
  padding: 44px 30px 36px; text-align: center;
  position: relative; transition: var(--ease);
}
.offer-card:hover { transform: translateY(-6px); border-color: var(--gold); background: rgba(255,255,255,.09); }
.offer-featured { background: rgba(201,168,76,.1); border-color: var(--gold); }

.offer-ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--maroon-d);
  padding: 6px 22px; border-radius: 50px;
  font-size: .82rem; font-weight: 700; letter-spacing: 1px; white-space: nowrap;
  max-width: calc(100% - 20px);
}
.offer-ribbon-gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  font-size: .95rem; padding: 8px 26px;
}
.offer-icon  { font-size: 2.4rem; color: var(--gold-l); margin: 10px 0 18px; }
.offer-card h3 { font-size: 1.45rem; color: #fff; margin-bottom: 12px; }
.offer-card > p { color: rgba(255,255,255,.72); font-size: .9rem; line-height: 1.7; margin-bottom: 22px; }

.offer-perks { text-align: left; margin-bottom: 26px; }
.offer-perks li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.82); font-size: .86rem; margin-bottom: 9px;
}
.offer-perks i { color: var(--gold); font-size: .75rem; flex-shrink: 0; }

.offers-note { text-align:center; color:rgba(255,255,255,.42); font-size:.8rem; margin-top:34px; font-style:italic; }

/* ══════════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════════ */
.contact { background: var(--beige); }
.contact-grid { display:grid; grid-template-columns:1fr 1.25fr; gap:50px; align-items:start; }

/* Info cards */
.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; padding: 18px 20px; border-radius: var(--radius);
  box-shadow: var(--shadow-s); border-left: 4px solid var(--gold);
  margin-bottom: 16px;
}
.info-icon {
  font-size: 1.15rem; color: var(--maroon);
  min-width: 24px; margin-top: 2px;
}
.info-card h4 {
  font-family: 'Lato',sans-serif; font-size: .75rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-d); margin-bottom: 5px;
}
.info-card p, .info-card a { font-size: .9rem; color: var(--text); line-height: 1.65; }
.info-card a:hover { color: var(--maroon); }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-s); margin-top: 6px; width: 100%; }
.map-wrap iframe { display: block; max-width: 100%; width: 100%; }

/* Form */
.contact-form-wrap { background: #fff; border-radius: 20px; padding: 40px; box-shadow: var(--shadow-m); }
.contact-form-wrap h3 {
  font-size: 1.55rem; color: var(--maroon); margin-bottom: 26px;
  padding-bottom: 16px; border-bottom: 2px solid var(--beige);
}

.form-group  { margin-bottom: 18px; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.req         { color: var(--maroon); }

label {
  display: block; font-size: .78rem; font-weight: 700; color: var(--maroon);
  margin-bottom: 6px; letter-spacing: .5px; text-transform: uppercase;
}
input, select, textarea {
  width: 100%; max-width: 100%; padding: 11px 15px;
  border: 2px solid var(--beige-d); border-radius: 8px;
  font-family: 'Lato',sans-serif; font-size: .92rem; color: var(--text);
  background: var(--cream); outline: none; transition: var(--ease);
  -webkit-appearance: none; appearance: none; box-sizing: border-box;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--maroon); background: #fff;
  box-shadow: 0 0 0 3px rgba(74,14,14,.07);
}
textarea { resize: vertical; min-height: 96px; }

.form-feedback {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; border-radius: 8px;
  margin-top: 14px; font-size: .9rem; font-weight: 600;
}
.form-success { background: #d4edda; color: #155724; }
.form-error   { background: #f8d7da; color: #721c24; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  background:
    radial-gradient(ellipse at 10% 85%, rgba(201,168,76,.07) 0%, transparent 50%),
    radial-gradient(ellipse at 88% 15%, rgba(201,168,76,.05) 0%, transparent 45%),
    linear-gradient(170deg, #1c0505 0%, #2C0808 55%, #1a0404 100%);
  color: rgba(255,255,255,.78);
  padding: 72px 0 0;
  position: relative; overflow-x: hidden; width: 100%;
}
/* Gold shimmer accent line at very top of footer */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-d) 15%, var(--gold-l) 50%, var(--gold-d) 85%, transparent 100%);
}

.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
  gap: 40px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.footer-logo { height: 80px; margin-bottom: 12px; filter: brightness(1.15); }
.footer-brand p {
  font-size: .88rem; line-height: 1.78;
  color: rgba(255,255,255,.52); margin-bottom: 22px;
  font-style: italic;
}

.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.32);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--gold-l);
  background: rgba(201,168,76,.07);
  transition: var(--ease);
}
.social-links a:hover {
  background: var(--gold); border-color: var(--gold);
  color: var(--maroon-d); transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 18px rgba(201,168,76,.28);
}

.footer-col h4 {
  font-family: 'Lato',sans-serif; font-size: .68rem;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.footer-col h4::before {
  content: '';
  display: block; width: 20px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  border-radius: 2px; flex-shrink: 0;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a  { font-size: .86rem; color: rgba(255,255,255,.52); transition: var(--ease); }
.footer-col ul a:hover { color: var(--gold-l); padding-left: 6px; }

.footer-contact p {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .86rem; color: rgba(255,255,255,.54);
  margin-bottom: 13px; line-height: 1.65;
}
.footer-contact i   { color: var(--gold); margin-top: 3px; min-width: 14px; }
.footer-contact a:hover { color: var(--gold-l); }

.footer-bottom {
  padding: 16px 24px; display: flex; justify-content: center;
  align-items: center; flex-wrap: wrap; gap: 8px;
  background: rgba(0,0,0,.30);
  border-top: 1px solid rgba(201,168,76,.12);
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); letter-spacing: .4px; }
.footer-bottom i { color: var(--gold); font-size: .78rem; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 1200px  (small laptop / narrow desktop)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .nav-logo img  { height: 78px; margin: -10px 0; }
  .nav-links     { gap: 2px; }
  .nav-link      { padding: 7px 13px; font-size: .76rem; letter-spacing: .6px; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 1024px  (tablet / small laptop)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .about-grid   { gap: 40px; }
  .contact-grid { gap: 32px; }
  .offers-grid  { gap: 20px; }
  .section      { padding: 80px 0; }
  .nav-logo img  { height: 70px; margin: -8px 0; }
  .nav-links     { gap: 1px; }
  .nav-link      { padding: 7px 10px; font-size: .72rem; letter-spacing: .4px; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 900px  (large tablet)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid      { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid    { grid-template-columns: 1fr; gap: 28px; }
  .contact-form-wrap { padding: 32px 24px; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 960px  (hamburger trigger — tablets and below)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hamburger { display: flex; }
  .nav-links  { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Navbar ── */
  .navbar { padding: 4px 0; }
  .nav-logo img { height: 62px; margin: -8px 0; }
  .hamburger { display: flex; }
  .nav-links  { display: none; }

  /* ── Hero ── */
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-sub   { font-size: .93rem; }
  .hero-eyebrow { letter-spacing: 2.5px; font-size: .78rem; }
  .hero-cta   { flex-direction: column; align-items: center; gap: 12px; }
  .hero-cta .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* ── Sections ── */
  .section { padding: 60px 0; }

  /* ── About ── */
  .about-grid      { grid-template-columns: 1fr; gap: 32px; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .doctor-card     { max-width: 100%; }
  .doctor-body     { padding: 22px 18px; }

  /* ── Services ── */
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .conditions-grid { gap: 8px; }
  .condition-tag   { font-size: .82rem; padding: 8px 14px; }

  /* ── Gallery ── */
  .gallery-grid          { display: none; }
  .gallery-mobile-slider { display: block; }

  /* ── Offers ── */
  .offers-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .offer-card .btn { width: 100%; justify-content: center; }

  /* ── Contact ── */
  .contact-grid      { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .map-wrap iframe   { height: 200px; }

  /* ── Footer ── */
  .footer              { padding: 32px 0 0; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    padding-bottom: 20px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: flex; flex-direction: column; align-items: center; text-align: center;
  }
  .footer-logo      { height: 60px; margin-bottom: 8px; }
  .footer-brand p   { font-size: .8rem; margin-bottom: 12px; max-width: 260px; }
  .social-links     { justify-content: center; }
  /* Our Services column hidden — Quick Links covers navigation */
  .footer-services  { display: none; }
  /* Quick Links takes left col; Contact takes right col */
  .footer-col h4    { font-size: .65rem; margin-bottom: 10px; }
  .footer-col ul li { margin-bottom: 5px; }
  .footer-col ul a  { font-size: .78rem; }
  /* Contact column: right side, same row as Quick Links */
  .footer-contact {
    border-top: none;
    padding-top: 0;
  }
  .footer-contact h4  { font-size: .65rem; margin-bottom: 10px; }
  .footer-contact p   { font-size: .78rem; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
  .footer-contact i   { margin-top: 2px; flex-shrink: 0; font-size: .85rem; }
  .footer-bottom    { padding: 12px 16px; text-align: center; }
  .footer-bottom p  { font-size: .7rem; }

  /* ── Form ── */
  .form-row { grid-template-columns: 1fr; }

  /* ── Lightbox ── */
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 560px
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 560px) {
  /* Services: 1 column for narrow phones */
  .svc-grid { grid-template-columns: 1fr; }
  /* Offers: tighter card */
  .offer-card { padding: 40px 22px 30px; }
  /* Hero CTA buttons */
  .hero-cta .btn { max-width: 260px; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 480px
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container       { padding: 0 16px; }
  .nav-logo img    { height: 54px; margin: -6px 0; }
  .hero-title      { font-size: clamp(1.9rem, 10.5vw, 2.6rem); }
  .hero-sub        { font-size: .88rem; line-height: 1.6; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 20px 14px; }
  .doctor-stats    { gap: 10px; }
  .stat strong     { font-size: 1.2rem; }
  .offer-card      { padding: 36px 18px 26px; }
  .condition-tag   { font-size: .78rem; padding: 7px 12px; }
  .cat-header h3   { font-size: 1.15rem; }
  .section-title   { font-size: clamp(1.6rem, 7vw, 2rem); }
  .footer-grid     { gap: 20px 16px; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 390px  (small phones: iPhone SE, Galaxy A, etc.)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 390px) {
  .container       { padding: 0 14px; }
  .hero-title      { font-size: clamp(1.75rem, 10vw, 2.2rem); }
  .hero-eyebrow    { font-size: .72rem; letter-spacing: 2px; }
  .hero-sub        { font-size: .84rem; }
  .hero-cta .btn   { max-width: 240px; padding: 11px 20px; font-size: .86rem; }
  .highlights-grid { grid-template-columns: 1fr; }
  .doctor-body     { padding: 18px 14px; }
  .doctor-body h3  { font-size: 1.3rem; }
  .doctor-stats    { gap: 6px; }
  .stat strong     { font-size: 1.1rem; }
  .section         { padding: 48px 0; }
  .section-header  { margin-bottom: 40px; }
  .svc-card        { padding: 20px 16px; }
  .offer-card      { padding: 32px 14px 24px; }
  .offer-card h3   { font-size: 1.25rem; }
  .contact-form-wrap { padding: 18px 12px; }
  .info-card       { padding: 14px 16px; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 16px 12px; }
  .footer-brand    { text-align: center; grid-column: 1 / -1; }
  .footer-logo     { height: 56px; }
}
