/* ════════════════════════════════════════════════════════════
   KAPCHEROP HILL-FOREST MEDICAL CENTRE
   style.css · v3 — "Canopy Glass"
   A liquid-glassmorphism system built from the clinic's own
   identity: forest, gold, calm. Frosted panels float over a
   slow-drifting aurora of canopy light instead of a flat photo.
   ════════════════════════════════════════════════════════════ */

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  /* Aurora base — near-black forest floor, deepening toward night */
  --bg-0:  #060F0A;
  --bg-1:  #0B1F14;
  --bg-2:  #11301F;

  /* Living light — the canopy glow colours */
  --moss:    #2F6B45;
  --emerald: #3FAE6A;
  --emerald-glow: rgba(63, 174, 106, 0.55);
  --gold:    #E0B96B;
  --gold-soft: rgba(224, 185, 107, 0.4);
  --amber-glow: rgba(224, 185, 107, 0.28);

  /* Glass */
  --glass-fill:       rgba(255, 255, 255, 0.055);
  --glass-fill-hi:    rgba(255, 255, 255, 0.10);
  --glass-border:     rgba(255, 255, 255, 0.14);
  --glass-border-hi:  rgba(255, 255, 255, 0.28);
  --glass-shadow:     0 24px 70px rgba(0, 0, 0, 0.5), 0 2px 0 rgba(255,255,255,0.05) inset;

  /* Type ink on dark glass */
  --cream:  #F4F0E6;
  --muted:  rgba(244, 240, 230, 0.64);
  --faint:  rgba(244, 240, 230, 0.40);
  --ink-on-gold: #10240F;

  --ff-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --ff-body:    'Space Grotesk', 'Inter', system-ui, sans-serif;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 100px;

  --ease-liquid: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.4s;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

*               { cursor: auto; }
a, button, [role="button"] { cursor: pointer; }
input, textarea { cursor: text; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  color: var(--cream);
  background: var(--bg-0);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { font-family: inherit; background: none; border: none; }

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

::selection { background: var(--emerald-glow); color: var(--cream); }

/* ── Focus visibility (accessibility floor) ───────────────── */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ════════════════════════════════════════════════════════════
   AMBIENT CANOPY — fixed aurora blobs behind every panel
   ════════════════════════════════════════════════════════════ */
.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%,  var(--bg-2) 0%, transparent 55%),
    radial-gradient(circle at 82% 92%, var(--bg-2) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 45%, var(--bg-0) 100%);
}
.aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  mix-blend-mode: screen;
  opacity: 0.55;
  will-change: transform;
}
.aurora .a1 {
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, var(--emerald) 0%, transparent 70%);
  top: -10%; left: -8%;
  animation: drift1 26s var(--ease-soft) infinite alternate;
}
.aurora .a2 {
  width: 38vw; height: 38vw; max-width: 520px; max-height: 520px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 72%);
  top: 30%; right: -10%;
  opacity: 0.35;
  animation: drift2 32s var(--ease-soft) infinite alternate;
}
.aurora .a3 {
  width: 40vw; height: 40vw; max-width: 560px; max-height: 560px;
  background: radial-gradient(circle, var(--moss) 0%, transparent 70%);
  bottom: -14%; left: 20%;
  animation: drift3 30s var(--ease-soft) infinite alternate;
}
@keyframes drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(6vw, 8vh) scale(1.15); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-5vw, 6vh) scale(0.9); } }
@keyframes drift3 { from { transform: translate(0,0) scale(1); } to { transform: translate(4vw, -6vh) scale(1.1); } }

/* Faint canopy grain so glass has something to refract */
.aurora::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.4;
}

@media (prefers-reduced-motion: reduce) {
  .aurora .a1, .aurora .a2, .aurora .a3 { animation: none; }
}

/* ════════════════════════════════════════════════════════════
   GLASS PRIMITIVE
   ════════════════════════════════════════════════════════════ */
.glass {
  background: var(--glass-fill);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--gold) 0%, #C99A4B 100%);
  color: var(--ink-on-gold);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  box-shadow: 0 10px 30px var(--amber-glow), 0 1px 0 rgba(255,255,255,0.4) inset;
  transition: transform var(--t) var(--ease-liquid),
              box-shadow var(--t) var(--ease-liquid);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px var(--amber-glow), 0 1px 0 rgba(255,255,255,0.5) inset;
}
.btn-primary:active { transform: translateY(-1px) scale(0.98); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 27px;
  border-radius: var(--r-pill);
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  transition: background var(--t) var(--ease-liquid),
              border-color var(--t) var(--ease-liquid),
              transform var(--t) var(--ease-liquid);
}
.btn-ghost:hover {
  background: var(--glass-fill-hi);
  border-color: var(--glass-border-hi);
  transform: translateY(-3px);
}

/* ── Shared section labels ────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.sec-head { text-align: center; margin-bottom: 64px; }
.sec-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.18;
}
.sec-head p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 480px;
  margin: 0 auto;
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-liquid), transform 0.8s var(--ease-liquid);
}
.fade-up.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════════════
   HEADER — floating glass pill
   ════════════════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 18px;
  z-index: 800;
  padding: 0 20px;
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 68px;
  padding: 0 10px 0 16px;
  border-radius: var(--r-pill);
  max-width: 1220px;
  margin: 0 auto;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.header.scrolled .nav-wrap {
  background: rgba(11, 31, 20, 0.72);
  box-shadow: 0 16px 44px rgba(0,0,0,0.45);
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img {
  height: 38px; width: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--glass-border-hi);
  background: var(--bg-2);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.logo-text span { font-size: 0.72rem; color: var(--faint); }
.logo-text strong {
  font-family: var(--ff-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--cream);
}

#site-nav { flex: 1; display: flex; justify-content: center; }
#site-nav ul { display: flex; gap: 4px; }
#site-nav a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
  padding: 9px 16px;
  border-radius: var(--r-pill);
  transition: background var(--t), color var(--t);
}
#site-nav a:hover, #site-nav a.active {
  background: var(--glass-fill-hi);
  color: var(--cream);
}

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-wa {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.83rem; font-weight: 600;
  color: var(--emerald);
  padding: 9px 15px;
  border-radius: var(--r-pill);
  background: rgba(63,174,106,0.12);
  border: 1px solid rgba(63,174,106,0.25);
  transition: background var(--t);
}
.nav-wa:hover { background: rgba(63,174,106,0.22); }
.nav-call {
  font-size: 0.83rem; font-weight: 600;
  background: linear-gradient(135deg, var(--gold), #C99A4B);
  color: var(--ink-on-gold);
  padding: 10px 20px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: transform var(--t), box-shadow var(--t);
}
.nav-call:hover { transform: translateY(-2px); box-shadow: 0 8px 22px var(--amber-glow); }

.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  padding: 10px; margin-left: auto;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero { padding: 96px 0 84px; position: relative; }

.hero-grid {
  display: grid;
  grid-template-columns: 54% 46%;
  align-items: center;
  min-height: 540px;
}

.hero-content { padding-right: 48px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px 8px 12px;
  border-radius: var(--r-pill);
  font-size: 0.78rem; font-weight: 600;
  color: var(--cream);
  margin-bottom: 30px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(63,174,106,0.6);
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(63,174,106,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(63,174,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(63,174,106,0); }
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--gold) 0%, #F3D89A 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title span {
  font-size: 0.66em; font-style: normal; font-weight: 400;
  color: var(--muted); display: block; margin-top: 6px;
}

.hero-sub {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 38px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 54px; }

.hero-stats { display: flex; align-items: center; gap: 0; }
.hs { display: flex; flex-direction: column; padding-right: 30px; }
.hs strong {
  font-family: var(--ff-display);
  font-size: 1.9rem; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.hs span { font-size: 0.75rem; color: var(--faint); margin-top: 5px; }
.hs-sep { width: 1px; height: 42px; background: var(--glass-border); margin-right: 30px; flex-shrink: 0; }

/* Hero visual — floating glass portrait card */
.hero-visual { position: relative; display: flex; justify-content: center; }

.hero-photo-panel {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 14px;
  border-radius: var(--r-xl);
  animation: float-panel 7s ease-in-out infinite;
}
@keyframes float-panel {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) { .hero-photo-panel { animation: none; } }

.hero-doctor {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  border-radius: calc(var(--r-xl) - 14px);
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
}

.hero-logo-card {
  position: absolute;
  bottom: 24px; left: 20px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  display: flex; align-items: center; gap: 12px;
  min-width: 220px;
  background: rgba(8, 18, 16, 0.74);
  border-color: rgba(255,255,255,0.18);
}
.hero-logo-card img {
  height: 40px; width: 40px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--glass-border-hi);
}
.hero-logo-card div { display: flex; flex-direction: column; }
.hero-logo-card strong { font-size: 0.95rem; font-weight: 700; color: var(--cream); line-height: 1.2; }
.hero-logo-card span { font-size: 0.78rem; color: var(--cream); opacity: 0.84; margin-top: 3px; }

.hero-ring {
  position: absolute;
  top: -22px; right: -22px;
  width: 76px; height: 76px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero-ring strong { display: block; font-family: var(--ff-display); font-size: 1.05rem; color: var(--gold); line-height: 1; }
.hero-ring span { display: block; font-size: 0.55rem; color: var(--faint); margin-top: 2px; letter-spacing: 0.04em; }

/* ════════════════════════════════════════════════════════════
   HERO SCROLL CUE
   ════════════════════════════════════════════════════════════ */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.scroll-cue span:first-child {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.scroll-cue-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: '';
  position: absolute;
  left: 0; top: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scroll-drip 1.8s ease-in-out infinite;
}
@keyframes scroll-drip {
  0%   { top: -100%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}
@media (max-width: 768px) { .scroll-cue { display: none; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue-line::after { animation: none; top: 40%; } }

/* ════════════════════════════════════════════════════════════
   TICKER — scrolling service strip
   ════════════════════════════════════════════════════════════ */
.ticker-band {
  margin: 0 20px 90px;
  border-radius: var(--r-pill);
  overflow: hidden;
  padding: 18px 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}
.ticker-track span {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  color: var(--muted);
  flex-shrink: 0;
}
.ticker-track .tdot {
  font-family: var(--ff-body);
  font-style: normal;
  font-size: 0.7rem;
  color: var(--gold);
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ════════════════════════════════════════════════════════════
   SERVICES — magnetic glass cards
   ════════════════════════════════════════════════════════════ */
.services { padding: 110px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.scard {
  position: relative;
  border-radius: var(--r-lg);
  padding: 34px 28px 30px;
  text-align: left;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.12s linear,
              box-shadow 0.5s var(--ease-liquid),
              border-color 0.5s var(--ease-liquid);
}
.scard.is-resetting { transition: transform 0.5s var(--ease-liquid), box-shadow 0.5s var(--ease-liquid), border-color 0.5s var(--ease-liquid); }
/* cursor-follow spotlight */
.scard::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-soft);
  pointer-events: none;
}
.scard:hover::before { opacity: 1; }
.scard:hover {
  border-color: var(--glass-border-hi);
  box-shadow: 0 30px 70px rgba(0,0,0,0.55), 0 0 0 1px var(--gold-soft) inset;
}
.scard:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.scard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.scard-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(63,174,106,0.28), rgba(224,185,107,0.16));
  border: 1px solid var(--glass-border);
}
.scard-arrow {
  font-size: 1.1rem; color: var(--faint);
  transition: opacity var(--t), transform var(--t), color var(--t);
}
.scard:hover .scard-arrow { opacity: 1; transform: translateX(4px); color: var(--gold); }

.scard h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem; font-weight: 600;
  margin-bottom: 10px; color: var(--cream);
}
.scard p { font-size: 0.9rem; line-height: 1.65; color: var(--muted); margin-bottom: 22px; }
.scard-cta {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 2px;
}

/* ════════════════════════════════════════════════════════════
   STATS BAND — floating glass strip
   ════════════════════════════════════════════════════════════ */
.stats-band { padding: 0 0 110px; }
.stats-strip {
  border-radius: var(--r-xl);
  padding: 46px 40px;
}
.stats-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 7px; flex: 1; min-width: 130px; }
.stat-n {
  font-family: var(--ff-display); font-size: 2.6rem; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.stat-l { font-size: 0.85rem; font-weight: 500; color: var(--muted); text-align: center; }
.stat-div { width: 1px; height: 52px; background: var(--glass-border); flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════ */
.about { padding: 100px 0 110px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 84px; align-items: center; }

.about-photo { position: relative; padding: 12px; border-radius: var(--r-xl); }
.about-photo img {
  width: 100%; height: 500px; object-fit: cover; object-position: top;
  border-radius: calc(var(--r-xl) - 12px);
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
}
.about-exp-badge {
  position: absolute; bottom: -18px; right: 14px; z-index: 2;
  padding: 20px 24px; border-radius: var(--r-md); text-align: center;
  background: linear-gradient(135deg, var(--gold), #C99A4B);
  box-shadow: 0 18px 44px var(--amber-glow);
}
.about-exp-badge strong { display: block; font-family: var(--ff-display); font-size: 1.9rem; font-weight: 600; color: var(--ink-on-gold); line-height: 1; }
.about-exp-badge span { display: block; font-size: 0.7rem; font-weight: 600; color: var(--ink-on-gold); opacity: 0.75; margin-top: 4px; }

.about-text h2 {
  font-family: var(--ff-display); font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600; color: var(--cream); margin-bottom: 20px; line-height: 1.2;
}
.about-text p { color: var(--muted); font-size: 0.98rem; margin-bottom: 15px; }

.about-list { display: flex; flex-direction: column; gap: 12px; margin: 30px 0 38px; }
.about-list li { display: flex; align-items: center; gap: 13px; font-size: 0.95rem; font-weight: 500; color: var(--cream); }
.al-icon {
  width: 25px; height: 25px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; color: var(--ink-on-gold);
  background: linear-gradient(135deg, var(--gold), #C99A4B);
}

/* ════════════════════════════════════════════════════════════
   WHY CHOOSE US — numbered trust grid
   ════════════════════════════════════════════════════════════ */
.trust { padding: 100px 0 110px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trust-item {
  position: relative;
  border-radius: var(--r-lg);
  padding: 36px 32px 30px;
  overflow: hidden;
}
.trust-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  background: linear-gradient(120deg, var(--gold) 0%, rgba(224,185,107,0.25) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.trust-item h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}
.trust-item p { font-size: 0.93rem; color: var(--muted); }

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   FIND US — MAP
   ════════════════════════════════════════════════════════════ */
.location { padding: 0 0 110px; }

.location-panel {
  border-radius: var(--r-xl);
  padding: 14px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.location-map {
  border-radius: calc(var(--r-xl) - 14px);
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--glass-border);
  filter: saturate(0.85) contrast(1.05);
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.location-info {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.loc-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 14px;
}
.location-info h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem; font-weight: 600; color: var(--cream);
  line-height: 1.3;
}
.location-info p { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }
.location-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════ */
.contact { padding: 100px 0 120px; }
.contact-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 60px; align-items: start; }

.contact-left h2 { font-family: var(--ff-display); font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 600; color: var(--cream); margin-bottom: 14px; }
.contact-left > p { color: var(--muted); margin-bottom: 38px; }

.contact-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 38px; }
.ci { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
}
.ci-text { display: flex; flex-direction: column; gap: 3px; }
.ci-text strong { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--gold); }
.ci-text a, .ci-text span { font-size: 0.97rem; color: var(--cream); }
.ci-text a:hover { color: var(--gold); }

.contact-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.contact-card { border-radius: var(--r-lg); padding: 34px 30px; display: flex; flex-direction: column; gap: 11px; }
.contact-card img { height: 46px; width: 46px; border-radius: 50%; object-fit: cover; margin-bottom: 8px; border: 1px solid var(--glass-border-hi); }
.contact-card h3 { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600; color: var(--cream); }
.cc-addr { color: var(--muted); font-size: 0.92rem; }
.contact-card hr { border: none; border-top: 1px solid var(--glass-border); margin: 6px 0; }
.cc-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--faint); }
.contact-card p { font-size: 0.93rem; color: var(--muted); }
.contact-card a { color: var(--gold); font-weight: 500; }
.contact-card a:hover { text-decoration: underline; }

.hours-table { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.hr {
  display: flex; justify-content: space-between; font-size: 0.87rem; color: var(--muted);
  background: rgba(255,255,255,0.04); padding: 10px 14px; border-radius: 10px;
  border: 1px solid var(--glass-border);
}
.hr-emg { background: rgba(224,185,107,0.14); border-color: var(--gold-soft); font-weight: 700; color: var(--gold); }

/* ── Booking form (inside contact-card) ──────────────────── */
.contact-card .cc-label { display: block; margin-bottom: 8px; }
.contact-card h3 { margin-bottom: 8px; }
.cc-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }

#booking-form-el { display: flex; flex-direction: column; gap: 16px; }

.field { display: flex; flex-direction: column; gap: 7px; flex: 1; min-width: 0; }
.field-row { display: flex; gap: 14px; }

.field label {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--faint);
}

.field input,
.field select {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--cream);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  transition: border-color var(--t) var(--ease-soft), background var(--t) var(--ease-soft);
  width: 100%;
}
.field input::placeholder { color: var(--faint); }
.field input:hover, .field select:hover { border-color: var(--glass-border-hi); }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--gold-soft);
  background: rgba(255,255,255,0.08);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E0B96B' stroke-width='1.6' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
}
.field select option { background: var(--bg-1); color: var(--cream); }

.field-error {
  font-size: 0.85rem;
  color: #F0A8A8;
  background: rgba(224, 108, 108, 0.12);
  border: 1px solid rgba(224, 108, 108, 0.3);
  border-radius: var(--r-sm);
  padding: 10px 14px;
}

.bk-submit { justify-content: center; width: 100%; margin-top: 4px; }

@media (max-width: 480px) {
  .field-row { flex-direction: column; gap: 16px; }
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer { padding: 0 20px 20px; }
.footer-inner { border-radius: var(--r-xl); overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding: 60px 44px 44px; }

.footer-brand img { height: 42px; width: 42px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; border: 1px solid var(--glass-border-hi); }
.footer-brand p { font-family: var(--ff-display); font-size: 1.08rem; font-weight: 600; color: var(--cream); line-height: 1.4; }
.footer-tagline { font-family: var(--ff-body) !important; font-size: 0.82rem !important; font-weight: 400 !important; font-style: italic; color: var(--faint) !important; margin-top: 8px; }

.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.92rem; color: var(--muted); transition: color var(--t); }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.92rem; color: var(--muted); margin-bottom: 9px; }

.footer-bar { border-top: 1px solid var(--glass-border); padding: 20px 44px; text-align: center; }
.footer-bar p { font-size: 0.8rem; color: var(--faint); }
.footer-credit { margin-top: 8px; }
.footer-builder {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}
.footer-builder:hover { color: var(--cream); }
.wavx-x {
  color: #ff6600;
  font-weight: 700;
}

/* ════════════════════════════════════════════════════════════
   MODAL
   ════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(4, 10, 7, 0.72);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease-liquid), visibility 0.4s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-box {
  border-radius: var(--r-xl);
  max-width: 560px; width: 100%;
  padding: 50px 46px;
  position: relative;
  transform: translateY(28px) scale(0.95);
  transition: transform 0.5s var(--ease-liquid);
}
.modal-overlay.open .modal-box { transform: none; }

.modal-close {
  position: absolute; top: 20px; right: 22px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--glass-fill); border: 1px solid var(--glass-border);
  font-size: 1.05rem; color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), transform var(--t);
}
.modal-close:hover { background: var(--glass-fill-hi); transform: rotate(90deg); }

.modal-head { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.modal-icon {
  width: 62px; height: 62px; flex-shrink: 0; font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(63,174,106,0.28), rgba(224,185,107,0.18));
  border: 1px solid var(--glass-border);
}
#modal-title { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 600; color: var(--cream); line-height: 1.25; }
#modal-desc { font-size: 0.97rem; color: var(--muted); line-height: 1.8; margin-bottom: 34px; }
.modal-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════
   FLOATING WHATSAPP — glass orb
   ════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 1000;
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(150deg, #2FBE73, #1F9C5C);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 34px rgba(37,211,102,0.45), 0 1px 0 rgba(255,255,255,0.35) inset;
  transition: transform var(--t) var(--ease-liquid), box-shadow var(--t);
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 18px 44px rgba(37,211,102,0.55); }
.wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(63,211,127,0.55);
  animation: wa-ring 2.6s ease-out infinite;
}
@keyframes wa-ring {
  0%   { transform: scale(1); opacity: 0.75; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .wa-pulse { animation: none; } }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { flex: 1 0 40%; }
  .stat-div { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .header { top: 10px; }
  #site-nav {
    display: none;
    position: fixed; top: 78px; left: 20px; right: 20px;
    border-radius: var(--r-md);
    padding: 14px; z-index: 700;
    background: rgba(11,31,20,0.92);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
  }
  #site-nav.open { display: flex; flex-direction: column; }
  #site-nav ul { flex-direction: column; gap: 4px; }
  #site-nav a { font-size: 1rem; padding: 12px 14px; }
  .nav-actions { display: none; }
  .burger { display: flex; }

  .hero { padding: 64px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 52px; }
  .hero-content { padding-right: 0; }
  .hero-sub { margin: 0 auto 38px; }
  .hero-ctas, .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-photo-panel { max-width: 300px; }
  .hero-doctor { height: 360px; }
  .hero-ring { top: -16px; right: -6px; width: 64px; height: 64px; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-strip { padding: 36px 22px; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-photo img { height: 360px; }
  .about-exp-badge { right: 0; bottom: -14px; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .location-panel { grid-template-columns: 1fr; }
  .location-map { min-height: 260px; }
  .location-map iframe { min-height: 260px; }
  .location-info { padding: 30px 26px; }

  .footer-grid { grid-template-columns: 1fr; padding: 44px 28px 32px; gap: 30px; }
  .footer-bar { padding: 18px 28px; }

  .modal-box { padding: 40px 26px; }
}

@media (max-width: 480px) {
  .hs-sep { display: none; }
  .hero-stats { gap: 22px; flex-wrap: wrap; justify-content: center; }
  .hs { padding: 0; align-items: center; }
  .stat-item { flex: 1 0 45%; }
  .services, .about, .contact { padding: 76px 0; }
}
