/* ====================================================================
   GLOBAL.CSS — Cognitive Works shared stylesheet
   Extracted from index.html · All pages link to this file.
   Page-specific styles remain inline in each HTML file.
   ==================================================================== */

/* ====================================================
   BASE — reset, body, links, images, color tokens
==================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #132744;
  background: #fff;
  overflow-x: hidden;
  scrollbar-width: none; -ms-overflow-style: none;
}
body::-webkit-scrollbar { display: none;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; transition: color .35s; }
img { display: block; max-width: 100%; height: auto; }

/* Site color tokens */
:root {
  --blue:      #132744;
  --blue-hov:  #142850;
  --dark:      #132744;
  --white:     #ffffff;
  --off-white: #f8f9fa;
  --mid-gray:  #6c757d;
  --border:    #dee2e6;
}

/* ====================================================
   PRELOADER  (blue ring)
==================================================== */
#preloader {
  position: fixed; inset: 0; background: #fff;
  z-index: 99999; display: flex; align-items: center; justify-content: center;
  animation: fadeOut .4s ease 1s forwards;
  pointer-events: none;
}
.circle-ring {
  width: 60px; height: 60px; border-radius: 50%;
  border: 3px solid var(--blue);
  border-left-color: transparent;
  animation: spin 1.2s linear infinite;
}
@keyframes spin  { to { transform: rotate(360deg); } }
@keyframes fadeOut { to { opacity: 0; visibility: hidden; } }

/* ====================================================
   HEADER — fixed nav, centered layout
==================================================== */
#sp-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 60px;
  background: #0e1d33;
  box-shadow: 0 3px 14px rgba(0,0,0,.35);
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
#sp-header.header-visible {
  transform: translateY(0);
}
#sp-header .container {
  max-width: 1140px; margin: 0 auto;
  padding: 0 15px; height: 100%;
}
.header-inner {
  display: flex; align-items: center; justify-content: center;
  height: 100%; position: relative;
}

/* Logo — always visible, left side */
.logo-wrap { display: flex; align-items: center; height: 60px; flex-shrink: 0; }
.logo-wrap a { display: flex; align-items: center; }
.logo-wrap img {
  height: 44px; width: auto;
  filter: brightness(0) invert(1); opacity: .9;
  transition: opacity .3s ease;
}
#sp-header.logo-hidden .logo-wrap img { opacity: 0; pointer-events: none; }

/* Nav layout */
.nav-center-group {
  display: flex; align-items: center; gap: 6px;
}
/* Desktop nav */
.sp-megamenu-parent {
  list-style: none; display: flex; align-items: center;
  gap: 0; margin: 0; white-space: nowrap;
}
.sp-megamenu-parent li a,
.sp-megamenu-parent li span {
  display: inline-block;
  padding: 0 14px;
  line-height: 60px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color .3s;
}
.sp-megamenu-parent li:hover > a { color: #fff; }
.sp-megamenu-parent li.active > a { font-weight: 600; color: #fff; }

/* ZocDoc book button */
.zocdoc-wrap { margin-left: 14px; }
.zocdoc-wrap img { height: 38px; width: auto; border: 0; border-radius: 4px; }

/* Hamburger (mobile) */
.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; margin-left: 10px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: background .3s;
}
#sp-header .burger span { background: #fff; }

/* ====================================================
   SECTIONS — shared layout primitives
==================================================== */
.section { padding: 30px 0; }
.section--alt { background: var(--off-white); }
.container {
  max-width: 1140px; margin: 0 auto; padding: 0 15px;
}
.section-label {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700; color: var(--dark);
  line-height: 1.25; margin-bottom: 14px;
}
.section-body {
  font-size: .975rem; color: var(--mid-gray);
  line-height: 1.8; max-width: 560px;
}
.section-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 20px; margin-bottom: 48px;
}

/* ====================================================
   SERVICES
==================================================== */
.services-grid {
  display: flex; flex-direction: row; align-items: stretch;
  gap: 12px; max-width: 1140px; margin: 0 auto;
}
.svc-card {
  flex: 1; min-width: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 14px 16px;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.svc-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.10); transform: translateY(-4px); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 34px; height: 34px; border-radius: 7px;
  background: #EBF1FD; display: flex; align-items: center;
  justify-content: center; margin-bottom: 8px;
}
.svc-icon svg { width: 17px; height: 17px; stroke: var(--blue); fill: none; stroke-width: 2; }
.svc-duration { font-size: .68rem; font-weight: 600; color: var(--mid-gray); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
.svc-title { font-family: 'Poppins', sans-serif; font-size: .88rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; line-height: 1.3; }
.svc-desc { font-size: .78rem; color: var(--mid-gray); line-height: 1.55; flex: 1; }
.svc-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 16px; font-size: .85rem; font-weight: 600;
  color: var(--blue); transition: gap .2s;
}
.svc-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform .2s; }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* ====================================================
   ABOUT DR. C
==================================================== */
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-frame {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #1e3a6e, #2a4a80);
  display: flex; align-items: center; justify-content: center;
}
.about-img-frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-img-frame-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: .35;
}
.about-img-frame-placeholder svg { width: 56px; height: 56px; stroke: #fff; fill: none; stroke-width: 1.2; }
.about-img-frame-placeholder span { font-size: .85rem; color: #fff; font-family: 'Poppins', sans-serif; }
.about-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: #fff; border-radius: 10px; box-shadow: 0 8px 28px rgba(0,0,0,.12);
  padding: 14px 16px; display: flex; align-items: center; gap: 10px;
}
.about-badge-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: #EBF1FD;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-badge-icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 2; }
.about-badge strong { display: block; font-size: .9rem; font-weight: 700; color: var(--dark); }
.about-badge span { font-size: .75rem; color: var(--mid-gray); }
.about-creds { margin: 28px 0 32px; }
.cred-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.cred-card { background: #fff; border: 1px solid #e8edf4; border-radius: 10px; padding: 16px 18px; transition: box-shadow .2s; }
.cred-card:hover { box-shadow: 0 4px 16px rgba(11,26,62,.06); }
.cred-card-label { font-family: 'Poppins', sans-serif; font-size: .64rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: #94a3b8; margin-bottom: 5px; }
.cred-card-value { font-family: 'Poppins', sans-serif; font-size: .86rem; font-weight: 600; color: var(--dark); line-height: 1.4; }
.cred-card-sub { font-family: 'Poppins', sans-serif; font-size: .76rem; color: var(--mid-gray); font-weight: 400; margin-top: 2px; }
.about-footer { font-family: 'Poppins', sans-serif; font-size: .78rem; color: #94a3b8; font-weight: 500; letter-spacing: .01em; }
.cert-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px; }
.cert-tag {
  padding: 5px 12px; border-radius: 50px;
  border: 1.5px solid #d0dcf5; font-size: .76rem;
  font-weight: 500; color: var(--mid-gray); background: #fff;
}

/* Shared buttons */
.btn-solid {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem; font-weight: 600;
  padding: 12px 26px; border-radius: 50px;
  transition: background .3s, transform .2s, box-shadow .3s;
}
.btn-solid:hover {
  background: var(--blue-hov); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11,26,62,.4);
}
.btn-solid svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.btn-outline-blue {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem; font-weight: 600;
  padding: 12px 26px; border-radius: 50px;
  border: 2px solid var(--blue);
  transition: background .3s, color .3s, transform .2s;
}
.btn-outline-blue:hover {
  background: var(--blue); color: #fff;
  transform: translateY(-2px);
}

/* ====================================================
   STATS ROW
==================================================== */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.stat-item { text-align: center; padding: 28px 16px; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem; font-weight: 700;
  color: var(--blue); line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: .85rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.stat-desc { font-size: .8rem; color: var(--mid-gray); line-height: 1.6; }

/* ====================================================
   APPROACH SECTION
==================================================== */
.approach-inner {
  display: block; max-width: 820px; margin: 0 auto;
}
.approach-cards { display: flex; flex-direction: column; gap: 14px; }
.approach-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 20px 22px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: border-color .3s, box-shadow .3s;
}
.approach-card:hover { border-color: #8a9cc4; box-shadow: 0 4px 16px rgba(11,26,62,.08); }
.approach-num {
  width: 32px; height: 32px; border-radius: 8px;
  background: #EBF1FD; color: var(--blue);
  font-size: .85rem; font-weight: 700; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
}
.approach-card-title { font-size: .9375rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.approach-card-tag { font-size: .75rem; color: #5a8dee; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 4px; }
.approach-card-tag strong { color: var(--dark); }
.approach-card-desc { font-size: .85rem; color: var(--mid-gray); line-height: 1.65; }
.approach-perspectives { display: flex; flex-direction: column; gap: 0; }
.persp-item { display: flex; align-items: center; gap: 20px; padding: 18px 0; border-bottom: 1px solid #e8edf4; }
.persp-item:last-child { border-bottom: none; }
.persp-num { font-family: 'Poppins', sans-serif; font-size: .72rem; font-weight: 700; color: #c0c9d8; letter-spacing: .02em; min-width: 24px; }
.persp-name { font-family: 'Poppins', sans-serif; font-size: .95rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.persp-q { font-family: 'Poppins', sans-serif; font-size: .8rem; color: #94a3b8; font-weight: 400; margin-top: 1px; }
.persp-q strong { color: var(--dark); font-weight: 600; }

/* ====================================================
   TELEHEALTH BANNER
==================================================== */
.telehealth-banner {
  background: linear-gradient(120deg, #060f24 0%, var(--blue) 100%);
  border-radius: 14px; margin: 0 15px;
  padding: 52px 56px; position: relative; overflow: hidden;
}
.telehealth-banner::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.telehealth-banner::after {
  content: ''; position: absolute;
  bottom: -80px; left: -30px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.telehealth-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 36px; flex-wrap: wrap; position: relative; z-index: 1;
}
.tl-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 4px 12px; border-radius: 50px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.9); margin-bottom: 12px;
}
.tl-dot { width: 7px; height: 7px; border-radius: 50%; background: #7de8c8; }
.tl-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700; color: #fff; line-height: 1.25;
}
.tl-body { font-size: .95rem; color: rgba(255,255,255,.78); margin-top: 10px; max-width: 440px; line-height: 1.75; }
.tl-states { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.tl-state {
  padding: 5px 13px; border-radius: 50px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  font-size: .8rem; font-weight: 600; color: #fff;
}
.btn-tl {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem; font-weight: 700;
  padding: 13px 28px; border-radius: 50px;
  transition: background .3s, transform .2s, box-shadow .3s;
}
.btn-tl:hover {
  background: rgba(255,255,255,.9); color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.btn-tl-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem; font-weight: 600;
  padding: 13px 28px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,.6);
  transition: background .3s, border-color .3s, transform .2s;
}
.btn-tl-outline:hover {
  background: rgba(255,255,255,.12); border-color: #fff;
  transform: translateY(-2px);
}
.tl-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ====================================================
   INSURANCE
==================================================== */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  max-width: 780px; margin: 0 auto;
}
.insurance-card {
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px; padding: 10px 8px;
  transition: box-shadow .3s, border-color .3s;
}
.insurance-card:hover {
  box-shadow: 0 4px 12px rgba(11,26,62,.07);
  border-color: #8a9cc4;
}
.ins-name {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem; font-weight: 600; color: var(--dark);
  letter-spacing: .01em; text-align: center;
}
@media (max-width: 768px) {
  .insurance-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}
@media (max-width: 480px) {
  .insurance-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
}

/* ====================================================
   BOOKING CTA
==================================================== */
.booking-cta {
  text-align: center; padding: 48px 20px;
}
.booking-cta .section-title { margin: 0 auto 12px; max-width: 560px; }
.booking-cta .section-body { margin: 0 auto 32px; text-align: center; }
.booking-cta-btns {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.cta-contact {
  margin-top: 20px; font-size: .85rem; color: var(--mid-gray);
}
.cta-contact a { color: var(--blue); font-weight: 600; }
.cta-contact a:hover { color: var(--blue-hov); }

/* ====================================================
   FOOTER  (dark, matches site aesthetic)
==================================================== */
#footer {
  background: #0e1d33;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: auto 1fr 1fr 1.4fr; gap: 40px;
  margin-bottom: 40px; align-items: start;
}
.footer-logo-col {
  display: flex; align-items: center; justify-content: center;
  align-self: stretch;
}
.footer-logo-col img {
  height: 100%; max-height: 160px; width: auto;
  filter: brightness(0) invert(1); opacity: .85;
  object-fit: contain;
}
.footer-desc { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 280px; }
.footer-col-title {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .3s; }
.footer-links a:hover { color: #fff; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 9px; margin-bottom: 12px;
}
.footer-contact-item svg { width: 15px; height: 15px; stroke: #6fa0f7; fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.55; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-disclaimer { font-size: .72rem; color: rgba(255,255,255,.25); max-width: 560px; line-height: 1.65; }

/* ====================================================
   MOBILE NAV DRAWER
==================================================== */
.offcanvas-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6); backdrop-filter: blur(6px);
  z-index: 999; opacity: 0; visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.offcanvas-overlay.open,
.offcanvas-overlay.active { opacity: 1; visibility: visible; }
.offcanvas-menu {
  position: fixed; top: 0; right: -300px; bottom: 0;
  width: 280px; background: #fff; z-index: 1000;
  padding: 24px 20px;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.offcanvas-menu.open,
.offcanvas-menu.active { right: 0; }
.offcanvas-close {
  display: flex; align-items: center; justify-content: flex-end;
  margin-bottom: 24px; cursor: pointer;
}
.offcanvas-close svg { width: 22px; height: 22px; stroke: var(--dark); fill: none; stroke-width: 2; }
.offcanvas-nav { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.offcanvas-nav li a {
  display: block; padding: 12px 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem; font-weight: 500; color: var(--dark);
  border-bottom: 1px solid #f0f0f0;
  transition: color .2s;
}
.offcanvas-nav li a:hover,
.offcanvas-nav li.active a { color: var(--blue); }
.offcanvas-zocdoc { margin-top: 24px; }
.offcanvas-zocdoc img { height: 40px; }

/* ====================================================
   PATIENT REVIEWS
==================================================== */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.review-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 6px; padding: 11px 12px 10px;
  transition: box-shadow .3s, transform .3s;
  display: flex; flex-direction: column;
}
.review-card:hover { box-shadow: 0 3px 12px rgba(0,0,0,.05); transform: translateY(-1px); }
.review-card-stars { color: #f5a623; font-size: .62rem; letter-spacing: .5px; margin-bottom: 4px; }
.review-card-text {
  font-size: .68rem; color: #4a5568; line-height: 1.45;
  flex: 1; font-style: italic;
}
.review-card-author {
  margin-top: 7px; font-size: .62rem; font-weight: 600;
  color: var(--dark); display: flex; align-items: center; gap: 4px;
}
.reviews-toggle-wrap { text-align: center; margin-top: 28px; }
.reviews-toggle-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 28px; border-radius: 50px;
  border: 2px solid var(--blue); color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem; font-weight: 600;
  background: transparent; cursor: pointer;
  transition: background .3s, color .3s;
}
.reviews-toggle-btn:hover { background: var(--blue); color: #fff; }
.reviews-toggle-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform .3s; }
.reviews-hidden { display: none; }

/* ====================================================
   STICKY BOTTOM APPOINTMENT / CALL BAR
==================================================== */
.sticky-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #0e1d33 0%, #132744 100%);
  box-shadow: 0 -4px 20px rgba(0,0,0,.35);
  padding: 0;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.sticky-cta-bar.bar-visible {
  transform: translateY(0);
}
.sticky-cta-bar__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 20px;
}
.sticky-cta-bar__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .3px;
  white-space: nowrap;
}
.sticky-cta-bar__phone a {
  color: #fff;
  font-weight: 600;
}
.sticky-cta-bar__phone a:hover {
  color: #90caf9;
}
.sticky-cta-bar__phone svg {
  flex-shrink: 0;
  animation: ringPulse 2s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(6deg); }
  40% { transform: rotate(0); }
}
.sticky-cta-bar__divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}
.sticky-cta-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #132744;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  letter-spacing: .3px;
  white-space: nowrap;
  transition: all .3s ease;
  box-shadow: 0 2px 12px rgba(255,255,255,.15);
}
.sticky-cta-bar__btn:hover {
  background: #e8edf5;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(255,255,255,.25);
  color: #132744;
}
.sticky-cta-bar__btn svg { flex-shrink: 0; }

/* Add bottom padding to body so footer isn't hidden behind bar */
body { padding-bottom: 62px; }

/* ====================================================
   SHARED UTILITY ANIMATIONS
==================================================== */
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ====================================================
   RESPONSIVE — global breakpoints
==================================================== */
@media (max-width: 991px) {
  .sp-megamenu-parent, .zocdoc-wrap.desktop { display: none; }
  .burger { display: flex; }
  .nav-center-group { margin: 0 auto; }
  .services-grid { flex-wrap: wrap; }
  .svc-card { flex: 1 1 calc(50% - 12px); min-width: 200px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { max-width: 420px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .approach-inner { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-logo-col { grid-column: 1 / -1; justify-content: center; }
  .footer-logo-col img { height: 60px; max-height: 60px; }
  .telehealth-banner { padding: 36px 28px; margin: 0 8px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .hero-logo { max-width: 160px; }
  .hero-headline h1 { font-size: 1.3rem; }
  .hero-cred-line { flex-direction: column; gap: 6px; }
  .hero-cred-sep { display: none; }
  .hero-trust-row { flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas a { width: 100%; max-width: 280px; justify-content: center; }
  .nondiscrim-bar { max-width: 280px !important; padding: 4px 12px !important; height: auto !important; white-space: normal !important; border-radius: 6px !important; font-size: .45rem !important; line-height: 1.35 !important; text-align: center !important; }
  .services-grid { flex-direction: column; gap: 10px; }
  .svc-card { flex: none; width: 100%; padding: 14px 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo-col { grid-column: 1; justify-content: center; }
  .footer-logo-col img { height: 50px; max-height: 50px; }
  .footer-links { align-items: center; }
  .footer-contact-item { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column; align-items: center; }
  .booking-cta-btns { flex-direction: column; align-items: center; }
  .trust-divider { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-badge { flex-direction: column; text-align: center; gap: 8px; }
}

/* Mobile adjustments for sticky bar */
@media (max-width: 600px) {
  .sticky-cta-bar__inner {
    gap: 10px;
    padding: 10px 14px;
  }
  .sticky-cta-bar__phone { font-size: .82rem; }
  .sticky-cta-bar__btn { font-size: .8rem; padding: 9px 16px; }
  .sticky-cta-bar__divider { height: 24px; }
}
