/* =====================================================
   PEOPLES DIAGNOSTICS — Design System v3.0
   "Clinical Precision Meets Warm Authority"
   ===================================================== */

/* ── TOKENS ── */
:root {
  /* Primary: Deep warm teal */
  --teal:       #0a5e66;
  --teal-dk:    #073f45;
  --teal-lt:    #14919b;
  --teal-bg:    #ebf7f8;
  --teal-mid:   #c8eaed;

  /* Accent: Warm copper */
  --copper:     #c17f3a;
  --copper-lt:  #f5e6d0;
  --copper-glow:#d4943f;
  --gold:       #c17f3a;    /* alias for backward compat */
  --gold-lt:    #f5e6d0;

  /* Status */
  --green:      #1d9960;
  --green-bg:   #e8f9f0;

  /* Neutrals: Warm-shifted */
  --ink:        #121a21;
  --ink-80:     #1e2c38;
  --gray-900:   #15202b;
  --gray-700:   #3a4a5a;
  --gray-500:   #64748b;
  --gray-300:   #cbd5e1;
  --gray-100:   #f1f5f9;
  --gray-50:    #f8fafc;
  --white:      #ffffff;

  /* Background tints */
  --warm-cream: #fdfbf7;
  --cool-slate: #f0f4f8;

  /* Semantic */
  --bg:         var(--white);
  --surface:    var(--warm-cream);
  --border:     #d6dce4;
  --text:       var(--gray-900);
  --text-muted: var(--gray-500);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --font-mono:    'Space Mono', monospace;

  /* Spacing scale */
  --s1: 4px;  --s2: 8px;  --s3: 12px;  --s4: 16px;
  --s5: 20px; --s6: 24px; --s7: 32px;  --s8: 40px;
  --s9: 48px; --s10: 64px; --s11: 80px; --s12: 96px;

  /* Border radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,0,0,.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 28px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 56px rgba(0,0,0,.11);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
  --dur: .22s;
  --dur-slow: .45s;

  /* Gradients */
  --accent-line: linear-gradient(90deg, var(--teal), var(--copper));

  /* Layout */
  --nav-h: 72px;
  --max-w: 1200px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5 { line-height: 1.15; }

/* ── CONTAINER ── */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--s6); }
@media (max-width: 640px) { .container { padding-inline: var(--s5); } }

/* ── TYPOGRAPHY ── */
.label { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: var(--s3); }
.h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 4.8vw, 3.8rem); font-weight: 600; letter-spacing: -.02em; color: var(--ink); }
.h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 600; letter-spacing: -.015em; color: var(--ink); }
.h3 { font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 1.65rem); font-weight: 600; color: var(--ink); }
.lead { font-size: 1.075rem; color: var(--gray-500); line-height: 1.7; max-width: 560px; }
.section-header { margin-bottom: var(--s10); }
.section-header.center { text-align: center; }
.section-header.center .lead { margin-inline: auto; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: var(--s2); padding: 13px 26px; border-radius: var(--r-full); font-size: 14px; font-weight: 600; transition: all var(--dur) var(--ease); white-space: nowrap; line-height: 1; }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dk); box-shadow: 0 6px 20px rgba(10,94,102,.3); transform: translateY(-1px); }
.btn-secondary { background: var(--white); color: var(--teal); border: 2px solid var(--teal); }
.btn-secondary:hover { background: var(--teal); color: var(--white); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.1); color: var(--white); border: 1.5px solid rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.6); transform: translateY(-1px); }
.btn-wa { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #1ebe5b; box-shadow: 0 6px 20px rgba(37,211,102,.35); transform: translateY(-1px); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 34px; font-size: 15.5px; }
.btn-icon { padding: 13px; border-radius: var(--r-md); }

/* Pulse glow for primary CTA in nav */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(10,94,102,.4); }
  50% { box-shadow: 0 0 0 8px rgba(10,94,102,0); }
}
.nav-actions .btn-primary { animation: pulse-glow 3s ease-in-out infinite; }
.nav-actions .btn-primary:hover { animation: none; }

/* ── BADGE / TAG ── */
.badge { display: inline-flex; align-items: center; gap: var(--s2); padding: 4px 12px; border-radius: var(--r-full); font-size: 12px; font-weight: 600; }
.badge-teal { background: var(--teal-bg); color: var(--teal); border: 1px solid var(--teal-mid); }
.badge-gold, .badge-copper { background: var(--copper-lt); color: var(--copper); }
.badge-green { background: var(--green-bg); color: var(--green); }

/* ── CARD ── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-body { padding: var(--s8) var(--s7); }
@media (max-width: 640px) { .card-body { padding: var(--s6); } }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: var(--s11) 0; }

/* ── SECTION ── */
.section { padding: var(--s12) 0; }
.section-alt { background: var(--warm-cream); }
.section-cool { background: var(--cool-slate); }
.section-dark { background: var(--ink); }
.section-teal { background: var(--teal); }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 900; background: rgba(255,255,255,.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); transition: box-shadow var(--dur) var(--ease), border-color var(--dur); border-bottom: 1px solid transparent; }
.nav::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent-line); opacity: 0; transition: opacity var(--dur); }
.nav.elevated { box-shadow: var(--shadow-sm); border-bottom-color: rgba(0,0,0,.04); }
.nav.elevated::before { opacity: 1; }
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s6); padding: var(--s3) 0; }
.nav-logo { display: flex; align-items: center; gap: var(--s3); text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: var(--s2); list-style: none; }
.nav-links li { display: flex; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--gray-700); padding: var(--s1) var(--s4); border-radius: var(--r-sm); transition: color var(--dur); white-space: nowrap; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--copper); transform: translateX(-50%); transition: width .3s var(--ease); border-radius: 2px; }
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 60%; }
.nav-links a.active { color: var(--teal); font-weight: 600; }
.nav-links a.active::after { width: 60%; background: var(--teal); }
.nav-actions { display: flex; align-items: center; gap: var(--s3); flex-shrink: 0; }
.nav-tel { font-size: 13px; font-weight: 600; color: var(--teal); display: flex; align-items: center; gap: 6px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: var(--s2); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer — slides in from right */
.nav-drawer-overlay { position: fixed; inset: 0; top: var(--nav-h); background: rgba(18,26,33,.5); z-index: 898; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); }
.nav-drawer-overlay.open { opacity: 1; pointer-events: auto; }
.nav-drawer { position: fixed; top: var(--nav-h); right: 0; bottom: 0; width: 300px; background: var(--white); box-shadow: var(--shadow-lg); z-index: 899; padding: var(--s6); transform: translateX(100%); transition: transform .35s var(--ease); }
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a { display: flex; align-items: center; gap: var(--s3); padding: 14px 0; font-size: 15px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--gray-100); opacity: 0; transform: translateX(20px); transition: opacity .3s, transform .3s; }
.nav-drawer.open a { opacity: 1; transform: none; }
.nav-drawer.open a:nth-child(1) { transition-delay: .05s; }
.nav-drawer.open a:nth-child(2) { transition-delay: .1s; }
.nav-drawer.open a:nth-child(3) { transition-delay: .15s; }
.nav-drawer.open a:nth-child(4) { transition-delay: .2s; }
.nav-drawer.open a:nth-child(5) { transition-delay: .25s; }
.nav-drawer.open a:nth-child(6) { transition-delay: .3s; }
.nav-drawer.open a:nth-child(7) { transition-delay: .35s; }
.nav-drawer a:last-child { border: none; color: var(--teal); font-weight: 700; }
.nav-drawer a span.icon { width: 32px; height: 32px; background: var(--teal-bg); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 15px; }
@media (max-width: 900px) { .nav-links { display: none; } .hamburger { display: flex; } .nav-tel { display: none; } }
@media (max-width: 640px) { .nav-actions .btn { display: none; } }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero { padding-top: var(--nav-h); position: relative; overflow: hidden; background: radial-gradient(ellipse at 30% 20%, var(--teal-bg) 0%, var(--warm-cream) 40%, var(--white) 70%); }
/* Decorative geometric pattern */
.hero::before { content: ''; position: absolute; top: -60px; right: -60px; width: 500px; height: 500px; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L55 17.5 L55 42.5 L30 55 L5 42.5 L5 17.5 Z' fill='none' stroke='%230a5e66' stroke-width='0.5'/%3E%3C/svg%3E"); opacity: .04; pointer-events: none; z-index: 0; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s10); align-items: center; min-height: calc(100vh - var(--nav-h)); padding: var(--s12) 0; position: relative; z-index: 1; }
.hero-eyebrow { display: flex; align-items: center; gap: var(--s3); margin-bottom: var(--s6); }
.hero-open { display: flex; align-items: center; gap: var(--s2); padding: 6px 14px; border-radius: var(--r-full); border: 1.5px solid rgba(29,153,96,.3); background: rgba(29,153,96,.07); font-size: 12.5px; font-weight: 600; color: var(--green); }
.hero-open::before { content: ''; width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.7)} }

/* Title with animated copper underline */
.hero-title { font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 300; line-height: 1.1; letter-spacing: -.025em; color: var(--ink); margin-bottom: var(--s6); }
.hero-title strong { font-weight: 700; color: var(--teal); position: relative; display: inline-block; }
.hero-title strong::after { content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 3px; background: var(--copper); border-radius: 2px; transform: scaleX(0); transform-origin: left; animation: underline-draw .8s .6s var(--ease) forwards; }
@keyframes underline-draw { to { transform: scaleX(1); } }
.hero-title em { font-style: italic; color: var(--copper); }

.hero-sub { font-size: 1.05rem; color: var(--gray-500); line-height: 1.75; margin-bottom: var(--s8); max-width: 480px; }
.hero-ctas { display: flex; align-items: center; gap: var(--s4); flex-wrap: wrap; margin-bottom: var(--s8); }

/* Trust badges */
.hero-trust { display: flex; align-items: center; gap: var(--s6); flex-wrap: wrap; }
.ht-item { display: flex; align-items: center; gap: var(--s2); font-size: 12.5px; color: var(--gray-500); font-weight: 500; }
.ht-icon { width: 28px; height: 28px; background: var(--teal-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--teal); }
.ht-text { white-space: nowrap; }

/* Map card with subtle tilt */
.hero-right { position: relative; }
.hero-map-card { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); position: relative; transform: rotate(-1.5deg); transition: transform .5s var(--ease); }
.hero-map-card:hover { transform: rotate(0); }
.hero-map { width: 100%; height: 340px; border: none; display: block; }
.hero-map-footer { background: var(--white); padding: var(--s4) var(--s6); display: flex; align-items: center; justify-content: space-between; }
.hero-map-badge { display: flex; align-items: center; gap: var(--s2); text-decoration: none; }
.hero-rating-stars { color: #FBBF24; font-size: 14px; letter-spacing: 1px; }
.hero-rating-num { font-size: 14px; font-weight: 800; color: var(--ink); }
.hero-rating-label { font-size: 11px; color: var(--gray-500); }

@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; min-height: auto; padding: var(--s10) 0; } .hero-right { order: -1; } .hero-map-card { transform: none; } .hero-map { height: 220px; } }
@media (max-width: 640px) { .hero-ctas { flex-direction: column; align-items: flex-start; } .hero-ctas .btn { width: 100%; justify-content: center; } .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); } }

/* ═══════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════ */
.stats-strip { background: linear-gradient(135deg, var(--teal-dk) 0%, var(--teal) 50%, var(--teal-lt) 100%); padding: var(--s8) 0; position: relative; overflow: hidden; }
.stats-strip::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0px, rgba(255,255,255,.04) 1px, transparent 1px, transparent 60px), repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0px, rgba(255,255,255,.04) 1px, transparent 1px, transparent 60px); pointer-events: none; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.08); position: relative; z-index: 1; }
.stat-item { background: transparent; text-align: center; padding: var(--s7) var(--s5); }
.stat-item:nth-child(even) { transform: translateY(6px); }
.stat-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-num sup { font-size: 1.4rem; }
.stat-label { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.5); margin-top: var(--s2); text-transform: uppercase; letter-spacing: .12em; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat-item:nth-child(even) { transform: none; } }

/* ═══════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.svc-card { background: var(--white); border: none; border-left: 4px solid var(--teal); border-radius: var(--r-lg); padding: var(--s8) var(--s7); transition: all var(--dur-slow) var(--ease); cursor: default; position: relative; overflow: hidden; box-shadow: var(--shadow-xs); }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 0; background: linear-gradient(90deg, rgba(10,94,102,.06), transparent); transition: width var(--dur-slow) var(--ease); pointer-events: none; }
.svc-card:hover { box-shadow: var(--shadow-md); border-left-color: var(--copper); }
.svc-card:hover::before { width: 40%; }
.svc-card:first-child { grid-column: span 2; }
.svc-icon { width: 52px; height: 52px; background: var(--teal-bg); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: var(--s6); transition: all var(--dur); }
.svc-card:hover .svc-icon { background: var(--teal); transform: rotate(3deg); }
.svc-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: var(--s3); }
.svc-card p { font-size: 13.5px; color: var(--gray-500); line-height: 1.65; }
.svc-more { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--teal); margin-top: var(--s5); transition: gap .2s; }
.svc-more:hover { gap: 10px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } .svc-card:first-child { grid-column: span 2; } }
@media (max-width: 580px) { .services-grid { grid-template-columns: 1fr; } .svc-card:first-child { grid-column: span 1; } }

/* ═══════════════════════════════════════════
   PACKAGES
═══════════════════════════════════════════ */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.pkg-card { border-radius: var(--r-lg); overflow: hidden; border: 2px solid var(--border); transition: all var(--dur-slow) var(--ease); }
.pkg-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pkg-card.featured { border-color: var(--copper); box-shadow: 0 0 0 1px var(--copper), var(--shadow-md); }
.pkg-card.featured:hover { box-shadow: 0 0 0 2px var(--copper), 0 20px 56px rgba(193,127,58,.15); }
.pkg-header { padding: var(--s8) var(--s7) var(--s6); position: relative; overflow: hidden; }
.pkg-header::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.03) 10px, rgba(255,255,255,.03) 11px); pointer-events: none; }
.pkg-pill { position: absolute; top: var(--s4); right: var(--s4); background: var(--copper); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 3px 10px; border-radius: var(--r-full); z-index: 1; }
.pkg-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: 2px; position: relative; z-index: 1; }
.pkg-sub { font-size: 12px; color: rgba(255,255,255,.55); position: relative; z-index: 1; }
.pkg-price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--white); margin-top: var(--s4); line-height: 1; letter-spacing: -.02em; position: relative; z-index: 1; }
.pkg-price span { font-size: .85rem; font-weight: 400; opacity: .6; }
.pkg-body { padding: var(--s6) var(--s7) var(--s7); background: var(--white); }
.pkg-tests { display: flex; flex-direction: column; gap: var(--s3); margin-bottom: var(--s6); }
.pkg-test { display: flex; align-items: flex-start; gap: var(--s3); font-size: 13px; color: var(--gray-700); }
.pkg-test::before { content: ''; min-width: 20px; height: 20px; background: var(--teal-bg); border: 1.5px solid var(--teal-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230a5e66' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 10px; }
.pkg-book { display: block; width: 100%; padding: 13px; text-align: center; background: var(--teal); color: var(--white); border-radius: var(--r-md); font-size: 14px; font-weight: 600; transition: all var(--dur); }
.pkg-book:hover { background: var(--teal-dk); transform: translateY(-1px); }
@media (max-width: 960px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .pkg-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   DOCTORS GRID
═══════════════════════════════════════════ */
.doctors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); }
.doc-card { text-align: center; padding: var(--s7) var(--s5); border: 1px solid var(--border); border-radius: var(--r-lg); transition: all var(--dur) var(--ease); background: var(--white); }
.doc-card:hover { box-shadow: var(--shadow-md); border-color: var(--teal-mid); background: var(--teal-bg); }
.doc-av { width: 68px; height: 68px; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); background: linear-gradient(135deg, var(--teal), var(--green)); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--s4); font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); transition: transform var(--dur); }
.doc-card:hover .doc-av { transform: scale(1.08); }
.doc-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: var(--s2); position: relative; padding-bottom: var(--s3); }
.doc-name::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 1px; background: var(--border); }
.doc-name::before { content: ''; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; background: var(--copper); border-radius: 1px; transform: translateX(-50%) rotate(45deg); z-index: 1; }
.doc-spec { display: inline-block; font-size: 11px; font-weight: 600; color: var(--teal); background: var(--teal-bg); padding: 2px 10px; border-radius: var(--r-full); margin-top: var(--s2); }
.doc-hosp { font-size: 11.5px; color: var(--gray-500); margin-top: var(--s2); line-height: 1.4; }
@media (max-width: 900px) { .doctors-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .doctors-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════
   GOOGLE REVIEWS
═══════════════════════════════════════════ */
.reviews-section { background: var(--warm-cream); position: relative; overflow: hidden; }
/* Dotted grid pattern */
.reviews-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, var(--gray-300) 1px, transparent 1px); background-size: 30px 30px; opacity: .25; pointer-events: none; }
/* Giant quotation mark watermark */
.reviews-section::after { content: '\201C'; position: absolute; top: -40px; left: 5%; font-size: 20rem; font-family: var(--font-display); color: var(--copper); opacity: .04; pointer-events: none; line-height: 1; }
.reviews-bar { display: flex; align-items: center; justify-content: space-between; gap: var(--s8); margin-bottom: var(--s10); flex-wrap: wrap; position: relative; z-index: 1; }
.review-score { display: flex; align-items: flex-end; gap: var(--s5); }
.review-big-num { font-family: var(--font-display); font-size: 5rem; font-weight: 700; line-height: 1; color: var(--ink); }
.review-meta { padding-bottom: 8px; }
.review-stars-row { color: #FBBF24; font-size: 20px; letter-spacing: 2px; line-height: 1; }
.review-count { font-size: 13px; color: var(--gray-500); margin-top: 4px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); margin-bottom: var(--s8); position: relative; z-index: 1; }
.reviews-grid .review-card:nth-child(2) { margin-top: -24px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s7); }
.review-header { display: flex; align-items: center; gap: var(--s4); margin-bottom: var(--s5); }
.review-av { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1rem; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 14px; }
.review-date { font-size: 11.5px; color: var(--gray-500); }
.review-stars { color: #FBBF24; font-size: 13px; letter-spacing: 1px; margin-bottom: var(--s3); }
.review-text { font-size: 13.5px; color: var(--gray-700); line-height: 1.65; font-style: italic; }
@media (max-width: 800px) { .reviews-grid { grid-template-columns: 1fr; } .reviews-grid .review-card:nth-child(2) { margin-top: 0; } .review-score { flex-direction: column; align-items: flex-start; gap: var(--s3); } .review-big-num { font-size: 4rem; } }

/* ═══════════════════════════════════════════
   PROCESS / HOW IT WORKS — Timeline
═══════════════════════════════════════════ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); position: relative; }
/* Connecting line through steps */
.process-grid::before { content: ''; position: absolute; top: 50px; left: 12.5%; right: 12.5%; height: 2px; background: var(--teal-mid); z-index: 0; }
.process-grid::after { content: ''; position: absolute; top: 50px; left: 12.5%; right: 12.5%; height: 2px; background: var(--teal); z-index: 0; transform: scaleX(0); transform-origin: left; transition: transform 1.2s var(--ease); }
.process-grid.draw::after { transform: scaleX(1); }
.process-step { text-align: center; padding: var(--s7) var(--s5); position: relative; z-index: 1; }
.ps-num { width: 52px; height: 52px; border: 2.5px solid var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--teal); margin: 0 auto var(--s4); background: var(--white); position: relative; z-index: 2; transition: all .3s var(--ease); }
.process-grid.draw .ps-num { background: var(--teal); color: var(--white); }
/* Watermark step number */
.process-step::before { content: attr(data-step); position: absolute; top: 0; right: 10px; font-family: var(--font-display); font-size: 5rem; font-weight: 800; color: var(--gray-100); line-height: 1; pointer-events: none; z-index: 0; }
.ps-icon { font-size: 28px; margin-bottom: var(--s4); }
.ps-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: var(--s3); }
.ps-desc { font-size: 13px; color: var(--gray-500); line-height: 1.65; }
@media (max-width: 800px) { .process-grid { grid-template-columns: 1fr 1fr; } .process-grid::before, .process-grid::after { display: none; } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testi-slider { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform .5s var(--ease); }
.testi-slide { min-width: 100%; }
.testi-card { max-width: 700px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--s10); }
.testi-stars { color: #FBBF24; font-size: 16px; letter-spacing: 2px; margin-bottom: var(--s5); }
.testi-quote { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; line-height: 1.65; color: var(--ink); margin-bottom: var(--s7); }
.testi-quote::before { content: '\201C'; font-size: 4rem; line-height: 0; vertical-align: -.5em; color: var(--copper); margin-right: 3px; font-style: normal; }
.testi-author { display: flex; align-items: center; gap: var(--s4); }
.ta-av { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--teal), var(--copper)); font-family: var(--font-display); font-weight: 700; color: var(--white); flex-shrink: 0; }
.ta-name { font-weight: 700; font-size: 14px; }
.ta-loc { font-size: 12px; color: var(--gray-500); }
.testi-nav { display: flex; align-items: center; justify-content: center; gap: var(--s4); margin-top: var(--s8); }
.testi-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gray-700); transition: var(--dur); }
.testi-btn:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-bg); }
.testi-dots { display: flex; gap: 7px; }
.td { width: 7px; height: 7px; border-radius: 50%; background: var(--gray-300); cursor: pointer; transition: .25s; }
.td.on { width: 22px; border-radius: 4px; background: var(--teal); }
@media (max-width: 640px) { .testi-card { padding: var(--s7) var(--s6); } }

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-block { background: linear-gradient(135deg, var(--ink) 0%, var(--teal-dk) 60%, var(--teal) 100%); border-radius: 40px 16px 40px 16px; padding: var(--s12) var(--s10); text-align: center; position: relative; overflow: hidden; }
/* Floating gradient orb */
.cta-block::before { content: ''; position: absolute; top: -120px; right: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(193,127,58,.18) 0%, transparent 70%); pointer-events: none; animation: float-orb 15s ease-in-out infinite; }
@keyframes float-orb { 0%,100%{transform:translate(0,0)} 33%{transform:translate(-40px,30px)} 66%{transform:translate(20px,-20px)} }
.cta-block::after { content: ''; position: absolute; bottom: -80px; left: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(10,94,102,.25) 0%, transparent 70%); pointer-events: none; }
.cta-block h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 600; color: var(--white); margin-bottom: var(--s4); position: relative; z-index: 1; }
.cta-block h2 .copper-highlight { background: linear-gradient(transparent 60%, rgba(193,127,58,.3) 60%); padding: 0 4px; }
.cta-block p { color: rgba(255,255,255,.5); font-size: 1rem; margin-bottom: var(--s8); position: relative; z-index: 1; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: var(--s4); flex-wrap: wrap; position: relative; z-index: 1; }
@media (max-width: 640px) { .cta-block { padding: var(--s9) var(--s6); border-radius: var(--r-xl); } .cta-btns { flex-direction: column; } .cta-btns .btn { width: 100%; justify-content: center; } }

/* ═══════════════════════════════════════════
   SEARCH / TESTS
═══════════════════════════════════════════ */
.search-hero { background: linear-gradient(135deg, var(--teal-dk) 0%, var(--teal) 100%); padding: var(--s12) 0 var(--s10); }
.search-hero .h2, .search-hero .label { color: var(--white); }
.search-hero .label { color: rgba(255,255,255,.5); }
.search-box { display: flex; background: var(--white); border-radius: var(--r-full); padding: 6px 6px 6px var(--s6); box-shadow: var(--shadow-lg); max-width: 620px; margin-top: var(--s7); }
.search-box input { flex: 1; border: none; outline: none; font-size: 15.5px; color: var(--ink); background: transparent; font-family: var(--font-body); }
.search-box input::placeholder { color: var(--gray-300); }
.search-box button { background: var(--teal); color: var(--white); border-radius: var(--r-full); padding: 12px 24px; font-size: 14px; font-weight: 600; white-space: nowrap; transition: background var(--dur); }
.search-box button:hover { background: var(--teal-dk); }
.filter-bar { display: flex; align-items: center; gap: var(--s3); flex-wrap: wrap; padding: var(--s6) 0; border-bottom: 1px solid var(--border); margin-bottom: var(--s7); }
.filter-chip { padding: 7px 16px; border-radius: var(--r-full); font-size: 13px; font-weight: 500; border: 1.5px solid var(--border); color: var(--gray-700); cursor: pointer; transition: .2s; background: var(--white); }
.filter-chip:hover, .filter-chip.on { background: var(--teal); color: var(--white); border-color: var(--teal); }
.tests-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--s4); }
.test-card { display: flex; align-items: center; gap: var(--s4); padding: var(--s5) var(--s6); background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); transition: all var(--dur) var(--ease); }
.test-card:hover { border-color: var(--teal-mid); box-shadow: var(--shadow-sm); }
.tc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.tc-name { font-size: 13.5px; font-weight: 500; flex: 1; }
.tc-meta { font-family: var(--font-mono); font-size: 11px; color: var(--gray-500); white-space: nowrap; }
.test-enquire { font-size: 12px; font-weight: 600; color: var(--teal); padding: 5px 12px; border: 1.5px solid var(--teal-mid); border-radius: var(--r-full); transition: .2s; background: var(--white); white-space: nowrap; }
.test-enquire:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.no-results { text-align: center; padding: var(--s12) 0; color: var(--gray-500); }

/* ═══════════════════════════════════════════
   AI CHATBOT WIDGET
═══════════════════════════════════════════ */
.ai-widget { position: fixed; bottom: var(--s7); right: var(--s7); z-index: 9000; display: flex; flex-direction: column; align-items: flex-end; gap: var(--s3); }
.ai-btn { width: 56px; height: 56px; border-radius: 50%; background: var(--teal); color: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(10,94,102,.4); transition: all var(--dur) var(--ease); font-size: 22px; }
.ai-btn:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(10,94,102,.5); }
.ai-label { background: var(--ink); color: var(--white); font-size: 12px; padding: 5px 12px; border-radius: var(--r-full); white-space: nowrap; opacity: 0; transform: translateX(8px); transition: .2s; pointer-events: none; }
.ai-widget:hover .ai-label { opacity: 1; transform: none; }
.ai-panel { position: fixed; bottom: 90px; right: var(--s7); width: 380px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); overflow: hidden; display: none; flex-direction: column; z-index: 9001; max-height: 520px; }
.ai-panel.open { display: flex; }
.ai-panel-head { background: linear-gradient(135deg, var(--teal-dk), var(--teal)); padding: var(--s5) var(--s6); display: flex; align-items: center; justify-content: space-between; }
.ai-panel-head h4 { font-size: 14.5px; font-weight: 700; color: var(--white); }
.ai-panel-head p { font-size: 11.5px; color: rgba(255,255,255,.6); }
.ai-close { color: rgba(255,255,255,.7); font-size: 18px; padding: 4px; transition: .2s; }
.ai-close:hover { color: var(--white); }
.ai-msgs { flex: 1; overflow-y: auto; padding: var(--s5) var(--s6); display: flex; flex-direction: column; gap: var(--s4); }
.ai-msg { max-width: 85%; font-size: 13.5px; line-height: 1.55; }
.ai-msg.bot { align-self: flex-start; background: var(--teal-bg); border-radius: 0 var(--r-md) var(--r-md) var(--r-md); padding: var(--s3) var(--s4); color: var(--ink); }
.ai-msg.user { align-self: flex-end; background: var(--teal); border-radius: var(--r-md) 0 var(--r-md) var(--r-md); padding: var(--s3) var(--s4); color: var(--white); }
.ai-typing { align-self: flex-start; display: flex; gap: 4px; padding: var(--s3) var(--s4); background: var(--teal-bg); border-radius: 0 var(--r-md) var(--r-md) var(--r-md); }
.ai-typing span { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; animation: typing-bounce .9s ease-in-out infinite; }
.ai-typing span:nth-child(2) { animation-delay: .15s; }
.ai-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing-bounce { 0%,80%,100%{transform:scale(.6);opacity:.4} 40%{transform:scale(1);opacity:1} }
.ai-input-row { border-top: 1px solid var(--border); padding: var(--s4) var(--s5); display: flex; gap: var(--s3); align-items: center; }
.ai-input { flex: 1; border: 1.5px solid var(--border); border-radius: var(--r-full); padding: 9px 16px; font-size: 13.5px; outline: none; transition: border-color var(--dur); }
.ai-input:focus { border-color: var(--teal); }
.ai-send { width: 36px; height: 36px; border-radius: 50%; background: var(--teal); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background var(--dur); flex-shrink: 0; }
.ai-send:hover { background: var(--teal-dk); }
@media (max-width: 480px) { .ai-panel { right: var(--s4); left: var(--s4); width: auto; } .ai-widget { right: var(--s4); } }

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════ */
.wa-float { position: fixed; bottom: var(--s7); left: var(--s7); z-index: 8999; }
.wa-fab { width: 52px; height: 52px; border-radius: 50%; background: #25D366; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 6px 20px rgba(37,211,102,.4); transition: all var(--dur); }
.wa-fab:hover { transform: scale(1.08); }
@media (max-width: 480px) { .wa-float { bottom: var(--s5); left: var(--s5); } .ai-widget { bottom: var(--s5); right: var(--s5); } }

/* ═══════════════════════════════════════════
   MAP SECTION
═══════════════════════════════════════════ */
.map-grid { display: grid; grid-template-columns: 1fr 2fr; min-height: 480px; position: relative; }
/* Diagonal clip transition */
@supports (clip-path: polygon(0 0)) {
  .map-grid { clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%); margin-top: -4vw; }
}
.map-info { background: var(--ink); padding: var(--s10) var(--s9); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
/* Topographic pattern on dark info panel */
.map-info::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 100c20-40 60-40 80 0s60 40 80 0' fill='none' stroke='white' stroke-width='0.5' opacity='0.06'/%3E%3Cpath d='M20 130c20-40 60-40 80 0s60 40 80 0' fill='none' stroke='white' stroke-width='0.5' opacity='0.04'/%3E%3Cpath d='M20 70c20-40 60-40 80 0s60 40 80 0' fill='none' stroke='white' stroke-width='0.5' opacity='0.04'/%3E%3C/svg%3E"); background-size: 200px; pointer-events: none; }
.map-info h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--white); margin-bottom: var(--s7); position: relative; }
.map-contact-item { display: flex; gap: var(--s4); align-items: flex-start; margin-bottom: var(--s6); font-size: 14px; position: relative; }
.mc-icon { width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.mc-label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.3); margin-bottom: 2px; }
.mc-val { color: rgba(255,255,255,.75); line-height: 1.5; }
.mc-val a { color: var(--teal-lt); transition: color .2s; }
.mc-val a:hover { color: var(--white); }
.map-iframe { width: 100%; height: 100%; min-height: 480px; border: none; display: block; }
@media (max-width: 800px) { .map-grid { grid-template-columns: 1fr; clip-path: none; margin-top: 0; } .map-info { padding: var(--s9) var(--s6); } .map-iframe { min-height: 340px; } }

/* ═══════════════════════════════════════════
   BOOKING FORM
═══════════════════════════════════════════ */
.booking-steps { display: flex; align-items: center; gap: 0; margin-bottom: var(--s10); }
.bk-step { display: flex; align-items: center; gap: var(--s3); flex: 1; }
.bk-step:last-child { flex: 0; }
.bk-num { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--gray-500); transition: .25s; flex-shrink: 0; }
.bk-step.done .bk-num, .bk-step.active .bk-num { border-color: var(--teal); background: var(--teal); color: var(--white); }
.bk-step-label { font-size: 12px; font-weight: 600; color: var(--gray-500); white-space: nowrap; }
.bk-step.active .bk-step-label { color: var(--teal); }
.bk-line { flex: 1; height: 2px; background: var(--border); margin: 0 var(--s3); transition: .25s; }
.bk-step.done + .bk-step .bk-line, .bk-step.done .bk-line { background: var(--teal); }
.form-group { margin-bottom: var(--s6); }
.form-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--gray-700); margin-bottom: var(--s2); }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--r-md); font-size: 14.5px; color: var(--ink); background: var(--white); transition: border-color var(--dur), box-shadow var(--dur); outline: none; font-family: var(--font-body); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,94,102,.1); }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px; }
.form-textarea { resize: vertical; min-height: 100px; }
.service-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.svc-option input { display: none; }
.svc-option label { display: block; padding: var(--s5) var(--s4); border: 2px solid var(--border); border-radius: var(--r-md); text-align: center; cursor: pointer; transition: .2s; font-size: 13px; font-weight: 500; }
.svc-option label .so-icon { font-size: 24px; display: block; margin-bottom: var(--s2); }
.svc-option input:checked + label { border-color: var(--teal); background: var(--teal-bg); color: var(--teal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); }
@media (max-width: 640px) { .service-options { grid-template-columns: repeat(2, 1fr); } .form-row { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   BLOG
═══════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); }
.blog-card { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: all var(--dur) var(--ease); background: var(--white); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--teal-mid); }
.blog-thumb { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 56px; background: linear-gradient(135deg, var(--teal-bg), var(--warm-cream)); }
.blog-body { padding: var(--s6); }
.blog-cat { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--teal); font-weight: 500; }
.blog-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin: var(--s2) 0 var(--s3); line-height: 1.35; }
.blog-excerpt { font-size: 13px; color: var(--gray-500); line-height: 1.65; }
.blog-meta { display: flex; align-items: center; gap: var(--s4); margin-top: var(--s5); font-size: 12px; color: var(--gray-500); }
a.blog-card { display: block; color: inherit; text-decoration: none; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════ */
.page-hero { background: var(--ink); padding: var(--s12) 0 var(--s11); margin-top: var(--nav-h); position: relative; overflow: hidden; }
/* Diagonal bottom edge */
@supports (clip-path: polygon(0 0)) {
  .page-hero { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3vw), 0 100%); padding-bottom: calc(var(--s11) + 3vw); }
}
/* Subtle background pattern */
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L55 17.5 L55 42.5 L30 55 L5 42.5 L5 17.5 Z' fill='none' stroke='white' stroke-width='0.3'/%3E%3C/svg%3E"); opacity: .03; pointer-events: none; }
.page-hero .label { color: rgba(255,255,255,.4); }
.page-hero .h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,.5); margin-top: var(--s4); }
.breadcrumb { display: flex; align-items: center; gap: var(--s2); font-size: 12.5px; color: rgba(255,255,255,.3); margin-bottom: var(--s5); }
.breadcrumb a { color: rgba(255,255,255,.45); transition: color .2s; }
.breadcrumb a:hover { color: var(--teal-lt); }
.breadcrumb span { color: rgba(255,255,255,.2); }

/* ═══════════════════════════════════════════
   DATA SECURITY NOTICE
═══════════════════════════════════════════ */
.security-notice { display: flex; align-items: flex-start; gap: var(--s4); background: var(--teal-bg); border: 1px solid var(--teal-mid); border-radius: var(--r-md); padding: var(--s5) var(--s6); font-size: 13px; color: var(--gray-700); line-height: 1.55; }
.sn-icon { color: var(--teal); font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { background: var(--ink); position: relative; }
/* Top gradient accent line */
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent-line); }
.footer-top { padding: var(--s12) 0 var(--s9); }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr; gap: var(--s10); }
.footer-brand-logo { height: 36px; filter: brightness(0) invert(1); opacity: .8; margin-bottom: var(--s5); }
.footer-brand p, .footer p.footer-desc { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.75; margin-bottom: var(--s6); }
.footer-brand p .text-teal-lt { color: var(--teal-lt); }
.footer-socials { display: flex; gap: var(--s3); }
.footer-socials a { width: 36px; height: 36px; border-radius: var(--r-sm); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); transition: all .25s; }
.footer-socials a:hover { background: var(--teal); border-color: var(--teal); color: var(--white); box-shadow: 0 4px 12px rgba(10,94,102,.3); }
.footer-socials a svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col h5 { font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: var(--s5); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--s3); }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col ul a:hover { color: var(--teal-lt); }
.footer-contact-item { display: flex; gap: var(--s3); margin-bottom: var(--s4); font-size: 13px; }
.fci-ico { color: var(--teal-lt); flex-shrink: 0; font-size: 15px; margin-top: 1px; }
.fci-val { color: rgba(255,255,255,.45); line-height: 1.5; }
.fci-val a { color: var(--teal-lt); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: var(--s5) 0; display: flex; justify-content: space-between; align-items: center; gap: var(--s5); flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.22); }
.footer-bottom-links { display: flex; gap: var(--s5); }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,.22); transition: .2s; }
.footer-bottom-links a:hover { color: var(--teal-lt); }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s8); } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ═══════════════════════════════════════════
   MOBILE STICKY CTA BAR
═══════════════════════════════════════════ */
.mobile-cta-bar { display: none; }
@media (max-width: 640px) {
  .mobile-cta-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 800; background: rgba(255,255,255,.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--border); padding: var(--s3) var(--s4); display: flex; gap: var(--s3); transform: translateY(100%); transition: transform .3s var(--ease); }
  .mobile-cta-bar.visible { transform: translateY(0); }
  .mobile-cta-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: var(--s2); padding: 12px; border-radius: var(--r-md); font-size: 14px; font-weight: 600; text-align: center; }
  .mobile-cta-bar .mcta-call { background: var(--white); color: var(--teal); border: 2px solid var(--teal); }
  .mobile-cta-bar .mcta-book { background: var(--teal); color: var(--white); }
  /* Offset floating buttons when bar is visible */
  .mobile-cta-bar.visible ~ .wa-float { bottom: 70px; }
  .mobile-cta-bar.visible ~ .ai-widget { bottom: 70px; }
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-reveal="fade-left"] { transform: translateX(-28px); }
.reveal[data-reveal="fade-left"].visible { transform: none; }
.reveal[data-reveal="rotate-in"] { transform: translateY(28px) rotate(2deg); }
.reveal[data-reveal="rotate-in"].visible { transform: none; }
.reveal[data-reveal="scale-in"] { transform: scale(.92); }
.reveal[data-reveal="scale-in"].visible { transform: none; }
.d1{transition-delay:.07s} .d2{transition-delay:.14s} .d3{transition-delay:.21s}
.d4{transition-delay:.28s} .d5{transition-delay:.35s} .d6{transition-delay:.42s}

/* ── UTILITIES ── */
.flex { display: flex; } .flex-center { align-items: center; } .gap-4 { gap: var(--s4); }
.mt-4 { margin-top: var(--s4); } .mt-6 { margin-top: var(--s6); } .mt-8 { margin-top: var(--s8); }
.mb-4 { margin-bottom: var(--s4); } .mb-6 { margin-bottom: var(--s6); }
.text-center { text-align: center; } .text-teal { color: var(--teal); }
.hidden { display: none !important; }
.fw-bold { font-weight: 700; }

/* ── ACCESSIBILITY ── */
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: var(--r-sm); }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--teal); color: var(--white); padding: 8px 16px; border-radius: 0 0 var(--r-sm) 0; font-weight: 600; font-size: 14px; transition: top .2s; z-index: 9999; }
.skip-link:focus { top: 0; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-map-card { transform: none; }
  .process-grid::after { transform: scaleX(1); }
}

/* ── PRINT ── */
@media print { .nav, .wa-float, .ai-widget, .footer, .mobile-cta-bar { display: none; } body { padding-top: 0; } }

/* ── MOBILE SPACING OVERRIDE ── */
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .page-hero { padding: 56px 0 48px; }
}
