/* ============================================================
   UR Next Lab Service Solutions — Master Stylesheet
   Design: Modern Curved Wave Fluid Portals (Inspired by modern medical SaaS)
   Fonts: Playfair Display (headings) + Plus Jakarta Sans (body)
   ============================================================ */

:root {
  /* Backgrounds */
  --bg-white:   #FFFFFF;
  --bg-soft:    #F5F8FD;
  --bg-card:    #FFFFFF;

  /* Brand Colors */
  --navy:         #0A2C5E;
  --navy-deep:    #061A39;
  --royal-blue:   #09349C;
  --electric-blue:#005CE6;
  --teal:         #009DB5;
  --teal-light:   #00C4DE;
  --cyan-bright:  #00D4F5;
  --mint:         #00B89A;
  --red-accent:   #C0392B;

  /* Text */
  --text-dark:    #0D1B2A;
  --text-body:    #3D4F66;
  --text-muted:   #8A9BB5;

  /* Shadows */
  --shadow-xs:    0 1px 4px rgba(10,44,94,0.05);
  --shadow-sm:    0 2px 12px rgba(10,44,94,0.07);
  --shadow-md:    0 8px 32px rgba(10,44,94,0.10);
  --shadow-lg:    0 20px 60px rgba(10,44,94,0.14);
  --shadow-hover: 0 16px 48px rgba(0,157,181,0.24);

  /* Shape */
  --radius:       16px;
  --radius-sm:    8px;
  --radius-pill:  50px;
  --radius-portal:72px 28px 72px 28px;

  /* Typography — Option 2: Jakarta Bold + Inter */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset & Native Smooth Scroll ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-white);
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
h1 { font-size: clamp(38px, 5.2vw, 60px); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.025em; }
h3 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -0.02em; }
h4 { font-size: 20px; font-weight: 600; }
h5 { font-size: 16px; font-weight: 700; }
p  { margin-bottom: 1.25rem; }
a  { color: var(--teal); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; display: block; }
address { font-style: normal; }

/* ── Layout ── */
.container  { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; }
.section    { padding: 96px 0; position: relative; overflow: hidden; }
.section-soft { background: var(--bg-soft); }
.section-white{ background: var(--bg-white); }
.section-navy { background: var(--navy); color: white; }
.section-navy h1,.section-navy h2,.section-navy h3 { color: white; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* Spacing helpers */
.mb-1{margin-bottom:8px} .mb-2{margin-bottom:16px} .mb-3{margin-bottom:24px}
.mb-4{margin-bottom:32px} .mb-5{margin-bottom:48px} .mb-6{margin-bottom:64px}
.mt-3{margin-top:24px}    .mt-4{margin-top:32px}    .mt-5{margin-top:48px}
.text-center { text-align: center; }
.text-white  { color: white !important; }
.text-teal   { color: var(--teal); }
.text-navy   { color: var(--navy); }

/* ── Scroll progress top bar ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3.5px; width: 0;
  background: linear-gradient(90deg, var(--teal), var(--cyan-bright), var(--mint));
  z-index: 9999; transition: width 0.1s linear;
}

/* ── Section label chip ── */
.section-label {
  display: inline-block; font-family: var(--font-body);
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal);
  background: rgba(0,157,181,0.09); padding: 6px 16px;
  border-radius: var(--radius-pill); margin-bottom: 16px;
}
.section-subtitle {
  font-size: 18px; color: var(--text-muted);
  max-width: 620px; margin: 0 auto 48px; line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 30px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  letter-spacing: 0.2px; border: 2px solid transparent;
  cursor: pointer; transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--electric-blue) 100%);
  color: white; border-color: transparent;
  box-shadow: 0 4px 20px rgba(10,44,94,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(10,44,94,0.35); color: white; }

.btn-teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--mint) 100%);
  color: white; border-color: transparent;
  box-shadow: 0 4px 20px rgba(0,157,181,0.30);
}
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,157,181,0.45); color: white; }

.btn-outline {
  background: transparent; color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: white; transform: translateY(-2px); }

.btn-white {
  background: white; color: var(--navy); border-color: white;
  box-shadow: 0 4px 20px rgba(10,44,94,0.15);
}
.btn-white:hover { background: var(--bg-soft); transform: translateY(-2px); color: var(--navy); }

/* ── Pill Buttons (Inspired by Image 1 & Image 2) ── */
.btn-pill-cyan {
  display: inline-flex; align-items: center; gap: 10px;
  background: #00D4F5; color: #0A2C5E;
  font-family: var(--font-body); font-weight: 800; font-size: 15px;
  padding: 14px 34px; border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(0, 212, 245, 0.40);
  border: none; text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
}
.btn-pill-cyan:hover {
  background: #FFFFFF; color: #0A2C5E;
  transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 212, 245, 0.55);
}
.btn-pill-cyan .arrow {
  font-size: 18px; font-weight: 800; line-height: 1;
}

.btn-pill-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.12); color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 13px 30px; border-radius: var(--radius-pill);
  text-decoration: none; backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
}
.btn-pill-outline-white:hover {
  background: #FFFFFF; color: #0A2C5E; border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 40px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 9px 20px; font-size: 14px; }

/* ── Header ── */
:root {
  --top-bar-h: 38px;
  --header-h: 84px;
}

.site-header {
  position: fixed;
  top: var(--top-bar-h, 38px);
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 157, 181, 0.08);
  transition: top 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease, height 0.3s ease;
  height: var(--header-h, 84px);
}
.site-header.scrolled {
  top: 0;
  box-shadow: 0 4px 24px rgba(10, 44, 94, 0.08);
  height: 76px;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 24px;
}
.logo-link { flex-shrink: 0; display: flex; align-items: center; text-decoration: none; }
.logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 157, 181, 0.10));
}
.logo-link:hover .logo-img { transform: scale(1.03); }
.main-nav { display: flex; align-items: center; gap: 36px; list-style: none; }
.main-nav li a {
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  color: var(--text-dark); text-decoration: none; position: relative;
  padding-bottom: 4px; transition: color 0.25s;
}
.main-nav li a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--mint));
  border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1);
}
.main-nav li a:hover, .main-nav li a.active { color: var(--navy); }
.main-nav li a:hover::after, .main-nav li a.active::after { transform: scaleX(1); }
.header-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.phone-link {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  color: var(--navy); text-decoration: none; white-space: nowrap;
}
.phone-link:hover { color: var(--teal); }

/* Hamburger & Mobile nav */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; height: 2px; background: var(--navy);
  border-radius: 2px; transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: calc(var(--top-bar-h, 38px) + var(--header-h, 84px)); left: 0; right: 0; bottom: 0;
  background: white; z-index: 999; padding: 30px 24px 80px;
  display: flex; flex-direction: column; gap: 8px;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), visibility 0.35s, top 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.site-header.scrolled + .mobile-nav,
.site-header.scrolled ~ .mobile-nav {
  top: 76px;
}
.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav a {
  font-family: var(--font-body); font-weight: 600; font-size: 20px;
  color: var(--text-dark); padding: 14px 0;
  border-bottom: 1px solid rgba(0,157,181,0.08);
  text-decoration: none; display: block;
}
.mobile-nav a:hover { color: var(--teal); }
.mobile-nav .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ════════════════════════════════════════════════════════════
   HERO WAVE SECTION (Deep Midnight Sapphire & 3D Wave Horizon)
   ════════════════════════════════════════════════════════════ */
.hero-wave {
  min-height: 92vh;
  padding-top: calc(var(--top-bar-h, 38px) + var(--header-h, 84px) + 28px);
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 78% 22%, rgba(0, 212, 245, 0.16) 0%, transparent 52%),
              radial-gradient(circle at 18% 78%, rgba(0, 92, 230, 0.18) 0%, transparent 55%),
              linear-gradient(145deg, #030814 0%, #061328 42%, #0A2248 85%, #05142E 100%);
  color: white;
}

/* Luminous optical flares with scroll parallax */
.hero-blob {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hero-blob-1 {
  top: -80px;
  left: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 245, 0.15) 0%, transparent 70%);
  filter: blur(45px);
}
.hero-blob-2 {
  top: 14%;
  right: 4%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 157, 181, 0.18) 0%, transparent 70%);
  filter: blur(55px);
}

/* 3D Wave Canvas */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.95;
  display: block;
}

/* Hero Content Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-text {
  color: white;
}
.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.hero-eyebrow-pill .dot {
  width: 8px;
  height: 8px;
  background: #00D4F5;
  border-radius: 50%;
  box-shadow: 0 0 10px #00D4F5;
  display: inline-block;
}
.hero-title {
  font-size: clamp(42px, 5.2vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 22px;
}
.hero-highlight {
  color: #00D4F5;
  text-shadow: 0 0 30px rgba(0, 212, 245, 0.45);
}
.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.95);
}
.hero-trust-item .check-pill {
  width: 20px;
  height: 20px;
  background: rgba(0, 212, 245, 0.25);
  color: #00D4F5;
  border: 1.5px solid #00D4F5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   ORGANIC PORTAL IMAGE FRAME (Exact match to Image 1 & 2)
   ════════════════════════════════════════════════════════════ */
.portal-frame-wrap {
  position: relative;
  max-width: 540px;
  margin-left: auto;
  z-index: 3;
}
.portal-blob-backdrop {
  position: absolute;
  top: -18px;
  right: -20px;
  width: 104%;
  height: 104%;
  border-radius: 80px 30px 80px 30px;
  background: linear-gradient(135deg, rgba(0, 212, 245, 0.50), rgba(0, 157, 181, 0.20));
  filter: blur(14px);
  transform: rotate(2deg);
  pointer-events: none;
  z-index: 1;
}
.portal-frame {
  position: relative;
  border-radius: 72px 26px 72px 26px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(6, 26, 95, 0.38);
  border: 5px solid rgba(255, 255, 255, 0.35);
  background: white;
  z-index: 2;
  transition: transform 0.4s ease;
}
.portal-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.portal-frame:hover img {
  transform: scale(1.05);
}

/* Floating Badges */
@keyframes floatCardSlow1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-1.5deg); }
}
@keyframes floatCardSlow2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(6, 26, 95, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}
.hero-float-card.card-1 {
  bottom: 24px;
  left: -28px;
  min-width: 200px;
  animation: floatCardSlow1 5.5s ease-in-out infinite;
}
.hero-float-card.card-2 {
  top: 24px;
  right: -24px;
  background: rgba(10, 44, 94, 0.96);
  color: white;
  border: 1px solid rgba(0, 212, 245, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(0, 212, 245, 0.15);
  animation: floatCardSlow2 6.5s ease-in-out infinite 0.6s;
}
.hero-float-card:hover {
  animation-play-state: paused;
  box-shadow: 0 22px 55px rgba(6, 26, 95, 0.38);
}
.fc-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0,157,181,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-icon svg { width: 20px; height: 20px; fill: var(--teal); }
.card-2 .fc-icon { background: rgba(255,255,255,0.15); }
.card-2 .fc-icon svg { fill: white; }
.fc-label { font-size: 11px; color: var(--text-muted); font-weight: 600; line-height: 1.2; }
.card-2 .fc-label { color: rgba(255,255,255,0.7); }
.fc-value { font-size: 17px; font-weight: 800; color: var(--navy); line-height: 1; }
.card-2 .fc-value { color: white; }

/* Floating circular mail badge on bottom left (Image 1 & 2 match) */
.floating-round-badge {
  position: absolute;
  bottom: 36px;
  left: 36px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4A148C 0%, #1565C0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(74, 20, 140, 0.45);
  z-index: 4;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.floating-round-badge:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 14px 34px rgba(74, 20, 140, 0.6);
}
.floating-round-badge svg {
  width: 22px;
  height: 22px;
  fill: white;
}

/* Wave bottom divider */
.hero-wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}
.hero-wave-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

/* ════════════════════════════════════════════════════════════
   STATS BAR (Clean card bar on white background)
   ════════════════════════════════════════════════════════════ */
.stats-bar-white {
  background: var(--bg-white);
  padding: 40px 0 60px;
  position: relative;
  z-index: 3;
}
.stats-card-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(10, 44, 94, 0.08);
  border: 1px solid rgba(0, 157, 181, 0.14);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.stats-card-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--mint), var(--teal-light));
}
.stat-item {
  padding: 32px 20px;
  border-right: 1px solid rgba(0, 157, 181, 0.08);
  transition: background 0.3s ease;
}
.stat-item:hover {
  background: rgba(0, 157, 181, 0.025);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading); font-size: 52px; font-weight: 800;
  color: var(--teal); line-height: 1; display: inline-block;
}
.stat-suffix { font-size: 34px; color: var(--mint); font-weight: 800; }
.stat-label {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  color: var(--text-dark); text-transform: uppercase; letter-spacing: 1px;
  margin-top: 8px; display: block;
}

/* ════════════════════════════════════════════════════════════
   SERVICES PREVIEW CARDS
   ════════════════════════════════════════════════════════════ */
.services-preview-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
}
.service-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,157,181,0.12);
  transition: transform 0.22s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column;
  position: relative;
  will-change: transform;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle 320px at var(--card-x, 50%) var(--card-y, 50%), rgba(0, 212, 245, 0.14), transparent 75%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.service-card:hover::after {
  opacity: 1;
}
.service-card:hover {
  box-shadow: 0 24px 60px rgba(0,157,181,0.22), 0 0 0 1px rgba(0,212,245,0.45);
  border-color: rgba(0,157,181,0.40);
}
.service-card-img { height: 230px; overflow: hidden; position: relative; }
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body {
  padding: 30px; flex-grow: 1; display: flex; flex-direction: column;
  position: relative; z-index: 3;
}
.service-card-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: rgba(0,157,181,0.08); display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-card-icon {
  background: rgba(0,157,181,0.18);
  transform: scale(1.1) rotate(4deg);
}
.service-card-icon svg { width: 24px; height: 24px; fill: var(--teal); }
.service-card-body h3 { font-size: 22px; margin-bottom: 12px; }
.service-card-body p { color: var(--text-body); flex-grow: 1; margin-bottom: 20px; font-size: 15px; }
.service-card-body a {
  font-family: var(--font-body); font-weight: 700; color: var(--teal);
  font-size: 14px; display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.25s ease, color 0.25s ease;
  margin-top: auto;
}
.service-card:hover .service-card-body a { gap: 11px; color: var(--navy); }

/* ════════════════════════════════════════════════════════════
   WHY CHOOSE US — Organic Curved Photo Frames
   ════════════════════════════════════════════════════════════ */
.alternating-section { padding: 40px 0 0; overflow: hidden; }
.alt-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; padding-bottom: 80px;
}
.alt-row.reverse .alt-img { order: 2; }
.alt-row.reverse .alt-content { order: 1; }
.alt-img {
  border-radius: 56px 20px 56px 20px;
  overflow: hidden;
  height: 440px;
  box-shadow: 0 20px 50px rgba(10,44,94,0.16);
  border: 4px solid white;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}
.alt-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 157, 181, 0.12);
  pointer-events: none;
}
.alt-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.alt-row:hover .alt-img {
  transform: translateY(-5px);
  box-shadow: 0 28px 65px rgba(10,44,94,0.22);
}
.alt-row:hover .alt-img img { transform: scale(1.05); }
.alt-content .section-label { margin-bottom: 12px; }
.alt-content h2 { margin-bottom: 20px; }
.alt-content p { font-size: 17px; margin-bottom: 28px; }
.check-list { list-style: none; margin-bottom: 36px; }
.check-list li {
  position: relative; padding-left: 36px;
  margin-bottom: 14px; font-weight: 500;
  color: var(--text-dark); font-size: 15px;
}
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIAL BANNER
   ════════════════════════════════════════════════════════════ */
.testimonial-section {
  position: relative; padding: 120px 0; overflow: hidden; text-align: center;
}
.testimonial-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1579154204601-01588f351e67?w=1600&q=85');
  background-size: cover; background-position: center;
  filter: brightness(0.18) saturate(0.8);
}
.testimonial-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,44,94,0.78) 0%, rgba(0,157,181,0.40) 100%);
}
.testimonial-content {
  position: relative; z-index: 2; max-width: 860px; margin: 0 auto; color: white;
}
.testimonial-content .quote-mark {
  font-family: var(--font-heading); font-size: 110px; line-height: 0.6;
  color: var(--teal-light); opacity: 0.40; display: block; margin-bottom: 24px;
}
.testimonial-content h2 {
  color: white; font-size: clamp(26px,3.5vw,42px);
  font-style: italic; line-height: 1.4; margin-bottom: 40px; font-weight: 600;
}
.trust-pillars {
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
}
.trust-pillar {
  padding: 0 40px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.trust-pillar:last-child { border-right: none; }
.trust-pillar-icon { font-size: 28px; margin-bottom: 8px; }
.trust-pillar-label {
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--teal-light);
}
.trust-pillar-text { color: rgba(255,255,255,0.7); font-size: 13px; margin-top: 4px; }

/* ── Test Pills ── */
.test-pills-wrap {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-bottom: 40px;
}
.test-pill {
  padding: 11px 24px; background: white; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  color: var(--navy); box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,157,181,0.12);
  transition: all 0.3s ease; cursor: default;
}
.test-pill:hover {
  background: var(--navy); color: white; transform: translateY(-2px);
  border-color: transparent;
}

/* ════════════════════════════════════════════════════════════
   MID-PAGE WAVE CTA BANNER (Exact match to reference Image 2)
   ════════════════════════════════════════════════════════════ */
.section-wave-banner {
  position: relative;
  background: linear-gradient(135deg, #09349C 0%, #005CE6 46%, #00C4DE 100%);
  color: white;
  padding: 90px 0 100px;
  overflow: hidden;
}
.wave-banner-blob {
  position: absolute;
  top: -40px;
  left: -50px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(6, 26, 95, 0.4);
  filter: blur(40px);
  pointer-events: none;
}
.wave-banner-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}
.wave-banner-text h2 {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 18px;
  line-height: 1.15;
}
.wave-banner-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 480px;
}
.wave-banner-portal {
  position: relative;
  max-width: 480px;
  margin-left: auto;
}
.wave-banner-portal .portal-frame {
  border-radius: 64px 24px 64px 24px;
}
.wave-banner-portal .portal-frame img {
  height: 400px;
}

/* ── Location strip ── */
.location-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.location-img-wrap {
  border-radius: 56px 20px 56px 20px;
  overflow: hidden; height: 460px;
  box-shadow: var(--shadow-lg); border: 4px solid white;
}
.location-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.location-strip:hover .location-img-wrap img { transform: scale(1.03); }
.location-info .section-label { margin-bottom: 14px; }
.location-info h2 { margin-bottom: 16px; }
.location-info > p { font-size: 17px; margin-bottom: 32px; }
.location-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.loc-detail { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; }
.loc-detail svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.loc-detail div { display: flex; flex-direction: column; gap: 2px; }
.loc-detail strong { font-weight: 700; color: var(--text-dark); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
.loc-detail span { color: var(--text-body); }
.loc-detail a { color: var(--teal); font-weight: 700; }

/* ════════════════════════════════════════════════════════════
   FOOTER (Interactive Mouse-Reactive Canvas & Crisp Brand Badge)
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: #030A17;
  color: white;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
#footer-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.site-footer .container {
  position: relative;
  z-index: 2;
}
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 480px at var(--footer-x, 50%) var(--footer-y, 50%),
    rgba(0, 212, 245, 0.08),
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.site-footer:hover::after {
  opacity: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-badge {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  padding: 10px 22px;
  border-radius: 16px;
  margin-bottom: 22px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 212, 245, 0.25);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
}
.footer-brand-badge:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(0, 157, 181, 0.45), 0 0 0 2px var(--teal-light);
}
.footer-brand-logo {
  height: 66px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.7; margin: 16px 0; }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 10px;
  text-decoration: none;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--teal-light); flex-shrink: 0; }
.footer-contact-item:hover { color: var(--teal-light); }
.footer-col h5 {
  color: white; font-family: var(--font-body); font-weight: 700;
  font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: rgba(255,255,255,0.65); font-size: 15px; transition: all 0.25s; }
.footer-col ul a:hover { color: var(--teal-light); padding-left: 4px; }
.footer-address { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.hours-card {
  background: white; border-radius: 16px;
  border: 1px solid rgba(0,157,181,0.10);
  padding: 24px; margin-top: 20px;
  box-shadow: var(--shadow-sm);
}
.hours-row {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid rgba(0,157,181,0.07);
  font-size: 14px; font-weight: 500;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text-dark); }
.hours-row .time { color: var(--teal); font-weight: 700; }
.footer-bottom {
  padding: 24px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 13px; margin-bottom: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.25s; }
.footer-bottom a:hover { color: var(--teal-light); }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex;
  align-items: center; justify-content: center;
  color: white; transition: all 0.3s;
}
.social-links a:hover { background: var(--teal); transform: translateY(-2px); }
.social-links svg { width: 18px; height: 18px; fill: currentColor; }

/* ── Inner Pages Hero (Unified Modern Wave Aesthetic) ── */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
  padding: calc(var(--top-bar-h, 38px) + var(--header-h, 84px) + 24px) 0 110px;
  background: linear-gradient(135deg, #09349C 0%, #005CE6 45%, #00B4D8 85%, #00D4F5 100%);
  color: white;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.16;
  mix-blend-mode: overlay;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(0, 212, 245, 0.35) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 3; }
.page-hero-content .breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px; border-radius: var(--radius-pill);
  color: rgba(255,255,255,0.9); font-size: 12.5px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 20px; border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.page-hero-content .breadcrumb a { color: #FFFFFF; font-weight: 700; }
.page-hero-content .breadcrumb a:hover { color: #00D4F5; }
.page-hero-content h1 { color: white; margin-bottom: 14px; font-size: clamp(36px, 4.5vw, 54px); font-weight: 800; }
.page-hero-content p { color: rgba(255,255,255,0.92); font-size: 18px; max-width: 620px; margin-bottom: 0; line-height: 1.7; }

/* Subtle wave divider on page-hero bottom */
.page-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}
.page-hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.service-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 80px 0; border-bottom: 1px solid rgba(0,157,181,0.08);
}
.service-block:last-child { border-bottom: none; padding-bottom: 0; }
.service-block.reverse .service-img { order: 2; }
.service-block.reverse .service-content { order: 1; }
.service-img {
  border-radius: 56px 20px 56px 20px; overflow: hidden;
  height: 420px; box-shadow: var(--shadow-lg); position: relative;
  border: 4px solid white;
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.service-block:hover .service-img img { transform: scale(1.04); }
.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,44,94,0.35), transparent 55%);
}
.service-content .section-label { margin-bottom: 14px; }
.service-content h2 { margin-bottom: 20px; }
.service-content p { font-size: 17px; margin-bottom: 28px; color: var(--text-body); }
.service-content .check-list { margin-bottom: 36px; }

/* FAQ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,157,181,0.12); }
.faq-trigger {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; cursor: pointer; width: 100%; background: none; border: none;
  font-family: var(--font-body); font-weight: 700; font-size: 17px;
  color: var(--navy); text-align: left; gap: 16px;
}
.faq-trigger-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,157,181,0.09); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--teal); transition: all 0.3s;
}
.faq-trigger.open .faq-trigger-icon { background: var(--teal); color: white; transform: rotate(45deg); }
.faq-body {
  overflow: hidden; max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-body p { padding-bottom: 24px; color: var(--text-body); font-size: 16px; margin-bottom: 0; }

/* Tests */
.tests-controls {
  display: flex; flex-wrap: wrap; gap: 20px;
  align-items: center; justify-content: space-between; margin-bottom: 40px;
}
.search-input {
  flex: 1; min-width: 240px; max-width: 360px;
  padding: 12px 20px; border: 1.5px solid rgba(0,157,181,0.20);
  border-radius: var(--radius-pill); font-family: var(--font-body);
  font-size: 15px; color: var(--text-dark); outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.search-input:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0,157,181,0.08); }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 10px 20px; border-radius: var(--radius-pill);
  border: 2px solid rgba(0,157,181,0.15); background: white;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  color: var(--text-body); cursor: pointer; transition: all 0.25s;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--navy); color: white; border-color: var(--navy);
}
.tests-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.test-card {
  background: white; border-radius: 18px;
  border: 1px solid rgba(0, 157, 181, 0.12); box-shadow: 0 4px 20px rgba(10, 44, 94, 0.05);
  overflow: hidden; transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex; flex-direction: column;
  position: relative;
}
.test-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 157, 181, 0.16);
  border-color: rgba(0, 157, 181, 0.35);
}
.test-card-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px 14px; border-bottom: 1px solid rgba(0, 157, 181, 0.06);
  background: linear-gradient(180deg, rgba(240, 248, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
}
.specimen-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.test-card:hover .specimen-icon-wrap { transform: scale(1.08); }
.specimen-swab       { background: rgba(0, 157, 181, 0.10); color: var(--teal); }
.specimen-blood      { background: rgba(235, 87, 87, 0.10); color: #EB5757; }
.specimen-urine      { background: rgba(243, 156, 18, 0.12); color: #D68910; }
.specimen-molecular  { background: rgba(108, 92, 231, 0.12); color: #6C5CE7; }
.specimen-panel      { background: rgba(10, 44, 94, 0.08); color: var(--navy); }
.specimen-toxicology { background: rgba(0, 184, 154, 0.12); color: #00B89A; }

.test-turnaround {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: var(--navy);
  background: rgba(10, 44, 94, 0.05); padding: 5px 11px;
  border-radius: var(--radius-pill); letter-spacing: 0.2px;
}
.test-turnaround svg { fill: var(--teal); }

.test-card-body {
  padding: 18px 22px 22px; flex-grow: 1;
  display: flex; flex-direction: column;
}
.test-meta-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; margin-bottom: 12px;
}
.test-badge {
  display: inline-block; padding: 3px 10px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-poc       { background: rgba(0, 157, 181, 0.10); color: var(--teal); }
.badge-clia      { background: rgba(0, 184, 154, 0.10); color: var(--mint); }
.badge-std       { background: rgba(192, 57, 43, 0.10);  color: var(--red-accent); }
.badge-wellness  { background: rgba(10, 44, 94, 0.08); color: var(--navy); }
.badge-pathogen  { background: rgba(108, 92, 231, 0.12); color: #6c5ce7; }
.badge-drug      { background: rgba(225, 112, 85, 0.12); color: #d63031; }

.specimen-tag {
  font-size: 10.5px; font-weight: 700; color: var(--text-muted);
  background: #F2F5F8; padding: 3px 8px; border-radius: 6px;
  letter-spacing: 0.3px; text-align: right;
}
.test-card .test-name {
  font-family: var(--font-heading); font-size: 16.5px; font-weight: 700;
  margin-bottom: 8px; color: var(--navy); line-height: 1.3;
}
.test-card p {
  font-size: 13.5px; color: var(--text-body); line-height: 1.55;
  margin-bottom: 14px; flex-grow: 1;
}
.test-prep-row {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.prep-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  line-height: 1.2;
}
.prep-fasting {
  background: rgba(235, 94, 40, 0.10);
  color: #c0392b;
  border: 1px solid rgba(235, 94, 40, 0.22);
}
.prep-hydrated {
  background: rgba(0, 157, 181, 0.08);
  color: var(--teal);
  border: 1px solid rgba(0, 157, 181, 0.22);
}
.prep-none {
  background: rgba(0, 184, 154, 0.08);
  color: #0b8f72;
  border: 1px solid rgba(0, 184, 154, 0.22);
}
.test-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid rgba(0, 157, 181, 0.08);
  margin-top: auto;
}
.test-clia-check {
  font-size: 11.5px; font-weight: 700; color: var(--teal);
  letter-spacing: 0.3px;
}
.test-action-link {
  font-family: var(--font-body); font-size: 12.5px; font-weight: 700;
  color: var(--navy); text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex; align-items: center; gap: 4px;
}
.test-card:hover .test-action-link {
  color: var(--teal);
  transform: translateX(3px);
}

/* About split */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-stack { position: relative; height: 540px; }
.about-img-main {
  width: 75%; height: 430px; object-fit: cover;
  border-radius: 48px 16px 48px 16px; box-shadow: var(--shadow-lg);
  position: absolute; top: 0; left: 0;
}
.about-img-secondary {
  width: 56%; height: 290px; object-fit: cover;
  border-radius: 36px 12px 36px 12px; box-shadow: var(--shadow-md);
  position: absolute; bottom: 0; right: 0;
  border: 5px solid white;
}
.about-stat-bubble {
  position: absolute; top: 50%; left: 52%;
  transform: translate(-50%, -50%);
  background: white; border-radius: 50%;
  width: 106px; height: 106px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); z-index: 2; text-align: center;
}
.about-stat-bubble .num { font-family: var(--font-heading); font-size: 28px; font-weight: 800; color: var(--teal); line-height: 1; }
.about-stat-bubble .lbl { font-family: var(--font-body); font-size: 11px; color: var(--text-muted); font-weight: 600; margin-top: 2px; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.value-card {
  background: white; padding: 44px 36px; border-radius: var(--radius);
  box-shadow: var(--shadow-md); text-align: center;
  border: 1px solid rgba(0,157,181,0.08); transition: all 0.35s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(0,157,181,0.25); }
.value-icon {
  width: 68px; height: 68px; background: linear-gradient(135deg, rgba(0,157,181,0.10), rgba(0,184,154,0.10));
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; transition: all 0.3s;
}
.value-card:hover .value-icon { background: linear-gradient(135deg, var(--teal), var(--mint)); }
.value-icon svg { width: 32px; height: 32px; fill: var(--teal); transition: fill 0.3s; }
.value-card:hover .value-icon svg { fill: white; }
.value-card h3 { font-size: 22px; margin-bottom: 12px; }
.value-card p { color: var(--text-body); font-size: 15px; margin-bottom: 0; }

.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 16px; border-radius: 20px; overflow: hidden;
}
.photo-grid-item:first-child { grid-row: span 2; }
.photo-grid-item { overflow: hidden; }
.photo-grid-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-grid-item:hover img { transform: scale(1.06); }

.clia-banner {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 0; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.clia-banner-left {
  background: linear-gradient(135deg, var(--navy), var(--royal-blue));
  padding: 56px 48px; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
}
.clia-banner-left h3 { color: white; font-size: 30px; margin-bottom: 14px; }
.clia-banner-left p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 0; }
.clia-cert-box {
  color: #FFFFFF !important;
}
.clia-cert-box div {
  color: #FFFFFF !important;
}
.clia-cert-box strong {
  color: #7DE8F5 !important;
}
.clia-banner-right {
  background: white; padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.clia-banner-right p { font-size: 17px; color: var(--text-body); }
.clia-banner-right p:last-child { margin-bottom: 0; }

/* Contact page layout */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 64px; align-items: start;
}
.contact-info-card {
  background: var(--navy); border-radius: 20px;
  overflow: hidden; position: relative;
}
.contact-info-card-bg {
  position: absolute; inset: 0; opacity: 0.07;
  background: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=800&q=80');
  background-size: cover; background-position: center;
}
.contact-info-content { position: relative; z-index: 1; padding: 48px 40px; }
.contact-info-content h3 { color: white; font-size: 28px; margin-bottom: 8px; }
.contact-info-content .sub { color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 40px; }
.contact-detail-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.10); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { width: 20px; height: 20px; fill: var(--teal-light); }
.contact-detail-label { font-family: var(--font-body); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.contact-detail-value { color: white; font-size: 16px; font-weight: 600; text-decoration: none; }
.contact-detail-value a { color: white; }
.contact-info-img { width: 100%; height: 180px; object-fit: cover; display: block; }

.contact-form-card {
  background: white; border-radius: 20px;
  box-shadow: var(--shadow-lg); padding: 48px 44px;
  border: 1px solid rgba(0,157,181,0.08);
}
.contact-form-card h3 { margin-bottom: 8px; }
.contact-form-card .sub { color: var(--text-muted); font-size: 15px; margin-bottom: 36px; }

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.info-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 20px;
}

.field-group { position: relative; margin-bottom: 20px; }
.field-group input,
.field-group textarea,
.field-group select {
  width: 100%; padding: 22px 16px 10px;
  border: 1.5px solid rgba(0,157,181,0.18);
  border-radius: 10px; font-family: var(--font-body);
  font-size: 15px; color: var(--text-dark); background: white;
  transition: border-color 0.25s, box-shadow 0.25s; outline: none;
  appearance: none;
}
.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0,157,181,0.09);
}
.field-group label {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--text-muted); pointer-events: none;
  transition: all 0.2s ease;
}
.field-group input:focus ~ label,
.field-group input:not(:placeholder-shown) ~ label,
.field-group textarea:focus ~ label,
.field-group textarea:not(:placeholder-shown) ~ label,
.field-group select:focus ~ label {
  top: 7px; font-size: 10px; font-weight: 700;
  color: var(--teal); text-transform: uppercase; letter-spacing: 0.5px;
}
#form-status {
  padding: 12px 16px; border-radius: 8px; font-weight: 600;
  font-size: 14px; margin-top: 12px; display: none;
}
#form-status.success { background: rgba(0,184,154,0.10); color: var(--mint); display: block; }
#form-status.error   { background: rgba(192,57,43,0.10);  color: var(--red-accent); display: block; }

/* ── GSAP Reveal classes ── */
.reveal-up, .reveal-left, .reveal-right { will-change: opacity, transform; }

/* ── Lazy image fade-in ── */
img[data-src] { opacity: 0; transition: opacity 0.55s ease; }
img.img-loaded { opacity: 1; }

/* ════════════════════════════════════════════════════════════
   CTA SECTION (Modern Curved Wave Deep Brand Banner)
   ════════════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  background: linear-gradient(145deg, #030814 0%, #061A39 42%, #0A2248 85%, #05142E 100%);
  color: #FFFFFF;
  padding: 120px 0 105px;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(0, 212, 245, 0.15);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 950px;
  height: 480px;
  background: radial-gradient(ellipse, rgba(0, 212, 245, 0.20) 0%, rgba(0, 184, 154, 0.08) 42%, transparent 70%);
  pointer-events: none;
}

.cta-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.cta-wave-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 52px;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 840px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 212, 245, 0.12);
  border: 1px solid rgba(0, 212, 245, 0.38);
  color: #00D4F5;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 7px 22px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.cta-badge .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00D4F5;
  box-shadow: 0 0 10px #00D4F5;
  animation: pulse 2s infinite;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.cta-content p {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 660px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.cta-trust-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.cta-trust-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-trust-tags svg {
  fill: #00D4F5;
}

/* ════════════════════════════════════════════════════════════
   MODAL SYSTEM (Quick Booking & Patient Portal)
   ════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 20, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 157, 181, 0.15);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 24px 28px 20px;
  background: linear-gradient(135deg, #061A39 0%, #0A2C5E 100%);
  color: white;
  border-radius: 24px 24px 0 0;
  position: relative;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.modal-header p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg);
}

.modal-body {
  padding: 24px 28px 28px;
}

.modal-test-summary {
  background: #F4F8FC;
  border: 1.5px solid rgba(0, 157, 181, 0.18);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.modal-test-name {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.modal-test-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-body);
  flex-wrap: wrap;
}

.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.modal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.modal-field.full {
  grid-column: span 2;
}

.modal-field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-field input,
.modal-field select,
.modal-field textarea {
  padding: 11px 14px;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: #FFFFFF;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 157, 181, 0.14);
}

.modal-submit-btn {
  width: 100%;
  margin-top: 10px;
}

.modal-status {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 14px;
  display: none;
}

.modal-status.success {
  display: block;
  background: rgba(0, 184, 154, 0.12);
  color: #0b8f72;
  border: 1px solid rgba(0, 184, 154, 0.3);
}

/* ════════════════════════════════════════════════════════════
   ZIP CODE CHECKER WIDGET (Mobile Phlebotomy)
   ════════════════════════════════════════════════════════════ */
.zip-checker-box {
  background: #FFFFFF;
  border: 1.5px solid rgba(0, 157, 181, 0.22);
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: var(--shadow-md);
  margin-top: 26px;
  max-width: 520px;
}

.zip-checker-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.zip-checker-title svg {
  fill: var(--teal);
}

.zip-checker-sub {
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.5;
}

.zip-input-group {
  display: flex;
  gap: 10px;
}

.zip-input-group input {
  flex-grow: 1;
  padding: 12px 16px;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 1px;
}

.zip-input-group input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 157, 181, 0.15);
}

.zip-btn {
  padding: 12px 24px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.zip-btn:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.zip-result {
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.55;
  display: none;
}

.zip-result.success {
  display: block;
  background: rgba(0, 184, 154, 0.10);
  border: 1px solid rgba(0, 184, 154, 0.35);
  color: #0b8f72;
}

.zip-result.notice {
  display: block;
  background: rgba(10, 44, 94, 0.06);
  border: 1px solid rgba(10, 44, 94, 0.18);
  color: var(--navy);
}

/* ════════════════════════════════════════════════════════════
   PATIENT PORTAL NAV & MODAL
   ════════════════════════════════════════════════════════════ */
.portal-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  background: rgba(0, 157, 181, 0.09);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 157, 181, 0.25);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.portal-nav-btn:hover {
  background: var(--teal);
  color: #FFFFFF;
  border-color: var(--teal);
  transform: translateY(-1px);
}

.portal-nav-btn svg {
  fill: currentColor;
}

.portal-badge-lock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--mint);
  background: rgba(0, 184, 154, 0.15);
  padding: 3px 8px;
  border-radius: 4px;
}

.portal-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.portal-option-card {
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portal-option-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.portal-option-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 157, 181, 0.10);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.portal-option-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.portal-option-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.portal-option-card p {
  font-size: 12px;
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.45;
}

.portal-lookup-box {
  margin-top: 20px;
  padding: 16px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
}

.portal-support-bar {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #E2E8F0;
  text-align: center;
  font-size: 13px;
  color: var(--text-body);
}

.portal-support-bar a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

/* ════════════════════════════════════════════════════════════
   TURNAROUND SPEED FILTER TABS (tests.html)
   ════════════════════════════════════════════════════════════ */
.speed-filter-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 32px;
  flex-wrap: wrap;
}

.speed-filter-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.speed-tab {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid #E2E8F0;
  background: #FFFFFF;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.speed-tab:hover {
  border-color: var(--teal);
  color: var(--navy);
  transform: translateY(-1px);
}

.speed-tab.active {
  background: var(--navy);
  color: #FFFFFF;
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(10, 44, 94, 0.25);
}

/* ════════════════════════════════════════════════════════════
   MOBILE FLOATING QUICK-ACTION BAR
   ════════════════════════════════════════════════════════════ */
.mobile-action-bar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px;
  }

  .mobile-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(6, 26, 57, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(0, 212, 245, 0.25);
    z-index: 999;
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 24px rgba(3, 8, 20, 0.35);
    justify-content: space-around;
    align-items: center;
    gap: 8px;
  }

  .m-action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 6px;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    transition: all 0.2s ease;
    color: #FFFFFF;
  }

  .m-action-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .m-action-btn.m-call {
    color: #00D4F5;
  }

  .m-action-btn.m-book {
    background: #00D4F5;
    color: #0A2C5E;
    box-shadow: 0 4px 12px rgba(0, 212, 245, 0.35);
  }

  .m-action-btn.m-book svg {
    fill: #0A2C5E;
  }

  .m-action-btn.m-directions {
    color: rgba(255, 255, 255, 0.88);
  }
}

/* ════════════════════════════════════════════════════════════
   HEALTHCARE PROVIDERS & EMPLOYERS HUB (services.html)
   ════════════════════════════════════════════════════════════ */
.providers-section {
  background: var(--bg-soft);
  padding: 96px 0;
  position: relative;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.provider-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1.5px solid rgba(0, 157, 181, 0.12);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
}

.provider-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--teal);
}

.provider-icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(0, 157, 181, 0.10);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.provider-icon-badge svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.provider-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.provider-card p {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.provider-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.provider-feature-list li {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.provider-feature-list li svg {
  width: 16px;
  height: 16px;
  fill: var(--teal);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   SEARCHABLE FAQ ACCORDION (services.html)
   ════════════════════════════════════════════════════════════ */
.faq-section {
  padding: 96px 0;
  background: #FFFFFF;
}

.faq-search-wrap {
  max-width: 560px;
  margin: 0 auto 40px;
  position: relative;
}

.faq-search-input {
  width: 100%;
  padding: 14px 20px 14px 46px;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  background: #FFFFFF;
  box-shadow: var(--shadow-xs);
  transition: all 0.2s ease;
}

.faq-search-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 157, 181, 0.15);
}

.faq-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
  pointer-events: none;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  background: #FFFFFF;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.active {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.faq-header {
  padding: 20px 24px;
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 157, 181, 0.08);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--teal);
  color: #FFFFFF;
}

.faq-toggle-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.faq-body-content {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-body-content {
  display: block;
}

/* ════════════════════════════════════════════════════════════
   GOOGLE REVIEWS & PATIENT TRUST SHOWCASE (index.html)
   ════════════════════════════════════════════════════════════ */
.reviews-section {
  padding: 96px 0;
  background: var(--bg-soft);
  position: relative;
}

.reviews-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1.5px solid rgba(0, 157, 181, 0.20);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
}

.reviews-header-badge svg {
  width: 18px;
  height: 18px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.review-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 44, 94, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #FFB800;
  margin-bottom: 16px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.review-text {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid #F0F4F8;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

.reviewer-info h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.reviewer-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════════
   TOP UTILITY BAR & LIVE CLINIC STATUS
   ════════════════════════════════════════════════════════════ */
.top-utility-bar {
  background: #061A39;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 600;
  padding: 0;
  height: var(--top-bar-h, 38px);
  border-bottom: 1px solid rgba(0, 212, 245, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  align-items: center;
}

.top-utility-bar.scrolled {
  transform: translateY(-100%);
}

.top-utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 184, 154, 0.15);
  border: 1px solid rgba(0, 184, 154, 0.35);
  color: #00FFD1;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.live-status-pill.status-closed {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
}

.live-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00FFD1;
  box-shadow: 0 0 8px #00FFD1;
  animation: pulse 2s infinite;
}

.status-closed .live-status-dot {
  background: #FFB800;
  box-shadow: none;
  animation: none;
}

.spanish-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: color 0.2s;
}

.spanish-badge span.spanish-text-short {
  display: none;
}

.spanish-badge:hover {
  color: #00D4F5;
}

/* ════════════════════════════════════════════════════════════
   "WHICH TEST DO I NEED?" DIAGNOSTIC FINDER (index.html)
   ════════════════════════════════════════════════════════════ */
.finder-section {
  padding: 96px 0;
  background: #FFFFFF;
  position: relative;
}

.finder-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.finder-scenario-btn {
  background: var(--bg-soft);
  border: 1.5px solid rgba(0, 157, 181, 0.12);
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.finder-scenario-btn:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.finder-scenario-btn.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  box-shadow: 0 8px 24px rgba(10, 44, 94, 0.25);
}

.finder-icon {
  font-size: 28px;
  line-height: 1;
}

.finder-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.finder-scenario-btn.active .finder-label {
  color: #FFFFFF;
}

.finder-results-box {
  margin-top: 36px;
  background: var(--bg-soft);
  border: 1.5px solid rgba(0, 157, 181, 0.20);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.finder-results-header {
  margin-bottom: 24px;
}

.finder-results-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.finder-results-header p {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 0;
}

.finder-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.finder-rec-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(0, 157, 181, 0.15);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: all 0.2s;
}

.finder-rec-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.finder-rec-name {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.finder-rec-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 14px;
}

.finder-rec-btn {
  margin-top: auto;
  padding: 9px 16px;
  background: var(--navy);
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
}

.finder-rec-btn:hover {
  background: var(--teal);
  color: #FFFFFF;
}

/* ════════════════════════════════════════════════════════════
   PATIENT VISIT GUIDE & PRE-TEST CHECKLIST (tests.html)
   ════════════════════════════════════════════════════════════ */
.visit-guide-section {
  padding: 80px 0;
  background: var(--bg-soft);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.checklist-item {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 26px 22px;
  border: 1.5px solid rgba(0, 157, 181, 0.12);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
}

.checklist-step {
  font-size: 11px;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.checklist-item h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.checklist-item p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid, .grid-2, .alt-row, .service-block, .about-split, .wave-banner-grid, .location-strip { grid-template-columns: 1fr; }
  .finder-scenarios-grid { grid-template-columns: repeat(3, 1fr); }
  .checklist-grid { grid-template-columns: repeat(2, 1fr); }
  .alt-row.reverse .alt-img, .alt-row.reverse .alt-content,
  .service-block.reverse .service-img, .service-block.reverse .service-content { order: unset; }
  .services-preview-grid { grid-template-columns: repeat(2,1fr); }
  .tests-grid { grid-template-columns: repeat(2,1fr); }
  .providers-grid, .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-card-container { grid-template-columns: repeat(2,1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .clia-banner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-grid-item:first-child { grid-row: span 1; }
  .portal-frame img { height: 420px; }
  .alt-img { height: 360px; }
  .service-img { height: 360px; }
  .about-img-stack { height: 420px; }
  .hero-float-card.card-1 { left: 0; }
  .hero-float-card.card-2 { right: 0; }
  .trust-pillar { padding: 0 20px; }
  .location-img-wrap { height: 320px; }
  .wave-banner-portal { margin: 0 auto; width: 100%; }
}
@media (max-width: 768px) {
  :root {
    --top-bar-h: 36px;
    --header-h: 68px;
  }
  .top-utility-bar {
    height: var(--top-bar-h, 36px);
    font-size: 11px;
  }
  .top-utility-bar .container {
    padding: 0 10px;
  }
  .top-utility-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 0;
  }
  .top-utility-inner > div {
    gap: 8px !important;
  }
  .top-util-addr {
    display: none !important;
  }
  .top-utility-bar a[href^="tel:"] {
    display: none !important;
  }
  .live-status-pill {
    font-size: 10px;
    padding: 2px 7px;
    max-width: 145px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .live-status-pill span:last-child {
    max-width: 115px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
  }
  .accessibility-controls {
    padding: 1px 3px;
    gap: 2px;
  }
  .a11y-btn {
    font-size: 10.5px;
    padding: 1px 3px;
    min-width: 18px;
  }
  .spanish-badge {
    font-size: 10.5px;
    gap: 3px;
    white-space: nowrap;
  }
  .spanish-badge span.spanish-text-full {
    display: none;
  }
  .spanish-badge span.spanish-text-short {
    display: inline;
  }
  .site-header {
    height: var(--header-h, 68px);
  }
  .site-header.scrolled {
    height: 60px;
  }
  .header-inner {
    gap: 12px;
  }
  .logo-img {
    height: 44px;
  }
  .header-right .btn {
    display: none;
  }
  .main-nav { display: none; }
  .header-right .phone-link { display: none; }
  .hamburger {
    display: flex;
    margin-left: auto;
  }
  .mobile-nav {
    top: calc(var(--top-bar-h, 36px) + var(--header-h, 68px));
  }
  .site-header.scrolled + .mobile-nav,
  .site-header.scrolled ~ .mobile-nav {
    top: 60px;
  }
  h1 { font-size: 34px; } h2 { font-size: 26px; }
  .section { padding: 60px 0; }
  .hero-wave {
    padding-top: calc(var(--top-bar-h, 36px) + var(--header-h, 68px) + 20px);
    padding-bottom: 90px;
  }
  .page-hero {
    padding-top: calc(var(--top-bar-h, 36px) + var(--header-h, 68px) + 16px);
    padding-bottom: 70px;
  }
  .hero-eyebrow-pill {
    font-size: 11px;
    padding: 6px 12px;
    letter-spacing: 0.5px;
    max-width: 100%;
    white-space: normal;
    text-align: left;
    margin-bottom: 16px;
  }
  .hero-title {
    font-size: 32px;
    line-height: 1.15;
    word-wrap: break-word;
    margin-bottom: 16px;
  }
  .hero-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .stat-alert-banner {
    display: flex;
    flex-wrap: wrap;
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 16px;
  }
  .stat-alert-text {
    font-size: 12px;
    line-height: 1.35;
    flex: 1;
    min-width: 160px;
  }
  .portal-frame-wrap {
    max-width: 100%;
    margin: 0 auto;
  }
  .portal-blob-backdrop {
    right: 0;
    width: 100%;
  }
  .hero-grid { gap: 36px; }
  .portal-frame img { height: 320px; }
  .hero-float-card { display: none; }
  .services-preview-grid { grid-template-columns: 1fr; }
  .tests-grid { grid-template-columns: 1fr; }
  .stats-card-container { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 50px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .footer-bottom { text-align: center; justify-content: center; }
  .values-grid { grid-template-columns: 1fr; }
  .trust-pillars { flex-direction: column; gap: 24px; }
  .trust-pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 24px; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; gap: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; text-align: center; }
  .contact-form-card { padding: 32px 20px; }
  .floating-round-badge { bottom: 20px; left: 20px; width: 44px; height: 44px; }
  .modal-form-grid, .portal-options-grid { grid-template-columns: 1fr; }
  .modal-field.full { grid-column: span 1; }
  .zip-input-group { flex-direction: column; }
  .zip-btn { width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .modal-mobile-fields.active { grid-template-columns: 1fr; }
  .modal-mobile-fields .full { grid-column: span 1; }
  .search-input { max-width: 100%; width: 100%; }
  .filter-tabs { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; flex-wrap: nowrap; }
  .filter-tab { flex-shrink: 0; white-space: nowrap; padding: 8px 14px; font-size: 13px; }

  /* ── Mobile Form & 2-Col Rows ── */
  .form-row-2col, .info-row-2col { grid-template-columns: 1fr; gap: 0; }
  .info-row-2col { gap: 12px; }

  /* ── Diagnostic Test Finder (index.html) ── */
  .finder-section { padding: 60px 0; }
  .finder-scenarios-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 24px; }
  .finder-scenario-btn { padding: 14px 10px; gap: 8px; border-radius: 12px; }
  .finder-icon { font-size: 24px; }
  .finder-label { font-size: 13px; line-height: 1.25; }
  .finder-results-box { padding: 22px 18px; border-radius: 18px; margin-top: 24px; }
  .finder-results-header h3 { font-size: 19px; }
  .finder-cards-grid { grid-template-columns: 1fr; gap: 14px; }

  /* ── Services Page Blocks (services.html) ── */
  .service-block { gap: 24px; padding: 36px 0; }
  .service-img { height: 230px; border-radius: 28px 12px 28px 12px; }
  .service-content h2 { font-size: 24px; margin-bottom: 12px; }
  .service-content p { font-size: 15px; margin-bottom: 18px; }
  .service-content .check-list { margin-bottom: 22px; }
  .mobile-protocol-box { padding: 14px; }

  /* ── Alternating Why Choose Us (index.html) ── */
  .alt-row { gap: 24px; padding-bottom: 40px; }
  .alt-img { height: 230px; border-radius: 28px 12px 28px 12px; }
  .alt-content h2 { font-size: 24px; margin-bottom: 12px; }
  .alt-content p { font-size: 15px; margin-bottom: 18px; }

  /* ── CLIA Cert Banner (about.html & index.html) ── */
  .clia-banner-left,
  .clia-banner-right { padding: 28px 20px; }
  .clia-banner-left h3 { font-size: 22px; margin-bottom: 10px; }
  .clia-banner-right p { font-size: 15px; }

  /* ── Location Strip (index.html) ── */
  .location-strip { gap: 28px; }
  .location-img-wrap { height: 220px; border-radius: 28px 12px 28px 12px; }

  /* ── Wave Banner CTA ── */
  .wave-banner-grid { gap: 32px; }
  .wave-banner-portal .portal-frame img { height: 240px; }

  /* ── About Page Split (about.html) ── */
  .about-split { gap: 28px; }
  .about-img-stack { height: 350px; }
  .about-img-main { height: 290px; border-radius: 32px 12px 32px 12px; }
  .about-img-secondary { height: 200px; border-radius: 24px 10px 24px 10px; }
  .about-stat-bubble { width: 86px; height: 86px; }
  .about-stat-bubble .num { font-size: 22px; }

  /* ── Turnaround Speed Filter (tests.html) ── */
  .speed-filter-wrap {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    gap: 8px;
  }
  .speed-tab { flex-shrink: 0; white-space: nowrap; padding: 7px 14px; font-size: 12.5px; }

  /* ── Pre-test Checklist (tests.html) ── */
  .checklist-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }

  /* ── Clinical Tools Quick Links Bar ── */
  .clinical-tools-bar { flex-direction: column; align-items: stretch; gap: 10px; }
  .clinical-tool-pill { justify-content: space-between; padding: 10px 18px; }

  /* ── Bundle Calculator (tests.html) ── */
  .bundle-calc-header { padding: 16px; gap: 12px; }
  .bundle-calc-body { padding: 16px; }
  .bundle-calc-title { gap: 10px; }
  .bundle-calc-icon { width: 38px; height: 38px; font-size: 20px; }
  .bundle-calc-title h3 { font-size: 16px; }
  .bundle-calc-status-badge { width: 100%; justify-content: center; }
  .bundle-footer-bar #btn-book-bundle { width: 100%; justify-content: center; }

  /* ── Healthcare Providers Hub (services.html) ── */
  .providers-section { padding: 48px 0; }
  .provider-card { padding: 24px 20px; }

  /* ── Contact Page Info Card ── */
  .contact-info-content { padding: 32px 20px; }
  .contact-info-content h3 { font-size: 24px; }
  .contact-info-content .sub { margin-bottom: 24px; }
  .contact-detail-item { margin-bottom: 20px; }
}
@media (max-width: 480px) {
  :root {
    --top-bar-h: 36px;
    --header-h: 62px;
  }
  .container { padding: 0 16px; }
  .live-status-pill {
    max-width: 140px;
  }
  .live-status-pill span:last-child {
    max-width: 110px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
  }
  .header-right .btn {
    padding: 6px 10px;
    font-size: 12px;
  }
  .logo-img {
    height: 38px;
  }
  .stat-alert-banner {
    padding: 6px 10px;
    gap: 6px;
    border-radius: 12px;
    width: 100%;
  }
  .stat-alert-text {
    font-size: 12px;
    line-height: 1.35;
  }
  .stat-alert-tag {
    font-size: 10px;
    padding: 2px 6px;
  }
  .stats-card-container { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(0, 157, 181, 0.08); }
  .stat-item:last-child { border-bottom: none; }
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }

  /* Extra compact phone refinements */
  .finder-scenarios-grid { grid-template-columns: 1fr; }
  .about-img-stack { height: 290px; }
  .about-img-main { height: 240px; border-radius: 24px 10px 24px 10px; }
  .about-img-secondary { height: 160px; border-radius: 18px 8px 18px 8px; }
  .about-stat-bubble { width: 76px; height: 76px; }
  .about-stat-bubble .num { font-size: 19px; }
  .about-stat-bubble .lbl { font-size: 9.5px; }
  .service-img { height: 190px; }
  .alt-img { height: 190px; }
  .location-img-wrap { height: 190px; }
  .wave-banner-portal .portal-frame img { height: 200px; }
  .modal-card { width: calc(100% - 16px); margin: 8px auto; border-radius: 16px; }
  .modal-header { padding: 16px 16px 12px; }
  .modal-body { padding: 16px 16px 20px; }
  .modal-close-btn { top: 12px; right: 12px; width: 28px; height: 28px; }
}

/* ════════════════════════════════════════════════════════════
   ADA ACCESSIBILITY SUITE & SKIP LINK (WCAG 2.1 AA)
   ════════════════════════════════════════════════════════════ */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--navy);
  color: #00FFD1;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13px;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
  border: 2px solid var(--teal);
}
.skip-to-content:focus {
  top: 12px;
}

.accessibility-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.a11y-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  padding: 2px 5px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.a11y-btn:hover, .a11y-btn:focus {
  background: rgba(0, 212, 245, 0.25);
  color: #00D4F5;
}

/* Font Resizing Scale */
body.text-large { font-size: 17.5px; }
body.text-large p, body.text-large li, body.text-large span { font-size: 1.08em; }
body.text-large h1 { font-size: 1.12em; }
body.text-large h2 { font-size: 1.12em; }

body.text-xl { font-size: 19.5px; }
body.text-xl p, body.text-xl li, body.text-xl span { font-size: 1.18em; }
body.text-xl h1 { font-size: 1.20em; }
body.text-xl h2 { font-size: 1.20em; }

/* High-Contrast Mode */
body.high-contrast {
  background: #000000 !important;
  color: #FFFFFF !important;
}
body.high-contrast .top-utility-bar {
  background: #000000 !important;
  border-bottom: 2px solid #00FFD1 !important;
}
body.high-contrast .site-header {
  background: #000000 !important;
  border-bottom: 2px solid #FFFFFF !important;
}
body.high-contrast section, body.high-contrast .section-white, body.high-contrast .section-soft {
  background: #080808 !important;
  color: #FFFFFF !important;
}
body.high-contrast .test-card, body.high-contrast .service-card, body.high-contrast .review-card, body.high-contrast .checklist-item, body.high-contrast .finder-results-box, body.high-contrast .pricing-card {
  background: #121212 !important;
  border: 2px solid #00FFD1 !important;
  color: #FFFFFF !important;
}
body.high-contrast h1, body.high-contrast h2, body.high-contrast h3, body.high-contrast h4 {
  color: #00FFD1 !important;
}
body.high-contrast a { color: #00FFD1 !important; }
body.high-contrast .site-header .main-nav li a { color: #FFFFFF !important; }
body.high-contrast .site-header .phone-link { color: #00FFD1 !important; }
body.high-contrast .site-header .hamburger span { background: #00FFD1 !important; }

/* STAT RAPID TESTING HERO ALERT PILL */
.stat-alert-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  background: rgba(0, 212, 245, 0.12);
  border: 1px solid rgba(0, 212, 245, 0.35);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  margin-bottom: 20px;
  text-decoration: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}
.stat-alert-banner:hover {
  background: rgba(0, 212, 245, 0.24);
  border-color: #00D4F5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 245, 0.25);
}
.stat-alert-tag {
  background: #00FFD1;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-alert-text {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
}
.stat-alert-arrow {
  color: #00D4F5;
  font-weight: 700;
}

/* TRANSPARENT PRICING & INSURANCE SUPERBILL SECTION */
.pricing-section {
  padding: 96px 0;
  background: var(--bg-soft);
  position: relative;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.pricing-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1.5px solid rgba(0, 157, 181, 0.15);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: 0 12px 36px rgba(0, 157, 181, 0.15);
}
.pricing-badge-top {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--navy);
  color: #00FFD1;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pricing-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: inline-block;
}
.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.pricing-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-dark);
}
.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* DYNAMIC MOBILE CONCIERGE FIELDS IN QUICK BOOKING MODAL */
.modal-mobile-fields {
  display: none;
  grid-column: span 2;
  background: rgba(0, 157, 181, 0.05);
  border: 1.5px dashed rgba(0, 157, 181, 0.35);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 8px;
  gap: 12px;
}
.modal-mobile-fields.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-mobile-fields .full {
  grid-column: span 2;
}
.modal-zip-status {
  grid-column: span 2;
  font-size: 12px;
  font-weight: 600;
  display: none;
  padding: 6px 12px;
  border-radius: 6px;
}
.modal-zip-status.success {
  display: block;
  background: #e6fffa;
  color: #047857;
  border: 1px solid #a7f3d0;
}
.modal-zip-status.notice {
  display: block;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

/* ════════════════════════════════════════════════════════════
   CLINICAL TOOLS & PHYSICIAN DIRECTORY QUICK-LINKS
   ════════════════════════════════════════════════════════════ */
.clinical-tools-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  margin-bottom: 8px;
}

.clinical-tool-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(10, 22, 40, 0.04);
}

.clinical-tool-pill:hover {
  background: #FFFFFF;
  border-color: var(--teal);
  color: var(--teal-dark, #007a8d);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 184, 217, 0.15);
}

.clinical-tool-pill .tool-icon {
  font-size: 14px;
}

.clinical-tool-pill .tool-arrow {
  color: var(--teal);
  font-weight: 700;
  transition: transform 0.2s ease;
}

.clinical-tool-pill:hover .tool-arrow {
  transform: translateX(3px);
}

/* ════════════════════════════════════════════════════════════
   INTERACTIVE TEST BUNDLE & FASTING CALCULATOR (tests.html)
   ════════════════════════════════════════════════════════════ */
.bundle-calculator-box {
  background: #FFFFFF;
  border: 1.5px solid rgba(0, 184, 217, 0.3);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.06), 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 36px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.bundle-calculator-box.has-bundle {
  border-color: var(--teal);
  box-shadow: 0 12px 36px rgba(0, 184, 217, 0.12), 0 2px 8px rgba(10, 22, 40, 0.08);
}

.bundle-calc-header {
  background: linear-gradient(135deg, #0A1628 0%, #0F2A4A 100%);
  color: #FFFFFF;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.bundle-calc-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bundle-calc-icon {
  font-size: 26px;
  background: rgba(0, 212, 245, 0.15);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 212, 245, 0.3);
  flex-shrink: 0;
}

.bundle-calc-title h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 3px 0;
  letter-spacing: -0.2px;
}

.bundle-calc-title p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.4;
}

.bundle-calc-status-badge {
  background: rgba(0, 212, 245, 0.15);
  border: 1px solid rgba(0, 212, 245, 0.4);
  color: #00FFD1;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.bundle-calc-body {
  padding: 24px;
}

.bundle-items-area {
  background: #F8FAFC;
  border: 1px dashed #CBD5E1;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 20px;
}

.bundle-items-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.btn-clear-bundle {
  background: none;
  border: none;
  color: #EF4444;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.btn-clear-bundle:hover {
  opacity: 0.8;
}

.bundle-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 36px;
  align-items: center;
}

.bundle-empty-notice {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bundle-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #00B8D9;
  color: #0A1628;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 184, 217, 0.12);
  animation: bundlePillIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes bundlePillIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.bundle-pill-name {
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bundle-pill-remove {
  background: #F1F5F9;
  border: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #64748B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.bundle-pill-remove:hover {
  background: #EF4444;
  color: #FFFFFF;
}

.bundle-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .bundle-summary-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.bundle-metric-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.bundle-metric-card .metric-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748B;
  font-weight: 700;
  margin-bottom: 6px;
}

.bundle-metric-card .metric-val {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.bundle-metric-card .metric-hint {
  font-size: 11.5px;
  color: #64748B;
  line-height: 1.35;
}

.bundle-metric-card.highlight-prep {
  border-color: rgba(0, 184, 217, 0.35);
  background: #F0FDFA;
}

.bundle-metric-card.highlight-prep .metric-val {
  color: #0E7490;
}

.bundle-metric-card.highlight-prep.requires-fasting {
  border-color: #FBBF24;
  background: #FFFBEB;
}

.bundle-metric-card.highlight-prep.requires-fasting .metric-val {
  color: #B45309;
}

.bundle-metric-card.highlight-savings {
  border-color: rgba(16, 185, 129, 0.35);
  background: #F0FDF4;
}

.bundle-metric-card.highlight-savings .metric-val {
  color: #047857;
}

.bundle-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid #E2E8F0;
}

.bundle-footer-info {
  flex: 1;
  min-width: 260px;
}

.bundle-protocol-note {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.45;
}

/* Add to Bundle Card Button in .test-card-footer */
.test-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-bundle-toggle {
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  color: var(--navy);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.btn-bundle-toggle:hover {
  background: #E2E8F0;
  border-color: var(--teal);
  color: var(--teal-dark, #007a8d);
}

.btn-bundle-toggle.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 184, 217, 0.3);
}

.btn-bundle-toggle.active:hover {
  background: var(--teal-dark, #007a8d);
}

