/* ==========================================================
   Balaji's Best Dental — v2: Modern healthcare, premium polish
   Palette: ivory white, deep teal-navy, fresh aqua, warm gold
   ========================================================== */

:root {
  --bg:        #F7F9F8;
  --bg-2:      #EFF4F2;
  --bg-mint:   #E8F2EE;
  --white:     #FFFFFF;
  --paper:     #FBFCFB;
  --ink:       #0B1F26;
  --ink-2:     #1F3640;
  --ink-3:     #4A6066;
  --rule:      rgba(11, 31, 38, 0.10);
  --rule-soft: rgba(11, 31, 38, 0.05);
  --teal:      #0F4C5C;
  --teal-2:    #19657A;
  --teal-deep: #07313D;
  --aqua:      #2BB5A0;
  --aqua-2:    #5DCDBC;
  --mint-soft: #D8EFE8;
  --gold:      #C8A05A;
  --gold-soft: #F1E2C2;
  --coral:     #E78863;

  --display:   "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --sans:      "Manrope", system-ui, sans-serif;
  --mono:      "JetBrains Mono", ui-monospace, monospace;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-sm: 0 2px 8px -2px rgba(11,31,38,0.08);
  --shadow:    0 24px 48px -28px rgba(11,31,38,0.18), 0 4px 12px -6px rgba(11,31,38,0.08);
  --shadow-lg: 0 50px 80px -40px rgba(11,31,38,0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
html, body { background: var(--bg); color: var(--ink); }
body { overflow-x: hidden; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--teal); color: var(--white); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(80px, 11vw, 140px) 0; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal);
  background: var(--mint-soft);
  padding: 7px 14px;
  border-radius: 999px;
}
.eyebrow .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--aqua); position: relative;
}
.eyebrow .pulse::after {
  content: ""; position: absolute; inset: -3px;
  border-radius: 50%; background: var(--aqua);
  opacity: 0.4;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(2.2); opacity: 0; }
}

.serif-it { font-family: var(--display); font-style: italic; font-weight: 400; }
.h1, .h2, .h3 { letter-spacing: -0.025em; line-height: 1.04; font-weight: 600; color: var(--ink); }
.h1 { font-size: clamp(48px, 6.6vw, 92px); }
.h2 { font-size: clamp(38px, 4.8vw, 68px); }
.h3 { font-size: clamp(26px, 2.8vw, 38px); letter-spacing: -0.02em; line-height: 1.1; font-weight: 600; }
.h1 em, .h2 em, .h3 em { color: var(--teal); }
.lede { font-size: clamp(16px, 1.2vw, 19px); line-height: 1.6; color: var(--ink-3); }

/* ---------- Top contact bar ---------- */
.topbar {
  background: var(--teal-deep);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  padding: 9px 0;
  letter-spacing: 0.02em;
}
.topbar .row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.topbar a { display: inline-flex; align-items: center; gap: 6px; transition: color 240ms; }
.topbar a:hover { color: var(--gold-soft); }
.topbar .left { display: flex; gap: 24px; }
.topbar .right { display: flex; gap: 18px; }
.topbar .badge {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold-soft);
}
.topbar .star { color: var(--gold); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--rule-soft);
  transition: padding 360ms var(--ease), box-shadow 360ms;
}
.nav.scrolled { box-shadow: 0 8px 24px -16px rgba(11,31,38,0.14); }
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 16px var(--gutter);
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 17px; line-height: 1.1;
  letter-spacing: -0.015em;
}
.brand .mark {
  width: 42px; height: 42px;
  border-radius: 10px;
  overflow: hidden;
  background: url('assets/logo.png') center/cover no-repeat;
  flex-shrink: 0;
  position: relative;
}
.brand .mark svg { display: none; }
.brand .mark::after { display: none; }
.brand small { display: block; font-size: 10.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-top: 2px; }
.nav__links {
  display: flex; gap: 30px; justify-content: center;
  font-size: 14px; font-weight: 500;
}
.nav__link {
  position: relative; padding: 6px 2px;
  color: var(--ink-2); transition: color 240ms;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--aqua);
  transform: scaleX(0); transform-origin: left;
  transition: transform 360ms var(--ease);
  border-radius: 1px;
}
.nav__link:hover { color: var(--teal); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta {
  display: flex; gap: 10px; align-items: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  letter-spacing: -0.005em;
  border: 1.5px solid transparent;
  transition: all 320ms var(--ease);
  white-space: nowrap;
}
.btn .arr { transition: transform 320ms var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn--primary {
  background: var(--teal);
  color: var(--white);
}
.btn--primary:hover { background: var(--teal-deep); transform: translateY(-1px); box-shadow: 0 12px 24px -12px rgba(15,76,92,0.5); }
.btn--ghost { border-color: var(--rule); color: var(--ink); background: var(--white); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn--gold { background: var(--gold); color: var(--teal-deep); }
.btn--gold:hover { background: #b58c43; }
.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--icon-only { padding: 13px; }

/* ---------- Reveal ---------- */
.r { opacity: 0; transform: translateY(28px); transition: opacity 1100ms var(--ease), transform 1100ms var(--ease); }
.r.in { opacity: 1; transform: none; }
.r.right { transform: translateX(40px); }
.r.right.in { transform: none; }
.r.scale { transform: scale(0.96); }
.r.scale.in { transform: none; }

/* ====== HERO ====== */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(43,181,160,0.12), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(200,160,90,0.08), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero__title {
  font-family: var(--sans);
  font-size: clamp(48px, 6.4vw, 92px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.hero__title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
}
.hero__title .underline {
  position: relative; display: inline-block;
}
.hero__title .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 14px;
  background: var(--gold-soft);
  z-index: -1;
  border-radius: 2px;
}
.hero__lede {
  font-size: clamp(16px, 1.25vw, 18.5px);
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 520px;
  margin-top: 28px;
}
.hero__cta {
  margin-top: 36px;
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}
.hero__bullets {
  margin-top: 36px;
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--ink-3);
}
.hero__bullets span {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__bullets svg { color: var(--aqua); flex-shrink: 0; }

.hero__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-mint);
  box-shadow: var(--shadow-lg);
}
.hero__media img, .hero__media .img-fill {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7,49,61,0.3));
  pointer-events: none;
}

/* Floating booking card */
.book-card {
  position: absolute;
  bottom: -30px; left: -30px;
  background: var(--white);
  padding: 22px 24px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 16px;
  z-index: 3;
  max-width: 320px;
}
.book-card .avatars { display: flex; }
.book-card .avatars div {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--white);
  background: linear-gradient(135deg, var(--teal), var(--aqua));
  margin-left: -10px;
  display: grid; place-items: center;
  color: var(--white); font-size: 13px; font-weight: 600;
}
.book-card .avatars div:first-child { margin-left: 0; }
.book-card h5 { font-size: 14px; font-weight: 600; line-height: 1.2; }
.book-card p { font-size: 12px; color: var(--ink-3); margin-top: 3px; }

.live-card {
  position: absolute;
  top: 24px; right: -20px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
  z-index: 3;
  font-size: 13px; font-weight: 500;
}
.live-card .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--aqua);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.rating-card {
  position: absolute;
  top: 50%; right: -36px;
  background: var(--white);
  padding: 18px 20px;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  z-index: 3;
  text-align: center;
}
.rating-card .num { font-size: 26px; font-weight: 700; color: var(--teal); line-height: 1; }
.rating-card .stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; margin: 4px 0; }
.rating-card .meta { font-size: 11px; color: var(--ink-3); }

/* ====== TRUST STRIP / Stats ====== */
.trust {
  background: var(--teal-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 100% 50%, rgba(43,181,160,0.18), transparent 50%),
    radial-gradient(ellipse at 0% 50%, rgba(200,160,90,0.1), transparent 50%);
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 2;
}
.stat {
  padding: 56px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}
.stat:last-child { border-right: 0; }
.stat .num {
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
  display: flex; align-items: baseline; gap: 4px;
}
.stat .num em { font-family: var(--display); font-style: italic; color: var(--gold); font-size: 0.7em; }
.stat .lbl {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.stat .desc {
  margin-top: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  max-width: 200px;
  line-height: 1.5;
}

/* ====== Section header ====== */
.sec-h {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.sec-h__title { font-size: clamp(36px, 4.8vw, 64px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.05; }
.sec-h__title em { font-family: var(--display); font-style: italic; font-weight: 400; color: var(--teal); }
.sec-h__sub {
  font-size: 15.5px; line-height: 1.65;
  color: var(--ink-3);
  max-width: 460px;
}
.sec-h--center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; grid-template-columns: 1fr; gap: 24px; }
.sec-h--center .sec-h__sub { max-width: 600px; margin: 0 auto; }

/* ====== Services ====== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.svc {
  background: var(--white);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r-lg);
  padding: 28px 24px 26px;
  transition: all 380ms var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aqua), var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform 480ms var(--ease);
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.svc:hover::before { transform: scaleX(1); }
.svc__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bg-mint);
  display: grid; place-items: center;
  color: var(--teal);
  margin-bottom: 20px;
  transition: all 360ms var(--ease);
}
.svc:hover .svc__icon { background: var(--teal); color: var(--aqua-2); }
.svc__num {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--display); font-style: italic;
  color: var(--gold);
  font-size: 18px;
}
.svc h4 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.svc p { font-size: 14px; color: var(--ink-3); line-height: 1.55; }
.svc .more {
  margin-top: 18px;
  font-size: 13px; color: var(--teal);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 360ms var(--ease);
  text-decoration: none;
}
.svc:hover .more { opacity: 1; transform: none; }

/* ====== Why us ====== */
.why {
  background: var(--bg-2);
  position: relative;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.why__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.why__media .badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-sm);
  font-size: 13px; font-weight: 600;
  z-index: 2;
}
.why__media .badge .ico {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--mint-soft);
  display: grid; place-items: center;
  color: var(--teal);
}
.why__media .stat-pill {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--teal-deep);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--r);
  z-index: 2;
}
.why__media .stat-pill .num { font-size: 32px; font-weight: 700; line-height: 1; color: var(--gold); }
.why__media .stat-pill .lbl { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; opacity: 0.8; }

.reasons { display: flex; flex-direction: column; gap: 8px; }
.reason {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 20px;
  padding: 22px 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  align-items: center;
  border: 1px solid var(--rule-soft);
  cursor: pointer;
  transition: all 380ms var(--ease);
}
.reason:hover { box-shadow: var(--shadow-sm); transform: translateX(6px); border-color: var(--mint-soft); }
.reason__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mint-soft), var(--bg-mint));
  display: grid; place-items: center;
  color: var(--teal);
  flex-shrink: 0;
}
.reason h4 { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.reason p { font-size: 13.5px; color: var(--ink-3); line-height: 1.5; }
.reason .arr {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--teal);
  display: grid; place-items: center;
  transition: all 360ms var(--ease);
}
.reason:hover .arr { background: var(--teal); color: var(--white); transform: rotate(-45deg); }

/* ====== Doctors ====== */
.docs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.doc {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--rule-soft);
  display: grid;
  grid-template-columns: 240px 1fr;
  transition: all 380ms var(--ease);
}
.doc:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.doc__photo {
  background: linear-gradient(180deg, var(--bg-mint), var(--mint-soft));
  position: relative;
  overflow: hidden;
}
.doc__photo .img-fill { width: 100%; height: 100%; }
.doc__photo .yrs {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11.5px; font-weight: 600;
  color: var(--teal);
  display: flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-sm);
}
.doc__photo .yrs strong { font-family: var(--display); font-style: italic; font-size: 16px; }
.doc__body { padding: 28px 28px 28px 32px; display: flex; flex-direction: column; }
.doc__body .role {
  font-size: 11.5px; font-weight: 600; color: var(--teal);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 10px;
}
.doc__body h3 {
  font-size: 24px; font-weight: 600; letter-spacing: -0.01em;
  line-height: 1.15;
}
.doc__body .creds {
  font-size: 13px; color: var(--ink-3); margin-top: 6px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.doc__body .creds span {
  padding: 4px 10px;
  background: var(--bg-2);
  border-radius: 999px;
  font-size: 12px;
}
.doc__body .bio { font-size: 14px; color: var(--ink-3); margin-top: 14px; line-height: 1.6; flex: 1; }
.doc__body .specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.doc__body .specs span {
  font-size: 11.5px; font-weight: 600;
  padding: 5px 11px;
  background: var(--mint-soft);
  color: var(--teal);
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.doc__body .actions { display: flex; gap: 8px; margin-top: 20px; }

.doc-strip {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.doc-mini {
  background: var(--white);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r);
  padding: 16px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  transition: all 320ms var(--ease);
}
.doc-mini:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.doc-mini__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-mint), var(--mint-soft));
  display: grid; place-items: center;
  color: var(--teal); font-weight: 700; font-size: 18px;
  font-family: var(--display); font-style: italic;
}
.doc-mini h5 { font-size: 14px; font-weight: 600; line-height: 1.15; letter-spacing: -0.005em; }
.doc-mini .role { font-size: 11.5px; color: var(--ink-3); margin-top: 3px; }

/* ====== Smile gallery (before/after) ====== */
.smile {
  background: linear-gradient(180deg, var(--white), var(--bg));
}
.smile__main {
  background: var(--teal-deep);
  border-radius: var(--r-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.smile__main::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(43,181,160,0.18), transparent 50%);
  pointer-events: none;
}
.smile__ba {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: var(--ink-3);
}
.smile__ba .layer {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.smile__ba .layer.after { clip-path: inset(0 0 0 50%); }
.smile__ba .lbl {
  position: absolute;
  top: 16px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 999px;
  z-index: 3;
}
.smile__ba .lbl.before { left: 16px; }
.smile__ba .lbl.after { right: 16px; background: var(--gold); color: var(--teal-deep); }
.smile__ba .handle {
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--white);
  z-index: 4;
  pointer-events: none;
}
.smile__ba .handle::before {
  content: ""; position: absolute; inset: 0 -1px;
  background: rgba(255,255,255,0.6);
  filter: blur(8px);
}
.smile__ba .handle::after {
  content: "‹›";
  position: absolute; top: 50%; left: 50%;
  width: 44px; height: 44px;
  margin: -22px 0 0 -22px;
  background: var(--white);
  color: var(--teal-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  letter-spacing: -2px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.smile__copy h3 { color: var(--white); font-size: clamp(28px, 3.6vw, 44px); }
.smile__copy h3 em { color: var(--gold); font-family: var(--display); font-style: italic; font-weight: 400; }
.smile__copy p { color: rgba(255,255,255,0.75); font-size: 15.5px; line-height: 1.65; margin-top: 16px; }

.case-strip {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.case {
  aspect-ratio: 5/4;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 320ms var(--ease);
  background: var(--bg-mint);
}
.case:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.case .lbl {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(255,255,255,0.92);
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  color: var(--ink);
  letter-spacing: 0.04em;
}

/* ====== Journey ====== */
.journey {
  background: var(--white);
}
.journey__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 48px;
}
.journey__steps::before {
  content: "";
  position: absolute;
  top: 36px; left: 8%; right: 8%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--aqua) 0, var(--aqua) 4px, transparent 4px, transparent 8px);
  z-index: 0;
}
.jstep { position: relative; z-index: 1; }
.jstep__num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--mint-soft);
  display: grid; place-items: center;
  font-family: var(--display); font-style: italic;
  font-size: 30px; color: var(--teal);
  margin: 0 auto 20px;
  position: relative;
  transition: all 380ms var(--ease);
}
.jstep__num::after {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%; border: 1px dashed var(--rule);
}
.jstep:hover .jstep__num { background: var(--teal); color: var(--white); border-color: var(--teal); transform: scale(1.05); }
.jstep h4 { font-size: 17px; font-weight: 600; text-align: center; margin-bottom: 6px; }
.jstep p { font-size: 13.5px; color: var(--ink-3); text-align: center; line-height: 1.5; max-width: 220px; margin: 0 auto; }

/* ====== Videos ====== */
.videos-sec {
  background: var(--bg);
}
.video-feature {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
}
.video-main {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--teal-deep);
}
.video-main .play-wrap {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  z-index: 2;
}
.play-btn {
  width: 88px; height: 88px;
  background: rgba(255,255,255,0.16);
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
  position: relative;
  transition: all 360ms var(--ease);
}
.video-main:hover .play-btn { background: var(--gold); border-color: var(--gold); transform: scale(1.08); }
.play-btn::after {
  content: ""; position: absolute; inset: -8px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  animation: ringPulse 2.4s ease-in-out infinite;
}
@keyframes ringPulse {
  0% { transform: scale(0.94); opacity: 0.8; }
  60% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

.video-list {
  display: flex; flex-direction: column; gap: 4px;
}
.vrow {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 16px;
  padding: 14px;
  border-radius: var(--r);
  align-items: center;
  cursor: pointer;
  transition: all 280ms var(--ease);
  border: 1px solid transparent;
}
.vrow:hover { background: var(--white); border-color: var(--rule-soft); }
.vrow.active { background: var(--white); border-color: var(--mint-soft); box-shadow: var(--shadow-sm); }
.vrow__thumb {
  aspect-ratio: 16/10;
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
}
.vrow__thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(7,49,61,0.3);
  display: grid; place-items: center;
}
.vrow h5 { font-size: 14px; font-weight: 600; line-height: 1.25; }
.vrow .meta { font-size: 11.5px; color: var(--ink-3); margin-top: 4px; display: flex; gap: 8px; align-items: center; }
.vrow .meta strong { color: var(--gold); font-family: var(--display); font-style: italic; font-weight: 400; }
.vrow .pl {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--teal);
  display: grid; place-items: center;
  transition: all 280ms var(--ease);
}
.vrow:hover .pl, .vrow.active .pl { background: var(--teal); color: var(--white); }

/* ====== Reviews carousel ====== */
.reviews-sec { background: var(--white); }
.r-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.r-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  border: 1px solid var(--rule-soft);
  transition: all 380ms var(--ease);
}
.r-card:hover { background: var(--white); box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--mint-soft); }
.r-card .stars { color: var(--gold); letter-spacing: 1px; font-size: 14px; }
.r-card .quote-icon {
  position: absolute; top: 24px; right: 24px;
  width: 36px; height: 36px;
  background: var(--mint-soft);
  color: var(--teal);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-style: italic; font-size: 24px;
}
.r-card h4 { font-size: 17px; font-weight: 600; line-height: 1.3; }
.r-card p { font-size: 14px; color: var(--ink-3); line-height: 1.65; flex: 1; }
.r-card .who { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--rule-soft); }
.r-card .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--aqua));
  color: var(--white); display: grid; place-items: center;
  font-weight: 700; font-size: 16px;
}
.r-card .who .name { font-size: 14px; font-weight: 600; }
.r-card .who .badge { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; display: flex; align-items: center; gap: 6px; }
.r-card .who .badge .g { color: var(--teal); font-weight: 700; }

.r-rating {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 24px;
  padding: 12px 22px;
  background: var(--bg-mint);
  border-radius: 999px;
  border: 1px solid var(--mint-soft);
}
.r-rating .num { font-size: 28px; font-weight: 700; color: var(--teal); line-height: 1; }
.r-rating .stars { color: var(--gold); letter-spacing: 2px; }
.r-rating .meta { font-size: 12.5px; color: var(--ink-3); }
.r-rating .g {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700; color: var(--teal);
}

/* ====== Locations ====== */
.loc-sec { background: var(--bg-2); }
.loc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.loc {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--rule-soft);
  transition: all 380ms var(--ease);
}
.loc:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.loc__map {
  aspect-ratio: 16/9;
  position: relative;
  background: linear-gradient(180deg, var(--bg-mint), var(--mint-soft));
  overflow: hidden;
}
.loc__map::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(15,76,92,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,76,92,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.loc__map::after {
  content: "";
  position: absolute;
  top: 30%; left: 20%;
  width: 60%; height: 40%;
  background: linear-gradient(135deg, transparent, rgba(43,181,160,0.18));
  border-radius: 50%;
  filter: blur(20px);
}
.loc__pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  z-index: 3;
}
.loc__pin .marker {
  width: 44px; height: 44px;
  background: var(--teal-deep);
  color: var(--gold);
  border-radius: 50% 50% 50% 0;
  rotate: -45deg;
  display: grid; place-items: center;
  box-shadow: 0 8px 16px -8px rgba(7,49,61,0.4);
}
.loc__pin .marker span { rotate: 45deg; font-weight: 700; font-size: 14px; }
.loc__pin .ring {
  position: absolute;
  top: 22px; left: 22px;
  width: 80px; height: 80px;
  margin: -40px 0 0 -40px;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  animation: pinRing 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes pinRing {
  0% { transform: scale(0.4); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.loc__body { padding: 28px 32px 32px; }
.loc__body .tag {
  display: inline-block;
  font-size: 11.5px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 8px;
}
.loc__body h3 { font-size: 26px; font-weight: 600; letter-spacing: -0.01em; }
.loc__body .addr { font-size: 14px; color: var(--ink-3); line-height: 1.55; margin-top: 12px; }
.loc__body .row {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 13.5px;
}
.loc__body .row:first-of-type { border-top: 1px solid var(--rule-soft); margin-top: 18px; }
.loc__body .row span:first-child { color: var(--ink-3); }
.loc__body .row span:last-child { font-weight: 600; }
.loc__body .actions { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }

/* ====== FAQ ====== */
.faq-sec { background: var(--white); }
.faq {
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
  background: var(--bg);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--rule-soft);
  transition: all 320ms var(--ease);
}
.faq-item.open { background: var(--white); border-color: var(--mint-soft); box-shadow: var(--shadow-sm); }
.faq-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 16px;
  align-items: center;
  padding: 22px 28px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.faq-item .toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--teal);
  display: grid; place-items: center;
  transition: all 320ms var(--ease);
  font-size: 16px; line-height: 1;
}
.faq-item.open .toggle { background: var(--teal); color: var(--white); transform: rotate(45deg); }
.faq-item .body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 480ms var(--ease);
}
.faq-item.open .body { max-height: 320px; }
.faq-item .body p {
  padding: 0 28px 24px;
  font-size: 15px; color: var(--ink-3); line-height: 1.7;
  max-width: 720px;
}

/* ====== CTA Band ====== */
.cta-band {
  background: var(--teal-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 100% 100%, rgba(43,181,160,0.2), transparent 50%),
    radial-gradient(ellipse at 0% 0%, rgba(200,160,90,0.12), transparent 50%);
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-band h2 { color: var(--white); font-size: clamp(40px, 5.4vw, 76px); }
.cta-band h2 em { color: var(--gold); font-family: var(--display); font-style: italic; font-weight: 400; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.65; margin-top: 20px; max-width: 480px; }
.cta-band .btns { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band__contact {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 32px;
  backdrop-filter: blur(14px);
}
.cta-band__contact .row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cta-band__contact .row:last-child { border: 0; }
.cta-band__contact .ico {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(43,181,160,0.18);
  color: var(--aqua-2);
  display: grid; place-items: center;
}
.cta-band__contact .lbl { font-size: 11.5px; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; }
.cta-band__contact .val { font-size: 15px; font-weight: 600; margin-top: 2px; }

/* ====== Footer ====== */
.foot {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot__brand { color: var(--white); font-size: 22px; font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; }
.foot__brand small { display: block; font-size: 11px; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 6px; font-weight: 500; }
.foot__col h4 { font-size: 12px; font-weight: 600; color: var(--gold-soft); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; }
.foot__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.foot__col a:hover { color: var(--white); }
.foot__bottom {
  display: flex; justify-content: space-between;
  margin-top: 26px;
  font-size: 12px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
}
.foot__social { display: flex; gap: 10px; margin-top: 18px; }
.foot__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: var(--white);
  transition: all 280ms;
}
.foot__social a:hover { background: var(--aqua); color: var(--teal-deep); }

/* ====== Floating CTAs ====== */
.float-actions {
  position: fixed;
  right: 20px; bottom: 20px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 60;
}
.float-actions a, .float-actions button {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.3);
  transition: all 280ms var(--ease);
  position: relative;
}
.float-actions .wa { background: #25D366; }
.float-actions .wa:hover { transform: scale(1.08); }
.float-actions .call { background: var(--teal); }
.float-actions .call:hover { background: var(--teal-deep); transform: scale(1.08); }
.float-actions a::after {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.3;
  animation: ringPulse 2.4s ease-out infinite;
}
.float-actions .label-pop {
  position: absolute;
  right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--ink);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 13px; font-weight: 500;
  opacity: 0; pointer-events: none;
  transition: opacity 240ms;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.float-actions a:hover .label-pop, .float-actions button:hover .label-pop { opacity: 1; }

/* ====== Sticky bottom nav (mobile-like book bar) ====== */
.sticky-book {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  padding: 12px 20px;
  display: none;
  justify-content: space-between; align-items: center;
  border-top: 1px solid var(--rule-soft);
  box-shadow: 0 -8px 24px -12px rgba(0,0,0,0.1);
  z-index: 70;
}

/* ====== Marquee strip ====== */
.tags-strip {
  background: var(--white);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  overflow: hidden;
  padding: 22px 0;
}
.tags-strip .row {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  align-items: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.tags-strip .item {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 17px; color: var(--ink-2); font-weight: 500;
  letter-spacing: -0.005em;
}
.tags-strip .item .star { color: var(--aqua); font-size: 14px; }

/* ---------- Helpers ---------- */
.bg-fill {
  width: 100%; height: 100%;
  position: relative;
}
.bg-fill.gradient-1 { background: linear-gradient(135deg, #B5D4CC 0%, #7FB6A6 60%, #4A8273 100%); }
.bg-fill.gradient-2 { background: linear-gradient(135deg, #C8DEE0 0%, #88B4BC 100%); }
.bg-fill.gradient-3 { background: linear-gradient(135deg, #F1E2C2 0%, #C8A05A 100%); }
.bg-fill.gradient-4 { background: linear-gradient(135deg, #0F4C5C 0%, #07313D 100%); }
.bg-fill.gradient-5 { background: linear-gradient(135deg, #E8F2EE 0%, #B5D4CC 100%); }
.bg-fill.gradient-6 { background: linear-gradient(135deg, #FBE3D6 0%, #E78863 100%); }
.bg-fill .ph-label {
  position: absolute; bottom: 14px; left: 14px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.bg-fill .ph-label.dark { color: rgba(11,31,38,0.55); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; gap: 80px; }
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; gap: 40px; }
  .docs { grid-template-columns: 1fr; }
  .doc { grid-template-columns: 200px 1fr; }
  .smile__main { grid-template-columns: 1fr; padding: 28px; }
  .case-strip { grid-template-columns: repeat(2, 1fr); }
  .doc-strip { grid-template-columns: repeat(2, 1fr); }
  .journey__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .journey__steps::before { display: none; }
  .video-feature { grid-template-columns: 1fr; gap: 24px; }
  .r-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .cta-band__inner { grid-template-columns: 1fr; gap: 32px; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav__links { display: none; }
  /* Switch to flexbox so brand + cta + hamburger all sit on one row */
  .nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  .brand { flex: 1; }
  .topbar .left .item-2, .topbar .right .item-2 { display: none; }
  .doc__photo .yrs { font-size: 10px; }
}
@media (max-width: 700px) {
  .hero { padding: 32px 0 60px; }
  .doc { grid-template-columns: 1fr; }
  .doc__photo { aspect-ratio: 4/3; }
  .doc-strip { grid-template-columns: 1fr; }
  .case-strip { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr; }
  .topbar .right { display: none; }
  .vrow { grid-template-columns: 70px 1fr 32px; }
}

/* ── About / Story section ── */
.about-story { background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.about-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.about-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.about-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r);
  background: var(--mint-soft);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-card h4 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  font-style: italic;
}
.about-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-3);
}
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ── Real image styles ── */
.hero__img,
.why__img,
.doc__img,
.case__img,
.video-thumb-img,
.vrow__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero image fills the media box */
.hero__media { position: relative; overflow: hidden; }
.hero__img { position: absolute; inset: 0; border-radius: var(--r-xl); }

/* WhyUs media */
.why__media { position: relative; overflow: hidden; border-radius: var(--r-xl); }
.why__img { position: absolute; inset: 0; border-radius: var(--r-xl); }

/* Doctor photo */
.doc__photo { position: relative; overflow: hidden; }
.doc__img { position: absolute; inset: 0; border-radius: var(--r-lg); }

/* Case strip */
.case { position: relative; overflow: hidden; }
.case__img { position: absolute; inset: 0; border-radius: var(--r-lg); }

/* Video thumbnails */
.video-main { position: relative; overflow: hidden; border-radius: var(--r-lg); }
.video-thumb-img { position: absolute; inset: 0; border-radius: var(--r-lg); }
.vrow__thumb { position: relative; overflow: hidden; border-radius: var(--r-sm); }
.vrow__img { position: absolute; inset: 0; border-radius: var(--r-sm); }

/* ── Certifications strip ── */
.certs-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.cert-card {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3/4;
  background: var(--white);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.cert-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow); }
.cert-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Team photo ── */
.team-photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  max-height: 420px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.team-photo__cap {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(11,31,38,0.7);
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

@media (max-width: 960px) {
  .certs-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .certs-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ── Video player (Drive embed) ── */
.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--r-lg);
  background: #000;
}
.video-title-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(7,49,61,0.92) 0%, transparent 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.video-title-overlay .vnum {
  font-size: 0.7rem;
  opacity: 0.6;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.video-title-overlay .vdur {
  margin-left: auto;
  opacity: 0.7;
  font-size: 0.8rem;
}
.vrow__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,76,92,0.5);
  color: var(--white);
  border-radius: var(--r-sm);
  opacity: 0;
  transition: opacity 0.2s;
}
.vrow:hover .vrow__play { opacity: 1; }

/* ── Video scroll strip (redesign) ── */
.vscroll-outer {
  margin-top: 40px;
  overflow-x: auto;
  padding: 8px var(--gutter) 32px;
  scrollbar-width: thin;
  scrollbar-color: var(--aqua) var(--bg-2);
  cursor: grab;
}
.vscroll-outer:active { cursor: grabbing; }
.vscroll-outer::-webkit-scrollbar { height: 4px; }
.vscroll-outer::-webkit-scrollbar-track { background: var(--bg-2); border-radius: 4px; }
.vscroll-outer::-webkit-scrollbar-thumb { background: var(--aqua); border-radius: 4px; }

.vscroll {
  display: flex;
  gap: 18px;
  width: max-content;
  padding-bottom: 4px;
}

.vcard {
  width: 300px;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.vcard:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow);
}
.vcard__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.vcard:hover .vcard__thumb { transform: scale(1.06); }

.vcard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,49,61,0.3) 0%, rgba(7,49,61,0.55) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.vcard:hover .vcard__overlay { background: rgba(7,49,61,0.65); }

.vcard__play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: transform 0.25s var(--ease), background 0.25s;
}
.vcard:hover .vcard__play-btn {
  transform: scale(1.12);
  background: var(--aqua);
  border-color: var(--aqua);
}

.vcard__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── Video modal ── */
.vmodal {
  position: fixed;
  inset: 0;
  background: rgba(7,31,38,0.88);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.vmodal__box {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,0.7);
  animation: scaleIn 0.25s var(--ease);
}
@keyframes scaleIn { from { transform: scale(0.93); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.vmodal__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: #000;
}
.vmodal__close {
  position: absolute;
  top: -48px; right: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.vmodal__close:hover { background: rgba(255,255,255,0.3); }

/* ── Booking form section ── */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.book-left { color: var(--white); }
.book-info {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.book-info__row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  opacity: 0.85;
}
.book-info__row svg { flex-shrink: 0; opacity: 0.7; }
.book-direct {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn--ghost-light {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.18); }
.btn--wa {
  background: #25D366;
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  border-radius: var(--r);
  padding: 16px 28px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn--wa:hover { background: #1ebe5d; transform: translateY(-2px); }

/* Form card */
.book-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.book-form__title {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 28px;
}
.bf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.bf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bf-field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.bf-field input,
.bf-field select {
  padding: 12px 14px;
  border: 1.5px solid var(--rule);
  border-radius: var(--r);
  font: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.bf-field input:focus,
.bf-field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15,76,92,0.1);
  background: var(--white);
}
.bf-field select {
  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='%234A6066' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.bf-note {
  font-size: 0.75rem;
  color: var(--ink-3);
  text-align: center;
  margin-top: 10px;
  opacity: 0.8;
}

/* Success state */
.book-success {
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.book-success__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.book-success h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--teal);
}
.book-success p { color: var(--ink-3); max-width: 300px; line-height: 1.65; }

@media (max-width: 900px) {
  .book-grid { grid-template-columns: 1fr; gap: 40px; }
  .bf-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .book-form-wrap { padding: 24px 20px; }
}

/* ── Location cards with real maps ── */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.loc-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.loc-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

/* Map iframe */
.loc-card__map {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.loc-card__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.9) contrast(1.05);
}
.loc-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}

/* Body */
.loc-card__body {
  padding: 28px 28px 32px;
}
.loc-card__body h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
}
.loc-card__body h3 em {
  color: var(--teal-2);
}
.loc-card__addr {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--ink-3);
  line-height: 1.6;
  margin-bottom: 20px;
}
.loc-card__addr svg { flex-shrink: 0; margin-top: 2px; color: var(--teal); }

.loc-card__hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--r);
  margin-bottom: 22px;
}
.loc-card__hours > div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
.loc-card__hours svg { color: var(--teal); flex-shrink: 0; }
.loc-card__hours span { color: var(--ink-3); flex: 1; }
.loc-card__hours strong { color: var(--ink); }

.loc-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.loc-card__actions .btn {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.85rem;
  padding: 10px 14px;
}

@media (max-width: 860px) {
  .loc-grid { grid-template-columns: 1fr; }
  .loc-card__map { height: 220px; }
}

/* ============================================================
   MOBILE NAV — Hamburger + Drawer
   ============================================================ */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: background 0.2s;
  z-index: 100;
}
.nav__hamburger:hover { background: var(--bg); }
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(7, 49, 61, 0.55);
  backdrop-filter: blur(4px);
  z-index: 200;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.mobile-nav-drawer {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--white);
  z-index: 201;
  padding: 0 0 32px;
  animation: slideDown 0.28s var(--ease);
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  box-shadow: 0 20px 60px -10px rgba(7,49,61,0.3);
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--rule);
}
.mobile-nav-logo {
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
}
.mobile-nav-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: none; cursor: pointer;
  font-size: 1rem; color: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav-links {
  display: flex; flex-direction: column;
  padding: 8px 0;
}
.mobile-nav-link {
  padding: 16px 24px;
  font-size: 1.05rem; font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-soft);
  transition: background 0.15s, color 0.15s;
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-nav-link::after { content: '→'; color: var(--teal); font-size: 0.85rem; }
.mobile-nav-link:hover { background: var(--bg-mint); color: var(--teal); }
.mobile-nav-actions {
  display: flex; flex-direction: column; gap: 10px;
  padding: 20px 24px 0;
}

/* ============================================================
   COMPREHENSIVE MOBILE STYLES
   ============================================================ */
@media (max-width: 1100px) {
  .nav__hamburger { display: flex; }
  .nav__cta .btn--primary { padding: 10px 14px; font-size: 0.85rem; }
  .nav__cta .btn--ghost { display: none; }
}

@media (max-width: 768px) {
  /* Base spacing */
  :root { --gutter: 20px; }

  /* Hero */
  .hero { padding: 24px 0 48px; margin-top: 0; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem) !important; }
  .hero__lede { font-size: 0.95rem; }
  .hero__cta { flex-direction: column; gap: 10px; }
  .hero__cta .btn { width: 100%; justify-content: center; text-align: center; }
  .hero__grid { gap: 36px; }
  .hero__media { min-height: 260px; aspect-ratio: 16/9; }
  /* Hide all floating hero cards on mobile — prevents overflow */
  .book-card { display: none; }
  .live-card { display: none; }
  .rating-card { display: none; }

  /* Trust stats */
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 20px 16px; }
  .stat__num { font-size: 2.2rem; }

  /* Services */
  .svc-grid { grid-template-columns: 1fr; gap: 12px; }
  .svc { padding: 20px; }
  .svc .more { opacity: 1; transform: none; }

  /* Why us */
  .why__grid { grid-template-columns: 1fr; }
  .why__content { padding: 0; }
  .why-reasons { grid-template-columns: 1fr; gap: 12px; }

  /* Journey steps */
  .journey__steps { grid-template-columns: 1fr; gap: 24px; }
  .journey__steps::before { display: none; }

  /* About cards */
  .about-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Smile gallery */
  .smile__main { grid-template-columns: 1fr; padding: 20px; gap: 24px; }
  .smile__copy h3 { font-size: 1.5rem; word-break: break-word; overflow-wrap: break-word; }
  .smile__copy { overflow: hidden; }
  .case-strip { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Reviews */
  .r-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Locations */
  .loc-grid { grid-template-columns: 1fr; }

  /* Booking section */
  .book-grid { grid-template-columns: 1fr; gap: 24px; }
  .bf-row { grid-template-columns: 1fr; }
  .book-form-wrap { padding: 20px 16px; border-radius: var(--r-lg); }

  /* Footer */
  .foot__grid { grid-template-columns: 1fr; gap: 28px; }
  .foot__social { justify-content: flex-start; }

  /* Section headings */
  .sec-h__title { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  /* CTA band */
  .cta-band__inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .cta-band__ctas { justify-content: center; }

  /* Float buttons — WhatsApp only on mobile, bigger tap target */
  .float-actions { right: 16px; bottom: 88px; flex-direction: column; gap: 10px; }
  .float-actions a, .float-actions button { width: 56px; height: 56px; }
  .float-actions .label-pop { display: none; }
  /* Hide phone float on mobile — sticky bar has it */
  .float-actions .call { display: none; }
  /* Footer bottom padding to account for sticky book bar */
  .foot { padding-bottom: 80px; }

  /* Sticky bottom book bar — show on mobile */
  .sticky-book { display: flex; padding-bottom: max(12px, env(safe-area-inset-bottom)); }

  /* Video strip */
  .vscroll { -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; padding-bottom: 12px; }
  .vcard { scroll-snap-align: start; }

  /* Prevent iOS input zoom (must be 16px) */
  input, select, textarea { font-size: 16px !important; }

  /* Doctors */
  .doc { grid-template-columns: 1fr; }
  .doc__photo { aspect-ratio: 4/3; min-height: unset; }
  .doc-strip { grid-template-columns: repeat(2, 1fr); }

  /* Topbar hidden */
  .topbar { display: none; }
}

@media (max-width: 480px) {
  .trust__inner { grid-template-columns: 1fr 1fr; }
  .case-strip { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 8px; }
  .certs-strip { grid-template-columns: repeat(2, 1fr); }
  .svc-hero__stats { gap: 8px; }
  .svc-hero__stat { padding: 10px 14px; }
  .svc-hero__stat strong { font-size: 1.2rem; }
  .other-grid { grid-template-columns: 1fr 1fr !important; }
}

/* Safe area for notched phones */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .sticky-book { padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
  .float-actions { bottom: calc(80px + env(safe-area-inset-bottom)); }
}
