/* ============================================================
   Redeemer Dental Clinic — Premium Design System v2
   Inspired by: Tend, Smile Design, Four Seasons Health
   Aesthetic: Dark luxury · Teal accents · Glassmorphism
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Dark Palette ── */
  --bg-deep:    #090e10;
  --bg-dark:    #0e1517;
  --bg-card:    #131c1f;
  --bg-surface: #1a2428;
  --bg-glass:   rgba(14, 21, 23, 0.72);

  /* ── Teal Brand ── */
  --teal-950: #031616;
  --teal-900: #072020;
  --teal-800: #0e3535;
  --teal-700: #1a5c5c;
  --teal-600: #267a7a;
  --teal-500: #3FA79E;
  --teal-400: #5cc4bc;
  --teal-300: #83d8d2;
  --teal-200: #b5ebe7;
  --teal-100: #e3f8f7;

  /* ── Gold accent ── */
  --gold-500: #C9973D;
  --gold-400: #ddb05a;
  --gold-300: #f0cb82;
  --gold-100: #fdf2dc;

  /* ── Ink ── */
  --white:  #f8fdfc;
  --muted:  rgba(200, 230, 228, 0.55);
  --muted-2: rgba(200, 230, 228, 0.35);
  --border: rgba(63, 167, 158, 0.15);
  --border-strong: rgba(63, 167, 158, 0.3);

  /* ── Typography ── */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-xs:   0.75rem;   /* 12px */
  --fs-sm:   0.875rem;  /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-md:   1.125rem;  /* 18px */
  --fs-lg:   1.375rem;  /* 22px */
  --fs-xl:   1.75rem;   /* 28px */
  --fs-2xl:  2.5rem;    /* 40px */
  --fs-3xl:  3.5rem;    /* 56px */
  --fs-4xl:  5rem;      /* 80px */

  /* ── Spacing ── */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 16px;
  --sp-4: 24px;  --sp-5: 32px;  --sp-6: 48px;
  --sp-7: 64px;  --sp-8: 96px;  --sp-9: 128px;

  /* ── Radius ── */
  --r-xs: 6px;  --r-sm: 10px;  --r-md: 16px;
  --r-lg: 24px; --r-xl: 32px;  --r-pill: 999px;

  /* ── Shadows ── */
  --shadow-teal: 0 0 40px rgba(63, 167, 158, 0.18);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 80px rgba(63, 167, 158, 0.12);
  --shadow-btn:  0 8px 24px rgba(63, 167, 158, 0.35);

  --container: 1200px;
}

/* ============================================================
   Light Mode Theme
   ============================================================ */
[data-theme="light"] {
  --bg-deep:    #f4faf9;
  --bg-dark:    #e8f5f3;
  --bg-card:    #ffffff;
  --bg-surface: #d9eeeb;
  --bg-glass:   rgba(255, 255, 255, 0.88);

  /* Invert foreground: text becomes dark ink */
  --white:   #142b28;
  --muted:   rgba(20, 43, 40, 0.62);
  --muted-2: rgba(20, 43, 40, 0.42);

  /* Use darker teal for accessible contrast on light bg */
  --teal-400: #1a5c5c;
  --teal-300: #267a7a;

  --border:        rgba(63, 167, 158, 0.2);
  --border-strong: rgba(63, 167, 158, 0.38);

  --shadow-teal: 0 0 40px rgba(63, 167, 158, 0.1);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 60px rgba(63, 167, 158, 0.07);
  --shadow-btn:  0 4px 16px rgba(63, 167, 158, 0.28);

  /* gold: darker for light bg contrast */
  --gold-400: #9a7320;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--white);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5, figure, p { margin: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Screen reader ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.sr-only:focus {
  position: fixed; top: 16px; left: 16px;
  width: auto; height: auto; padding: 8px 20px;
  background: var(--teal-500); color: #000;
  border-radius: var(--r-sm); z-index: 1000; clip: auto;
}

/* ── Headings ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
}

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

section { padding: var(--sp-8) 0; }

/* ── Ambient Noise Texture Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: var(--sp-3);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal-400), transparent);
}

/* ── Section Head ── */
.section-head { max-width: 680px; margin-bottom: var(--sp-7); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 {
  font-size: var(--fs-3xl);
  background: linear-gradient(135deg, var(--white) 30%, var(--teal-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-head p {
  margin-top: var(--sp-3);
  color: var(--muted);
  font-size: var(--fs-md);
  line-height: 1.75;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 54px;
  padding: 0 var(--sp-5);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s ease;
}
.btn:hover::after { background: rgba(255,255,255,0.06); }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: #ffffff;
  box-shadow: var(--shadow-btn);
  border-color: var(--teal-500);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(63, 167, 158, 0.5);
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  border-color: var(--teal-400);
  color: var(--teal-400);
  background: rgba(63, 167, 158, 0.06);
}

.btn-ghost {
  background: transparent;
  color: var(--teal-400);
  height: auto;
  padding: 0;
  font-weight: 600;
  border-radius: 0;
  font-size: var(--fs-sm);
  letter-spacing: 0.03em;
  border: none;
}
.btn-ghost .arrow { transition: transform 0.2s ease; display: inline-block; margin-left: 4px; }
.btn-ghost:hover .arrow { transform: translateX(4px); }
.btn-ghost:hover { color: var(--teal-300); }

.btn-sm { height: 44px; padding: 0 var(--sp-4); font-size: var(--fs-xs); }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9, 14, 16, 0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
  z-index: -1;
}
.site-header.scrolled::before {
  background: rgba(9, 14, 16, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: var(--sp-4);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  z-index: 10;
}
.brand img { object-fit: contain; flex-shrink: 0; filter: brightness(1.1); }
.brand-name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1px;
  background: var(--teal-400);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { right: 0; }

/* Active nav state */
.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--teal-400);
}
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
  right: 0 !important;
}

.header-actions { display: flex; align-items: center; gap: var(--sp-4); }
.header-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}
.header-phone:hover { color: var(--teal-400); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: var(--sp-2);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  margin: 6px 0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* ============================================================
   Hero — Full Viewport Dark Luxury
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Radial gradient background */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(ellipse at center,
    rgba(63, 167, 158, 0.12) 0%,
    rgba(63, 167, 158, 0.04) 40%,
    transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -15%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(ellipse at center,
    rgba(201, 151, 61, 0.07) 0%,
    transparent 65%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(63, 167, 158, 0.1);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  padding: 6px 14px 6px 6px;
  margin-bottom: var(--sp-4);
  backdrop-filter: blur(12px);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 8px var(--teal-400);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero-badge span { font-size: var(--fs-xs); font-weight: 600; color: var(--teal-300); letter-spacing: 0.06em; text-transform: uppercase; }

.hero-copy h1 {
  font-size: clamp(2.25rem, 3.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: var(--sp-5);
  color: var(--white);
  text-wrap: balance;
  max-width: 14ch;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--teal-300);
  /* inline with last word, not block */
}

.hero-copy p.lead {
  font-size: var(--fs-md);
  color: var(--muted);
  max-width: 500px;
  margin-bottom: var(--sp-6);
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-7);
  flex-wrap: wrap;
}

/* Trust pills */
.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.hero-trust-item strong { color: var(--white); font-weight: 700; }
.hero-trust-sep {
  width: 1px;
  height: 16px;
  background: var(--border-strong);
}

/* Stars */
.stars { color: var(--gold-400); letter-spacing: 1px; font-size: var(--fs-sm); }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Image Frame */
.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--teal-600), transparent 60%, var(--gold-500) 100%);
  border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
  opacity: 0.5;
  filter: blur(1px);
  animation: morph 8s ease-in-out infinite;
}
.hero-img-wrap {
  position: relative;
  border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
  overflow: hidden;
  animation: morph 8s ease-in-out infinite;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  aspect-ratio: 1 / 1.1;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 12%;
  display: block;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(9, 14, 16, 0.6) 100%
  );
}

@keyframes morph {
  0%, 100% { border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%; }
  33%       { border-radius: 55% 45% 40% 60% / 55% 45% 55% 45%; }
  66%       { border-radius: 45% 55% 60% 40% / 40% 60% 45% 55%; }
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  z-index: 2;
}
.floating-card.rating {
  top: 4%;
  left: -12%;
  animation: float-a 5s ease-in-out infinite;
}
.floating-card.doctor {
  bottom: 5%;
  right: -10%;
  animation: float-b 6s ease-in-out infinite;
}
@keyframes float-a {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-8px) rotate(0deg); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0px) rotate(1deg); }
  50%       { transform: translateY(-6px) rotate(0deg); }
}

.floating-card .fc-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.floating-card.rating .fc-icon { background: rgba(201, 151, 61, 0.15); color: var(--gold-400); }
.floating-card.doctor .fc-icon { background: rgba(63, 167, 158, 0.15); color: var(--teal-400); }
.floating-card .fc-title { font-size: var(--fs-sm); font-weight: 700; color: var(--white); }
.floating-card .fc-sub { font-size: var(--fs-xs); color: var(--muted); }

/* ============================================================
   Trust Strip
   ============================================================ */
.trust-strip {
  padding: var(--sp-5) 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.trust-strip-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  white-space: nowrap;
}
.trust-strip-items {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.trust-strip-items div {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}
.trust-strip-items div::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--teal-500);
}

/* ============================================================
   Testimonials
   ============================================================ */
.social-proof { background: var(--bg-dark); position: relative; }
.social-proof::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  margin-bottom: var(--sp-7);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.rating-summary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-500), transparent);
}

.rating-score { text-align: center; }
.rating-score .num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--teal-400);
  line-height: 1;
  letter-spacing: -0.02em;
}
.rating-score .stars { display: block; margin: 6px 0; }
.rating-score .count { font-size: var(--fs-xs); color: var(--muted-2); letter-spacing: 0.05em; }

.rating-divider { width: 1px; align-self: stretch; background: var(--border); }

.rating-note { flex: 1; min-width: 220px; }
.rating-note h3 {
  font-size: var(--fs-lg);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: var(--sp-2);
  color: var(--white);
}
.rating-note p { color: var(--muted); font-size: var(--fs-sm); }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 119, 242, 0.1);
  border: 1px solid rgba(24, 119, 242, 0.25);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: #6ab0f5;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.google-badge:hover { background: rgba(24, 119, 242, 0.18); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-700), var(--teal-500), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-teal); }
.testimonial-card:hover::before { opacity: 1; }
.testimonial-card p.quote {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testimonial-card p.quote::before { content: '\201C'; color: var(--teal-600); font-size: 2rem; line-height: 0; vertical-align: -0.4em; margin-right: 2px; font-family: var(--font-display); }

.testimonial-person {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}
.avatar-initial {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: var(--fs-xs);
  color: var(--bg-deep);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.testimonial-person .name { font-size: var(--fs-sm); font-weight: 700; color: var(--white); }
.testimonial-person .meta { font-size: var(--fs-xs); color: var(--muted-2); }

/* ============================================================
   Services
   ============================================================ */
#services { background: var(--bg-deep); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg-card);
  padding: var(--sp-6);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-700), var(--teal-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover { background: var(--bg-surface); }
.service-card:hover::after { transform: scaleX(1); }

/* Large decorative number */
.service-card-num {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 700;
  color: rgba(63, 167, 158, 0.06);
  position: absolute;
  top: -10px;
  right: 16px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: rgba(63, 167, 158, 0.1);
  color: var(--teal-400);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
  border: 1px solid var(--border-strong);
  position: relative;
  z-index: 1;
}
.service-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-2);
  font-weight: 600;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--white), var(--teal-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-card p {
  color: var(--muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-5);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.service-card .btn-ghost { position: relative; z-index: 1; }

/* ============================================================
   Why Us / Approach
   ============================================================ */
.approach { background: var(--bg-dark); }
.approach .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}

.approach-visual {
  position: relative;
}
.approach-visual img {
  width: 100%;
  display: block;
}
.approach-visual::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at 30% 70%, rgba(63, 167, 158, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.approach .section-content h2 {
  font-size: var(--fs-3xl);
  background: linear-gradient(135deg, var(--white) 30%, var(--teal-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-3);
}
.approach .section-content > p {
  color: var(--muted);
  font-size: var(--fs-md);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
}

.feature-list { display: flex; flex-direction: column; gap: 1px; }
.feature-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-4);
  background: var(--bg-card);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, background 0.25s ease;
  margin-bottom: var(--sp-2);
}
.feature-item:hover { border-color: var(--border-strong); background: var(--bg-surface); }
.feature-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: rgba(63, 167, 158, 0.1);
  color: var(--teal-400);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-item h4 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.feature-item p { font-size: var(--fs-sm); color: var(--muted); line-height: 1.6; }

/* ============================================================
   Doctor Band
   ============================================================ */
#doctor { padding: var(--sp-7) 0; background: var(--bg-deep); }

.doctor-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-7);
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: var(--sp-7);
  border: 1px solid var(--border);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.doctor-band::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at right top, rgba(63, 167, 158, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.doctor-band::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--teal-500), var(--teal-800), transparent);
}

.doctor-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-strong);
  flex-shrink: 0;
  box-shadow: var(--shadow-teal);
}
.doctor-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 12%; }

.doctor-band .doctor-info h3 {
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.doctor-band .role {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: var(--sp-3);
}
.doctor-band p.bio {
  color: var(--muted);
  font-size: var(--fs-sm);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-section { background: var(--bg-dark); }
.cta-banner {
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--teal-900) 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-9) var(--sp-8);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(63, 167, 158, 0.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-500), transparent);
}

.cta-banner h2 {
  font-size: var(--fs-3xl);
  max-width: 600px;
  margin: 0 auto var(--sp-3);
  background: linear-gradient(135deg, var(--white) 40%, var(--teal-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.cta-banner p {
  color: var(--muted);
  font-size: var(--fs-md);
  max-width: 480px;
  margin: 0 auto var(--sp-6);
  position: relative;
  line-height: 1.75;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-7);
}

.footer-brand .brand-name { color: var(--white); }
.footer-brand p {
  font-size: var(--fs-sm);
  margin: var(--sp-3) 0 var(--sp-4);
  max-width: 260px;
  color: var(--muted-2);
  line-height: 1.7;
}
.footer-social { display: flex; gap: var(--sp-2); margin-top: var(--sp-4); }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all 0.2s ease;
}
.footer-social a:hover { border-color: var(--teal-400); color: var(--teal-400); background: rgba(63,167,158,0.06); }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a, .footer-col address {
  font-size: var(--fs-sm);
  font-style: normal;
  color: var(--muted-2);
  line-height: 1.6;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal-400); }

.footer-hours {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  gap: var(--sp-3);
  color: var(--muted-2);
}
.footer-hours span:last-child { color: var(--white); font-weight: 600; }

.footer-address-block {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  margin-bottom: var(--sp-4);
}
.footer-address-block svg { flex-shrink: 0; margin-top: 2px; }

.map-embed {
  width: 100%;
  height: 200px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(0.9) contrast(1.1); opacity: 0.7; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: var(--sp-4) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--muted-2);
  flex-wrap: wrap;
  gap: var(--sp-2);
}

/* ============================================================
   Doctor Profile Page
   ============================================================ */
.doctor-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: var(--sp-8);
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.doctor-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at left center, rgba(63,167,158,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.doctor-hero .container {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--sp-8);
  align-items: center;
  position: relative;
  z-index: 1;
}

.doctor-photo-wrap { position: relative; }
.doctor-photo-frame {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.doctor-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 12%; }
.doctor-photo-ring {
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--r-xl) + 12px);
  border: 1px dashed var(--border-strong);
  pointer-events: none;
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Credential badges */
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin: var(--sp-3) 0 var(--sp-4); }
.cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(63, 167, 158, 0.1);
  color: var(--teal-300);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-strong);
  letter-spacing: 0.04em;
}
.cred-badge.alt {
  background: rgba(62, 124, 177, 0.1);
  color: #6ab0f5;
  border-color: rgba(62, 124, 177, 0.25);
}

.doctor-hero h1 {
  font-size: var(--fs-4xl);
  font-weight: 500;
  background: linear-gradient(135deg, var(--white) 40%, var(--teal-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.doctor-hero .role-line {
  font-size: var(--fs-md);
  color: var(--teal-400);
  font-weight: 600;
  margin-bottom: var(--sp-4);
  letter-spacing: 0.02em;
}
.doctor-hero .lead {
  color: var(--muted);
  font-size: var(--fs-md);
  max-width: 540px;
  margin-bottom: var(--sp-5);
  line-height: 1.8;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.quick-fact {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  border-top: 2px solid var(--teal-600);
  transition: border-top-color 0.3s;
}
.quick-fact:hover { border-top-color: var(--teal-400); }
.quick-fact .qf-num {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--teal-400);
  display: block;
  font-weight: 700;
}
.quick-fact .qf-label { font-size: var(--fs-xs); color: var(--muted-2); font-weight: 500; line-height: 1.4; }

/* About section */
.bio-block { max-width: 740px; }
.bio-block p {
  color: var(--muted);
  font-size: var(--fs-md);
  margin-bottom: var(--sp-4);
  line-height: 1.8;
}
.bio-block p:last-child { margin-bottom: 0; }

/* Focus chips */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}
.focus-chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  text-align: center;
  transition: all 0.25s ease;
}
.focus-chip:hover {
  border-color: var(--border-strong);
  background: var(--bg-surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}
.focus-chip .fc-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: rgba(63,167,158,0.1);
  color: var(--teal-400);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-3);
}
.focus-chip span { font-size: var(--fs-sm); font-weight: 600; color: var(--white); }

/* Timeline */
.timeline { position: relative; padding-left: var(--sp-6); }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--teal-500), var(--border), transparent);
}
.timeline-item { position: relative; padding-bottom: var(--sp-6); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--sp-6) - 5px);
  top: 4px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 12px rgba(63,167,158,0.5);
  border: 2px solid var(--bg-dark);
}
.timeline-item .t-year {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 4px;
}
.timeline-item h4 {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.timeline-item p { color: var(--muted); font-size: var(--fs-sm); }

/* Reg strip */
.reg-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
  position: relative;
  overflow: hidden;
}
.reg-strip::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-500) 50%, transparent);
}
.reg-item { display: flex; align-items: center; gap: var(--sp-3); }
.reg-item .label { font-size: var(--fs-xs); color: var(--muted-2); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.reg-item .value { font-size: var(--fs-sm); color: var(--white); font-weight: 700; }

/* ============================================================
   Reveal Animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   Scrollbar
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--teal-800); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal-600); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .header-phone { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; }

  .nav-links.mobile-open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(9, 14, 16, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-5);
    z-index: 99;
  }
  .nav-links.mobile-open a {
    font-size: var(--fs-2xl);
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--white);
  }

  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 380px; margin: 0 auto; }
  .hero-copy h1 { text-align: center; }
  .hero-copy .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-copy p.lead { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }

  .testimonial-grid, .service-grid { grid-template-columns: 1fr; }
  .service-grid { border-radius: 0; background: none; border: none; gap: var(--sp-3); }
  .service-card { border-radius: var(--r-xl); border: 1px solid var(--border); }

  .approach .container { grid-template-columns: 1fr; gap: var(--sp-6); }
  .approach-visual { order: -1; }

  .doctor-band { grid-template-columns: 1fr; text-align: center; }
  .doctor-band .doctor-avatar { margin: 0 auto; }

  .rating-summary { flex-direction: column; text-align: center; }
  .rating-divider { width: 100%; height: 1px; }

  .doctor-hero .container { grid-template-columns: 1fr; text-align: center; }
  .doctor-photo-wrap { max-width: 300px; margin: 0 auto; }
  .badge-row { justify-content: center; }
  .doctor-hero .lead { margin: 0 auto var(--sp-5); }
  .quick-facts { grid-template-columns: 1fr 1fr 1fr; }
  .focus-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --fs-3xl: 2.25rem; --fs-4xl: 3rem; --fs-2xl: 2rem; }
  section { padding: var(--sp-7) 0; }
  .container { padding: 0 var(--sp-3); }

  .header-inner { height: 68px; }
  .hero { min-height: auto; padding-top: 68px; padding-bottom: var(--sp-6); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .trust-strip .container { flex-direction: column; align-items: flex-start; }
  .trust-strip-items { gap: var(--sp-3); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand p { max-width: 100%; }

  .cta-banner { padding: var(--sp-7) var(--sp-4); }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .quick-facts { grid-template-columns: 1fr; gap: var(--sp-3); }
  .focus-grid { grid-template-columns: 1fr 1fr; }
  .reg-strip { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Theme Toggle Button
   ============================================================ */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
  position: relative;
}
.theme-toggle:hover {
  border-color: var(--teal-500);
  color: var(--teal-400);
  background: rgba(63, 167, 158, 0.08);
}
/* Dark mode: show sun icon (switch TO light) */
.theme-toggle .icon-sun  { display: block; }
.theme-toggle .icon-moon { display: none;  }
/* Light mode: show moon icon (switch TO dark) */
[data-theme="light"] .theme-toggle .icon-sun  { display: none;  }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* ============================================================
   Focus-Visible — Accessibility
   ============================================================ */
:focus { outline: none; }

:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}
.btn:focus-visible {
  outline-offset: 2px;
  border-radius: var(--r-pill);
}
.theme-toggle:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 2px;
  border-radius: 50%;
}
.nav-links a:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 4px;
  border-radius: var(--r-xs);
}
.footer-social a:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 2px;
  border-radius: 50%;
}

/* ============================================================
   Smooth Theme Transition (applied during toggle only)
   ============================================================ */
.theme-transitioning,
.theme-transitioning *,
.theme-transitioning *::before,
.theme-transitioning *::after {
  transition:
    background-color 0.3s ease,
    color            0.3s ease,
    border-color     0.3s ease,
    box-shadow       0.3s ease !important;
}

/* ============================================================
   Light Mode — Specific Overrides
   ============================================================ */

/* Header glass in light mode */
[data-theme="light"] .site-header.scrolled::before {
  background: rgba(244, 250, 249, 0.92);
}

/* Hero ambient gradients — reduce intensity */
[data-theme="light"] .hero::before { opacity: 0.45; }
[data-theme="light"] .hero::after  { opacity: 0.4;  }

/* Hero image overlay — lighter tint */
[data-theme="light"] .hero-img-overlay {
  background: linear-gradient(180deg, transparent 50%, rgba(63, 100, 90, 0.12) 100%);
}

/* Mobile nav overlay */
[data-theme="light"] .nav-links.mobile-open {
  background: rgba(244, 250, 249, 0.97);
}
[data-theme="light"] .nav-links.mobile-open a {
  color: var(--white); /* dark ink in light mode */
}

/* Service grid gap */
[data-theme="light"] .service-grid {
  background: rgba(63, 167, 158, 0.15);
}

/* Rating score number */
[data-theme="light"] .rating-score .num { color: var(--teal-700); }

/* CTA banner — keep it dark so white text stays readable */
[data-theme="light"] .cta-banner {
  background: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-950) 100%);
}
[data-theme="light"] .cta-banner h2 {
  background: linear-gradient(135deg, #ffffff 40%, var(--teal-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-theme="light"] .cta-banner p { color: rgba(255,255,255,0.78); }
[data-theme="light"] .cta-banner .btn-secondary {
  color: #ffffff;
  border-color: rgba(255,255,255,0.3);
}
[data-theme="light"] .cta-banner .btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.08);
}

/* Doctor band in light mode (becomes white card) */
[data-theme="light"] .doctor-band .doctor-info h3 { color: var(--white); }
[data-theme="light"] .doctor-band p.bio { color: var(--muted); }
[data-theme="light"] .doctor-band .btn-secondary { color: var(--white); border-color: var(--border-strong); }

/* Floating cards in light mode */
[data-theme="light"] .floating-card {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Map embed — remove dark-mode filter */
[data-theme="light"] .map-embed iframe {
  filter: none;
  opacity: 1;
}

/* Social proof section divider */
[data-theme="light"] .social-proof::before {
  background: linear-gradient(180deg, transparent, rgba(63,167,158,0.18), transparent);
}

/* body noise overlay — more subtle on light */
[data-theme="light"] body::before { opacity: 0.15; }

/* Doctor hero photo ring — dashed border on light bg */
[data-theme="light"] .doctor-photo-ring {
  border-color: rgba(63, 167, 158, 0.35);
}
