/* ===== Chao Dental Studio - Design System (v2) ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1E3A4C;
  --navy-dk: #142d3c;
  --seafoam: #DCEEE9;
  --seafoam-dk: #c4e0d8;
  --slate: #5B6B72;
  --primary: #1E3A4C;
  --primary-dk: #142d3c;
  --primary-lt: #DCEEE9;
  --primary-glow: rgba(30,58,76,0.15);
  --accent: #3a7ca5;
  --accent-dk: #2d6384;
  --dark: #1E3A4C;
  --dark-lt: #334155;
  --gray-600: #5B6B72;
  --gray-400: #94a3b8;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --text: #4A4B4C;
  --font: 'Poppins', system-ui, -apple-system, sans-serif;
  --serif: 'Poppins', system-ui, sans-serif;
  --sans: 'Poppins', system-ui, -apple-system, sans-serif;
  --nav-h: 64px;
  --topbar-h: 38px;
  --max-w: 1200px;
}
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + var(--topbar-h)); }
body { font-family: var(--font); color: var(--text); line-height: 1.65; background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
.container { width: 92%; max-width: var(--max-w); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Utilities */
.section { padding: clamp(60px,8vw,100px) 0; }
.section-alt { background: var(--gray-50); }
.section-teal { background: var(--primary-lt); }
.section-dark { background: var(--primary); color: var(--white); }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); }
.section-dark .eyebrow { color: var(--primary-lt); }
.section-title { font-family: var(--serif); font-size: clamp(28px,4vw,42px); line-height: 1.2; color: var(--dark); }
.section-dark .section-title { color: var(--white); }
.section-sub { font-size: 17px; color: var(--gray-600); max-width: 600px; margin-top: 12px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 15px; transition: all 0.3s ease; text-decoration: none; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dk); transform: translateY(-2px); box-shadow: 0 8px 25px var(--primary-glow); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dk); transform: translateY(-2px); }

/* ===== Top Contact Bar ===== */
.topbar { background: var(--navy); color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 500; letter-spacing: 0.02em; height: var(--topbar-h); display: flex; align-items: center; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-left a { display: inline-flex; align-items: center; gap: 5px; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.topbar-left a:hover { color: #fff; }
.topbar-left svg { flex-shrink: 0; opacity: 0.7; }
.topbar-right { color: rgba(255,255,255,0.6); font-size: 11px; letter-spacing: 0.04em; }

/* ===== Nav (v2) ===== */
.nav { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.98); backdrop-filter: blur(14px); height: var(--nav-h); border-bottom: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s; }
.nav.scrolled { border-bottom-color: var(--gray-200); box-shadow: 0 2px 20px rgba(0,0,0,0.05); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links > a, .nav-dropdown > span, .nav-dropdown > a, a.nav-trigger { font-size: 12px; font-weight: 600; color: var(--slate); letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; cursor: pointer; text-decoration: none; font-family: inherit; }
.nav-links > a:hover, .nav-dropdown:hover > span, .nav-dropdown:hover > a, .nav-dropdown:hover a.nav-trigger { color: var(--navy); }
a.nav-trigger { font-size: 12px !important; color: #5B6B72 !important; font-weight: 600 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; text-decoration: none !important; }
.nav-dropdown:hover a.nav-trigger { color: var(--navy) !important; }
.nav-dropdown { position: relative; padding-bottom: 12px; margin-bottom: -12px; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: -16px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 10px 0; min-width: 220px; box-shadow: 0 12px 36px rgba(0,0,0,0.1); z-index: 100; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 8px 20px; font-size: 13px; font-weight: 500; color: var(--dark); transition: all 0.2s; text-transform: none; letter-spacing: 0; }
.nav-dropdown-menu a:hover { background: var(--seafoam); color: var(--navy); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: var(--white) !important; padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 13px; letter-spacing: 0.02em; transition: all 0.3s; }
.nav-cta:hover { background: var(--navy-dk); transform: translateY(-1px); box-shadow: 0 6px 20px var(--primary-glow); }
.cta-arrow { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.hamburger { display: none; width: 28px; height: 20px; flex-direction: column; justify-content: space-between; cursor: pointer; }
.hamburger span { display: block; height: 2.5px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.nav-phone { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: var(--slate); transition: color 0.2s; white-space: nowrap; }
.nav-phone:hover { color: var(--navy); }

/* ── Contact Form ── */
.contact-form-section { padding: clamp(60px,8vw,100px) 0; background: var(--gray-50); }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-form-info h2 { font-family: var(--serif); font-size: clamp(28px,4vw,38px); color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.contact-form-info p { color: var(--gray-600); font-size: 16px; line-height: 1.75; margin-bottom: 20px; }
.contact-form-card { background: #fff; border-radius: 16px; padding: 36px; border: 1px solid var(--gray-200); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.contact-form-card h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea { padding: 12px 16px; border: 1px solid var(--gray-200); border-radius: 10px; font-family: var(--font); font-size: 15px; color: var(--dark); transition: border-color 0.2s, box-shadow 0.2s; background: #fff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(58,124,165,0.12); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: #fff; padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 15px; border: none; cursor: pointer; transition: all 0.3s; font-family: var(--font); }
.form-submit:hover { background: var(--navy-dk); transform: translateY(-2px); box-shadow: 0 8px 25px var(--primary-glow); }

/* ── Event Highlight Callout ── */
.event-callout { background: linear-gradient(135deg, var(--navy), #2F4A65); border-radius: 16px; padding: 32px; margin: 32px 0; color: #fff; position: relative; overflow: hidden; }
.event-callout::before { content: ''; position: absolute; top: -30px; right: -30px; width: 120px; height: 120px; border-radius: 50%; background: rgba(220,238,233,0.12); pointer-events: none; }
.event-callout .event-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--seafoam); margin-bottom: 8px; }
.event-callout h3 { font-family: var(--serif); font-size: clamp(22px,3vw,28px); font-weight: 700; margin-bottom: 12px; }
.event-callout p { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 20px; max-width: 520px; }
.event-callout .event-cta { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--navy); padding: 12px 28px; border-radius: 50px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.25s; }
.event-callout .event-cta:hover { background: var(--seafoam); transform: translateY(-2px); }
.event-features { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.event-feature { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); }
.event-feature svg { flex-shrink: 0; }

@media (max-width: 900px) {
  .contact-form-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}

/* Mobile Nav */
.mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 2000; padding: 100px 32px 40px; flex-direction: column; gap: 14px; opacity: 0; pointer-events: none; transition: opacity 0.3s; overflow-y: auto; }
.mobile-nav.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-nav a { font-size: 18px; font-weight: 600; color: var(--navy); padding: 10px 0; border-bottom: 1px solid var(--gray-200); }
.mobile-close { position: absolute; top: 24px; right: 24px; font-size: 32px; color: var(--navy); cursor: pointer; background: none; border: none; }

/* ===== Hero V2 — Split Layout ===== */
.hero-v2 { background: var(--white); overflow: hidden; padding: clamp(32px, 4vw, 56px) 0 0; position: relative; border-bottom: none; }
.hero-v2-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; min-height: 560px; }

/* Left Column */
.hero-v2-left { position: relative; z-index: 2; padding-bottom: 48px; }
.hero-v2-eyebrow { font-family: 'Poppins', sans-serif; font-style: italic; font-weight: 500; font-size: 15px; color: var(--slate); margin-bottom: 16px; letter-spacing: 0.02em; }
.hero-v2-headline { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(34px, 4.5vw, 52px); line-height: 1.12; color: var(--navy); margin-bottom: 20px; }
.hero-v2-headline em { font-style: italic; color: var(--navy); opacity: 0.85; }
.hero-v2-sub { font-size: 16px; line-height: 1.75; color: var(--slate); max-width: 520px; margin-bottom: 28px; }

/* CTAs */
.hero-v2-ctas { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.btn-navy-pill { display: inline-flex; align-items: center; gap: 10px; background: var(--navy); color: var(--white); padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 15px; transition: all 0.3s; text-decoration: none; }
.btn-navy-pill:hover { background: var(--navy-dk); transform: translateY(-2px); box-shadow: 0 8px 28px var(--primary-glow); }
.btn-navy-pill .cta-arrow { background: rgba(255,255,255,0.2); }
.hero-v2-link { font-size: 15px; font-weight: 600; color: var(--navy); transition: opacity 0.2s; }
.hero-v2-link:hover { opacity: 0.7; }

/* Trust Line */
.hero-v2-trust { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.trust-chip { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; color: var(--slate); background: var(--gray-50); border: 1px solid var(--gray-200); padding: 5px 12px; border-radius: 20px; white-space: nowrap; }

/* Sparkle accents */
.sparkle { position: absolute; pointer-events: none; z-index: 1; }
.sparkle-1 { top: 8px; left: 340px; animation: sparkle-float 4s ease-in-out infinite; }
.sparkle-2 { top: 60px; left: 420px; animation: sparkle-float 5s ease-in-out 1s infinite; }
@keyframes sparkle-float { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-6px) rotate(8deg); } }

/* Right Column */
.hero-v2-right { position: relative; display: flex; align-items: flex-end; justify-content: center; min-height: 560px; padding-top: 20px; }
.hero-v2-blob { position: absolute; width: 78%; height: 82%; bottom: 0; right: 8%; background: var(--seafoam); border-radius: 48% 52% 58% 42% / 42% 58% 42% 58%; z-index: 0; }
.hero-v2-photo { position: relative; z-index: 1; max-height: 540px; width: auto; max-width: 90%; object-fit: contain; object-position: bottom center; filter: drop-shadow(0 12px 40px rgba(30,58,76,0.15)); }

/* Floating icon badges */
.float-badge { position: absolute; z-index: 3; width: 46px; height: 46px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(0,0,0,0.08); border: 1px solid var(--gray-200); }
.float-badge-1 { top: 18%; right: 0%; animation: badge-bob 3.5s ease-in-out infinite; }
.float-badge-2 { top: 50%; left: 2%; animation: badge-bob 4s ease-in-out 0.5s infinite; }
.float-badge-3 { bottom: 30%; right: -2%; animation: badge-bob 3.8s ease-in-out 1s infinite; }
@keyframes badge-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Doctor name card */
.doctor-card { position: absolute; z-index: 4; bottom: 10%; left: -8%; background: var(--white); border-radius: 14px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.10); border: 1px solid var(--gray-200); min-width: 230px; }
.doctor-card-thumb { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; object-position: center top; flex-shrink: 0; border: 2px solid var(--seafoam); }
.doctor-card-info { display: flex; flex-direction: column; }
.doctor-card-info strong { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.doctor-card-info span { font-size: 11px; color: var(--slate); font-weight: 500; }

/* New Patient Special Card */
.special-card { position: absolute; z-index: 4; top: 2%; left: -4%; background: var(--white); border-radius: 16px; padding: 18px 16px; box-shadow: 0 8px 30px rgba(0,0,0,0.10); border: 1px solid var(--gray-200); width: 190px; text-align: center; }
.special-card-header { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 6px; }
.special-card-price { font-size: 28px; font-weight: 800; color: var(--navy); line-height: 1; }
.special-card-price span { font-size: 14px; font-weight: 500; color: var(--slate); }
.special-card-desc { font-size: 11px; color: var(--slate); line-height: 1.4; margin: 6px 0 12px; }
.special-card-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--seafoam); color: var(--navy); padding: 8px 16px; border-radius: 50px; font-weight: 600; font-size: 12px; transition: all 0.2s; text-decoration: none; }
.special-card-btn:hover { background: var(--seafoam-dk); }
.special-card-btn .cta-arrow { width: 20px; height: 20px; background: var(--navy); border-radius: 50%; }
.special-card-btn .cta-arrow svg { stroke: var(--white); }

/* Legacy proof bar (removed from hero, kept for reference) */
.proof-bar { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 28px 0; }
.proof-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.proof-stat .number { font-family: var(--font); font-size: 36px; font-weight: 700; color: var(--navy); line-height: 1; }
.proof-stat .label { font-size: 13px; color: var(--slate); font-weight: 600; margin-top: 4px; }

/* ===== Stats Bar ===== */
.stats-bar { background: #F7FBFA; border-bottom: 1px solid var(--gray-200); border-top: 1px solid var(--gray-200); padding: 28px 0; margin-top: -40px; position: relative; z-index: 3; }
.stats-bar-inner { display: flex; align-items: center; justify-content: center; gap: 0; }
.stat-item { flex: 1; text-align: center; }
.stat-number { display: block; font-family: var(--font); font-size: clamp(32px, 3.5vw, 44px); font-weight: 700; color: var(--navy); line-height: 1; letter-spacing: -0.02em; }
.stat-label { display: block; font-size: 11px; font-weight: 600; color: var(--slate); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 6px; }
.stat-divider { width: 1px; height: 48px; background: var(--seafoam); flex-shrink: 0; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { position: relative; border-radius: 16px; overflow: hidden; }
.about-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 16px; }
.about-img-badge { position: absolute; bottom: 20px; right: 20px; background: var(--primary); color: var(--white); padding: 14px 20px; border-radius: 12px; text-align: center; }
.about-img-badge .num { font-size: 28px; font-weight: 800; line-height: 1; }

/* About V2 — overlapping photo cluster */
.about-grid-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-photos-wrap { position: relative; width: 100%; }
.about-photo-main { width: 100%; border-radius: 20px; display: block; object-fit: cover; aspect-ratio: 4/3; }
.about-photo-inset { position: absolute; bottom: -24px; right: -20px; width: 140px; height: 170px; border-radius: 14px; overflow: hidden; border: 5px solid #fff; box-shadow: 0 8px 30px rgba(30,58,76,0.15); z-index: 2; }
.about-photo-inset img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-ring-badge { position: absolute; top: -20px; left: -16px; width: 96px; height: 96px; z-index: 2; }
.about-ring-svg { width: 100%; height: 100%; filter: drop-shadow(0 4px 12px rgba(30,58,76,0.2)); }
.about-accent { position: absolute; z-index: 1; font-size: 20px; color: var(--seafoam); }
.about-accent-1 { top: 12px; right: 30px; color: var(--navy); font-size: 16px; opacity: 0.5; }
.about-accent-2 { bottom: 30px; left: -8px; color: var(--seafoam); font-size: 28px; font-weight: 700; opacity: 0.6; }

/* About V2 — checklist */
.about-features-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.about-feat { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--dark); font-weight: 500; }
.about-feat-icon { flex-shrink: 0; display: flex; align-items: center; }
.about-img-badge .txt { font-size: 11px; font-weight: 600; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.about-feature { display: flex; align-items: center; gap: 8px; }
.about-feature-icon { width: 22px; height: 22px; border-radius: 6px; background: var(--primary-lt); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.about-feature span { font-size: 14px; font-weight: 600; color: var(--dark); }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; padding: 28px 24px; transition: all 0.3s; text-decoration: none; display: block; }
.service-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 12px 30px var(--primary-glow); }
.service-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--primary-lt); color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 20px; }
.service-card h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.service-card p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }
.service-card .learn-more { font-size: 13px; font-weight: 700; color: var(--primary); margin-top: 10px; display: inline-flex; align-items: center; gap: 4px; }

/* Specials */
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.offer-card { background: var(--white); border-radius: 14px; overflow: hidden; border: 1px solid var(--gray-200); transition: all 0.3s; }
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.offer-top { background: linear-gradient(135deg, var(--primary), var(--primary-dk)); padding: 24px; color: var(--white); text-align: center; }
.offer-top .price { font-family: var(--serif); font-size: 42px; line-height: 1; }
.offer-top h4 { font-size: 17px; font-weight: 700; margin-top: 6px; }
.offer-body { padding: 24px; }
.offer-body ul { list-style: none; }
.offer-body li { padding: 5px 0; font-size: 14px; color: var(--gray-600); display: flex; align-items: start; gap: 8px; }
.offer-body li::before { content: "✓"; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.offer-body .btn { width: 100%; justify-content: center; margin-top: 16px; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; padding: 28px; position: relative; }
.testimonial-card::before { content: '\201C'; font-family: var(--serif); font-size: 60px; color: var(--primary-lt); position: absolute; top: 10px; right: 20px; line-height: 1; }
.testimonial-stars { color: #fbbf24; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--gray-600); line-height: 1.6; font-style: italic; }
.testimonial-author { margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-lt); color: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; }
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-source { font-size: 12px; color: var(--gray-400); }

/* Insurance */
.insurance-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 32px; }
.insurance-tag { padding: 12px 24px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px; font-weight: 700; font-size: 14px; color: var(--dark); transition: all 0.2s; }
.insurance-tag:hover { border-color: var(--primary); background: var(--primary-lt); }

/* Location */
.location-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-200); max-width: 800px; margin: 40px auto 0; }
.location-map { height: 280px; background: var(--gray-100); }
.location-map iframe { width: 100%; height: 100%; border: 0; }
.location-info { padding: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.location-item { display: flex; align-items: start; gap: 12px; margin-bottom: 14px; }
.location-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--primary-lt); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.location-details h4 { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.location-details p, .location-details a { font-size: 14px; color: var(--gray-600); }

/* CTA Banner */
.cta-banner { padding: clamp(50px,6vw,80px) 0; text-align: center; }
.cta-banner h2 { font-family: var(--serif); font-size: clamp(26px,3.5vw,38px); margin-bottom: 12px; }
.cta-banner p { font-size: 17px; opacity: 0.85; max-width: 550px; margin: 0 auto 24px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { margin-top: 12px; font-size: 14px; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 13px; }
.footer-bottom a { margin-left: 16px; }
.footer-bottom a:hover { color: var(--white); }

/* Floating CTA */
.floating-cta { display: none; }

/* Fade animation */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Service Page Layout */

/* ── Inner Page Hero (Oakwood-style) ── */
.svc-hero {
  background: radial-gradient(ellipse at 75% 75%, rgba(47,74,101,0.9) 0%, transparent 55%),
              linear-gradient(160deg, #1a2d42 0%, #2F4A65 60%, #345272 100%);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}
.svc-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(26,45,66,0.3), transparent);
  pointer-events: none;
}
.svc-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.svc-hero .hero-breadcrumb {
  grid-column: 1 / -1;
  margin-bottom: -16px;
}
.svc-hero .hero-breadcrumb a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.svc-hero .hero-breadcrumb a:hover {
  color: var(--accent, #3a7ca5);
}
.svc-hero .hero-content {
  padding-bottom: 80px;
  text-align: left;
}
.svc-hero .hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent, #3a7ca5);
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
}
.svc-hero .hero-eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--accent, #3a7ca5);
  border-radius: 1px;
}
.svc-hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 48px);
  color: var(--white, #fff);
  line-height: 1.12;
  margin-bottom: 20px;
  text-align: left;
}
.svc-hero .hero-text {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}
.svc-hero .hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent, #3a7ca5);
  color: #fff;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(58,124,165,0.3);
}
.svc-hero .hero-cta-btn:hover {
  background: #2d6a8f;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(58,124,165,0.4);
}
.svc-hero .hero-image {
  align-self: end;
  position: relative;
  z-index: 1;
  width: 100%;
}
.svc-hero .hero-image img {
  width: 100%;
  height: 420px;
  border-radius: 20px 20px 0 0;
  display: block;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.2);
}
.svc-hero .breadcrumb { display: none; } /* Hide old breadcrumb */

@media (max-width: 768px) {
  .svc-hero .container { grid-template-columns: 1fr; gap: 24px; }
  .svc-hero .hero-content { padding-bottom: 32px; }
  .svc-hero .hero-image { display: none; }
  .svc-hero .hero-breadcrumb { margin-bottom: 0; }
}

.svc-layout { display: grid; grid-template-columns: 1fr 340px; gap: 50px; padding: 60px 0; }
.svc-content { color: var(--text); line-height: 1.8; }
.svc-content h2 { font-family: var(--serif); font-size: 26px; color: var(--dark); margin: 36px 0 16px; line-height: 1.3; }
.svc-content h2:first-child { margin-top: 0; }
.svc-content h3 { font-size: 19px; color: var(--dark); margin: 24px 0 12px; font-weight: 700; }
.svc-content p { margin-bottom: 16px; font-size: 16px; }
.svc-content ul, .svc-content ol { margin: 12px 0 16px 24px; }
.svc-content li { margin-bottom: 8px; font-size: 15px; }
.svc-content .faq-q { font-weight: 700; color: var(--dark); }

/* Service Sidebar */
.svc-sidebar { position: relative; }
.svc-sidebar-inner { position: sticky; top: calc(var(--nav-h) + 24px); }
.sidebar-card { background: var(--primary); color: var(--white); border-radius: 16px; padding: 28px; margin-bottom: 20px; }
.sidebar-card h4 { font-family: var(--serif); font-size: 18px; margin-bottom: 16px; }
.sidebar-card .phone-link { display: flex; align-items: center; gap: 8px; font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 20px; }
.sidebar-hours { font-size: 14px; line-height: 1.8; }
.sidebar-hours .day { font-weight: 600; }
.sidebar-links { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; padding: 24px; }
.sidebar-links h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.sidebar-links a { display: block; padding: 8px 0; font-size: 14px; color: var(--gray-600); border-bottom: 1px solid var(--gray-100); transition: color 0.2s; }
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--primary); }
.sidebar-links a.active { color: var(--primary); font-weight: 700; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .topbar-left { gap: 16px; }
  .topbar-right { display: none; }
  .hero-v2-inner { grid-template-columns: 1fr; gap: 20px; }
  .hero-v2-left { padding-bottom: 20px; text-align: center; }
  .hero-v2-sub { margin-left: auto; margin-right: auto; }
  .hero-v2-ctas { justify-content: center; }
  .hero-v2-trust { justify-content: center; }
  .hero-v2-right { min-height: 400px; }
  .special-card { left: 0; top: 2%; }
  .doctor-card { left: 0; bottom: 8%; }
  .sparkle { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-grid-v2 { grid-template-columns: 1fr; gap: 36px; }
  .about-photos-wrap { max-width: 500px; margin: 0 auto; }
  .about-features-v2 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-featured-grid { grid-template-columns: 1fr 1fr; }
  .svc-catalog-grid { grid-template-columns: 1fr 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .proof-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .location-info { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-sidebar { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .topbar { display: none; }
  .nav { top: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-v2-headline { font-size: 30px; }
  .hero-v2-right { min-height: 340px; }
  .stats-bar-inner { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .stat-item { flex: 0 0 calc(50% - 10px); }
  .svc-featured-grid { grid-template-columns: 1fr; }
  .svc-catalog-grid { grid-template-columns: 1fr; }
  .ins-banner { min-height: 340px; }
  .ins-pay-tags { gap: 8px; }
  .ins-pay-tag { font-size: 12px; padding: 6px 14px; }
  .rev-spotlight { grid-template-columns: 1fr; gap: 32px; }
  .rev-rating-card { bottom: -16px; left: 0; }
  .rev-photo { aspect-ratio: 4/3; }
  .rev-quote-text { font-size: 17px; }
  .hero-v2-photo { max-height: 380px; }
  .float-badge-1, .float-badge-3 { display: none; }
  .special-card { position: relative; top: auto; left: auto; width: 100%; margin-bottom: 16px; }
  .doctor-card { position: relative; left: auto; bottom: auto; width: 100%; margin-bottom: 16px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .floating-cta { display: flex; position: fixed; bottom: 20px; right: 20px; width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: var(--white); align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 4px 20px var(--primary-glow); z-index: 900; }
}

/* ── Service Card Icons (no emoji) ── */
.service-icon:empty {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  margin-bottom: 12px;
  position: relative;
}
.service-icon:empty::after {
  content: '+';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
}

/* ── Service Card SVG Icons ── */
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.service-icon svg {
  stroke: #fff;
}

/* ── Services V2: Two-Tier Layout ── */
.svc-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.svc-accent { position: absolute; z-index: 0; pointer-events: none; }
.svc-accent-1 { top: -10px; left: 40px; color: var(--seafoam); font-size: 18px; opacity: 0.6; }
.svc-accent-2 { top: 20px; right: 60px; color: var(--navy); font-size: 22px; font-weight: 700; opacity: 0.15; }
.svc-accent-3 { bottom: -8px; right: 120px; color: var(--seafoam); font-size: 14px; opacity: 0.5; }

/* Tier 1 — Featured cards */
.svc-featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 44px; }
.svc-featured-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px;
  padding: 32px 26px; text-decoration: none; display: flex; flex-direction: column;
  position: relative; transition: all 280ms ease;
}
.svc-featured-card:hover {
  background: var(--navy); border-color: var(--navy);
  transform: translateY(-6px); box-shadow: 0 16px 40px rgba(30,58,76,0.22);
}
.svc-featured-card:hover .svc-icon-badge { background: rgba(255,255,255,0.18); }
.svc-featured-card:hover h4 { color: #fff; }
.svc-featured-card:hover h4::after { opacity: 1; }
.svc-featured-card:hover p { color: rgba(255,255,255,0.72); }
.svc-featured-card:hover .svc-link { color: #fff; }
.svc-featured-card:hover .svc-arrow { background: rgba(255,255,255,0.2); color: #fff; }

.svc-icon-badge {
  width: 52px; height: 52px; border-radius: 14px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: background 280ms ease;
}
.svc-featured-card h4 {
  font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px;
  position: relative; transition: color 280ms ease;
}
.svc-featured-card h4::after {
  content: ''; position: absolute; top: 6px; right: -12px;
  width: 6px; height: 6px; border-radius: 50%; background: #5B8F9B;
  opacity: 0; transition: opacity 280ms ease;
}
.svc-featured-card p { font-size: 14px; color: var(--slate); line-height: 1.65; flex: 1; transition: color 280ms ease; }
.svc-link {
  font-size: 14px; font-weight: 600; color: var(--navy); margin-top: 16px;
  display: inline-flex; align-items: center; gap: 8px; transition: color 280ms ease;
}
.svc-arrow {
  width: 24px; height: 24px; border-radius: 50%; background: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 280ms ease;
}

/* Navy pill button */
.btn-navy-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: #fff; border: none; border-radius: 50px;
  padding: 14px 32px; font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all 0.25s; cursor: pointer;
}
.btn-navy-pill:hover { background: #15303f; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(30,58,76,0.25); }
.btn-pill-arrow {
  width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
}

/* Tier 2 — Catalog grid */
.svc-catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-catalog-card {
  background: #fff; border: 1px solid #E5EAE8; border-radius: 12px;
  padding: 24px 20px; text-decoration: none; display: flex; flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.svc-catalog-card:hover { border-color: var(--navy); box-shadow: 0 4px 16px rgba(30,58,76,0.08); }
.svc-icon-sm { width: 40px; height: 40px; border-radius: 10px; margin-bottom: 14px; }
.svc-catalog-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.svc-catalog-card p { font-size: 13px; color: var(--slate); line-height: 1.6; flex: 1; }
.svc-link-sm { font-size: 13px; font-weight: 600; color: var(--navy); margin-top: 12px; display: inline-block; }

/* ── Insurance & Payment — Photo Banner ── */
.ins-banner {
  position: relative; width: 100%; min-height: 420px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0; /* full-width, no outer radius */
}
.ins-banner-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
}
.ins-banner-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, rgba(30,58,76,0.82) 0%, rgba(30,58,76,0.60) 60%, rgba(30,58,76,0.45) 100%);
}
.ins-banner-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 620px; padding: 60px 24px;
}
.ins-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: #fff; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.ins-headline {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: clamp(28px, 4vw, 42px); line-height: 1.15;
  color: #fff; margin-bottom: 16px;
}
.ins-sub {
  font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.82);
  max-width: 520px; margin: 0 auto 28px;
}
.ins-cta-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--navy); border-radius: 50px;
  padding: 13px 28px; font-size: 15px; font-weight: 600;
  text-decoration: none; transition: all 0.25s;
}
.ins-cta-pill:hover { background: #f0f4f3; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.ins-cta-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
}

/* Decorative accents on banner */
.ins-accent { position: absolute; z-index: 2; pointer-events: none; color: var(--seafoam); }
.ins-accent-1 { top: 28px; right: 48px; font-size: 20px; opacity: 0.5; }
.ins-accent-2 { bottom: 32px; left: 40px; font-size: 26px; font-weight: 700; opacity: 0.35; }

/* Payment Options Row */
.ins-pay-row { background: #F7FBFA; padding: 32px 0 28px; text-align: center; }
.ins-pay-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 16px; }
.ins-pay-tag {
  font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.02em;
  border: 1px solid #D5DDD9; border-radius: 50px; padding: 8px 20px;
  background: #fff; white-space: nowrap;
}
.ins-pay-note { font-size: 14px; color: var(--slate); margin: 0; }

/* ── Testimonial Spotlight Carousel ── */
.rev-spotlight {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.rev-photo-col { position: relative; }
.rev-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 16px;
  display: block;
}
.rev-rating-card {
  position: absolute; bottom: -24px; left: -20px; z-index: 2;
  background: var(--navy); color: #fff; border-radius: 14px;
  padding: 20px 24px; min-width: 180px; box-shadow: 0 12px 32px rgba(30,58,76,0.3);
}
.rev-rating-score {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 36px; line-height: 1;
}
.rev-rating-max { font-size: 18px; font-weight: 400; opacity: 0.6; }
.rev-rating-label { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 4px; line-height: 1.4; }
.rev-rating-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.15); margin: 12px 0; }
.rev-rating-stars { color: #F5C542; font-size: 16px; letter-spacing: 2px; }
.rev-rating-tagline { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 2px; letter-spacing: 0.5px; }

.rev-quote-col { position: relative; }
.rev-quote-mark { position: absolute; top: -10px; left: 0; pointer-events: none; }
.rev-slide { display: none; }
.rev-slide.active { display: block; animation: revFadeIn 0.4s ease; }
@keyframes revFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.rev-quote-text {
  font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 20px;
  line-height: 1.65; color: var(--navy); margin: 16px 0 28px; position: relative; z-index: 1;
}
.rev-author { display: flex; align-items: center; gap: 14px; }
.rev-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--seafoam);
  color: var(--navy); font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rev-author-name { font-weight: 700; font-size: 15px; color: var(--navy); }
.rev-author-source { font-size: 13px; color: var(--slate); margin-top: 2px; }

.rev-nav { display: flex; gap: 12px; margin-top: 32px; }
.rev-nav-btn {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy); border: none;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all 0.25s;
}
.rev-nav-btn:hover { background: #15303f; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(30,58,76,0.25); }

.rev-read-all {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--navy); border: 2px solid var(--navy); border-radius: 50px;
  padding: 12px 28px; font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all 0.25s;
}
.rev-read-all:hover { background: var(--navy); color: #fff; }
.rev-read-arrow { display: inline-flex; align-items: center; }
