*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:        #1b3a6b;
  --teal:        #2ab3b1;
  --teal2:       #27a4a2;
  --orange:      #f0a500;
  --gray-bg:     #f4f6f8;
  --text:        #333;
  --mid:         #555;
  --light:       #777;
  --border:      #dde3ea;
  --white:       #fff;
  --topbar-blue: #006EB2;
  --navbar-dark: #0B0B0B;
}
html { scroll-behavior: smooth; zoom: 1.10; overflow-x: hidden; }
@media (max-width: 768px) {
  html { zoom: 1; }
}
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; font-size: 19px; line-height: 1.65; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.header-container {
  max-width: 1240px; margin: 0 auto; padding: 0 32px; position: relative;
}

.topbar { background: var(--topbar-blue); }
.topbar .header-container {
  height: 44px; padding-left: 170px;
  display: flex; align-items: center;
}
.topbar-locations {
  flex: 1; display: flex; align-items: center; justify-content: center;
}
.topbar-loc-item {
  color: #fff; font-size: 13px; font-weight: 700;
  letter-spacing: 0.6px; text-transform: uppercase;
  padding: 0 14px; white-space: nowrap;
  transition: opacity .18s;
}
a.topbar-loc-item:hover { opacity: .72; }
.topbar-loc-sep {
  color: rgba(255,255,255,0.7); font-size: 18px; font-weight: 300;
  line-height: 1; user-select: none; flex-shrink: 0;
  border-left: 1.5px solid rgba(255,255,255,0.65); height: 14px; width: 0; padding: 0;
}
.topbar-ctas {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.tb-btn {
  color: #fff; border: 1.5px solid rgba(255,255,255,0.75);
  border-radius: 20px; padding: 5px 14px;
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  white-space: nowrap; display: inline-flex; align-items: center; gap: 6px;
  transition: background .2s; flex-shrink: 0;
}
.tb-btn svg { width: 13px; height: 13px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.tb-btn:hover { background: rgba(255,255,255,0.15); }
.tb-btn-appt {
  background: #fff; border-color: #fff; color: #000;
}
.tb-btn-appt svg { stroke: #000; }
.tb-btn-appt:hover { background: #f0f0f0; border-color: #f0f0f0; }

.site-header { position: sticky; top: 0; z-index: 900; }
.nav-logo {
  position: absolute;
  left: max(32px, calc((100% - 1240px) / 2 + 32px));
  top: 0; z-index: 200; display: block;
}
.nav-logo img { height: 132px; object-fit: contain; display: block; }
.navbar { background: var(--navbar-dark); box-shadow: 0 2px 10px rgba(0,0,0,.25); }
.navbar .header-container {
  display: flex; align-items: center; justify-content: center;
  height: 68px;
}
.nav-links { display: flex; list-style: none; gap: 0; }
.nav-links > li { position: relative; display: flex; flex-direction: column; justify-content: center; }
.nav-links > li > a {
  display: block; padding: 0 13px; line-height: 68px;
  font-size: 13px; font-weight: 700; color: #ffffff;
  text-transform: uppercase; letter-spacing: .4px;
  transition: color .2s; white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li.active > a { color: var(--teal); }
.nav-links > li::after {
  content: ''; display: block; height: 3px;
  background: var(--teal); transform: scaleX(0);
  transition: transform .22s; transform-origin: left;
}
.nav-links > li:hover::after { transform: scaleX(1); }
.nav-links > li.active::after { transform: scaleX(1); transition: none; }

.nav-appt {
  position: absolute; right: 32px;
  background: #AAC9D9; color: #fff;
  border-radius: 22px; padding: 8px 18px;
  font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 7px;
  white-space: nowrap; transition: opacity .2s;
}
.nav-appt svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.nav-appt:hover { opacity: .88; }

.drop { display: none; position: absolute; top: 100%; left: 0; min-width: 240px; background: #fff; box-shadow: 0 6px 20px rgba(0,0,0,.12); border-top: 3px solid var(--teal); z-index: 800; list-style: none; }
.nav-links > li:hover > .drop { display: block; }
.drop li a { display: block; padding: 10px 18px; font-size: 15px; font-weight: 600; color: var(--text); border-bottom: 1px solid #f0f4f8; transition: background .15s, color .15s; }
.drop li a:hover { background: var(--gray-bg); color: var(--teal); }
.drop li { position: relative; }
.subdrop { display: none; position: absolute; left: 100%; top: 0; min-width: 200px; background: #fff; box-shadow: 0 6px 20px rgba(0,0,0,.12); border-top: 3px solid var(--teal); list-style: none; }
.drop li:hover > .subdrop { display: block; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; position: absolute; right: 32px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #ffffff; border-radius: 2px; }

.hero {
  position: relative;
  min-height: 480px !important;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-position: center top !important;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-container {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
  width: 100%; display: flex; align-items: flex-end;
}
.hero-content {
  padding: 0 0 36px 0;
  max-width: 520px;
}
.hero-eyebrow {
  font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.85);
  letter-spacing: 1.5px; margin-bottom: 10px;
  text-transform: uppercase;
  opacity: 0; animation: fadeInUp 0.6s ease forwards 0.2s;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.6vw, 4.48rem);
  font-weight: 600; color: #fff; line-height: 1.15;
  white-space: normal; margin-bottom: 6px;
  opacity: 0; animation: fadeInUp 0.6s ease forwards 0.4s;
}
.hero-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 500; color: #fff;
  font-style: italic; margin-bottom: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  opacity: 1;
}
.hero-content p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400; color: rgba(255,255,255,0.9);
  font-style: italic;
}

.services-row {
  background: #fff;
}
.services-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 20px 32px 64px;
}
.svc-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 28px 16px;
  border-radius: 16px; cursor: pointer; text-decoration: none;
  min-height: 155px;
  border: 1.5px solid rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.10); }
.svc-item img { width: 65px; height: 65px; object-fit: contain; }
.svc-item span { font-size: 16px; font-weight: 700; color: #333; text-align: center; margin-top: 14px; }
.svc-pediatrics    { background: #E5F5FF; }
.svc-adult-primary { background: #FFF5D4; }
.svc-behavioral    { background: #E1FEEC; }
.svc-aba           { background: #FFEADF; }
.svc-speech        { background: #F2E5FE; }

.halo-section {
  background: #E5F5FF;
  padding: 52px 0;
}
.halo-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
  gap: 0;
}
.halo-left {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}
.halo-left img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 14px;
  animation: float 3.5s ease-in-out infinite;
}
.halo-left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.25;
}
.halo-left p {
  font-size: 17px;
  color: #555;
  margin: 0;
}
.halo-center {
  flex: 2;
  padding: 0 36px;
  border-left: 1.5px solid rgba(0,0,0,0.12);
}
.halo-center h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px 0;
}
.halo-center ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.halo-center ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: #333;
  font-weight: 500;
}
.halo-center ul li .halo-li-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(42,179,177,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.halo-right {
  flex: 1.7;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  padding: 0 0 0 28px;
  border-left: 1.5px solid rgba(0,0,0,0.12);
  justify-content: center;
}
.halo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 12px 18px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 15.5px;
  font-weight: 600;
  transition: box-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
}
.halo-btn:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.12); transform: translateY(-2px); }
.halo-btn svg { flex-shrink: 0; }
.halo-btn-portal {
  background: var(--teal);
  color: #fff;
  border-color: transparent;
}
@media (max-width: 768px) {
  .halo-inner { flex-direction: column; padding: 0 20px; }
  .halo-left, .halo-center, .halo-right { padding: 24px 0; border-left: none; border-top: 1.5px solid rgba(0,0,0,0.12); }
  .halo-left { border-top: none; }
}

.section { padding: 44px 32px; }
.container { max-width: 1180px; margin: 0 auto; }
.sec-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.sec-sub { color: var(--mid); font-size: 17px; margin-bottom: 36px; }

.locations { background: #fff; }
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.flip-card {
  flex: 0 0 calc(33.33% - 16px);
  max-width: calc(33.33% - 16px);
  height: 240px;
  perspective: 1000px;
  cursor: pointer;
}
.flip-card-inner {
  position: relative;
  width: 100%; height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner { transform: rotateY(180deg); }
.flip-card:hover .flip-card-front,
.flip-card.flipped .flip-card-front { pointer-events: none; }
.flip-card:hover .flip-card-back,
.flip-card.flipped .flip-card-back { pointer-events: auto; }
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%; height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
}
.flip-card-front {
  background: #fff;
  border: 1px solid #e8eaed;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.flip-card-front-icon {
  width: 60px; height: 60px;
  background: rgba(42,179,177,0.12);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--teal);
  margin-bottom: 14px;
}
.flip-card-front h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--navy); margin: 0 0 4px;
}
.flip-card-front p {
  font-size: 0.8rem; color: #aaa; margin: 0;
}
.flip-card-back {
  background: var(--navy);
  color: #fff;
  transform: rotateY(180deg);
}
.flip-card-back-icon {
  font-size: 1.4rem; color: var(--teal); margin-bottom: 10px;
}
.flip-card-back h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: #fff; margin: 0 0 8px;
}
.flip-card-back address {
  font-style: normal; font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.55; margin-bottom: 18px;
}
.flip-card-back .loc-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 20px; font-size: 0.8rem; font-weight: 600;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
}
.flip-card-back .loc-btn-peds   { background: #A8D8FF; color: #0c2d5a; border-color: transparent; }
.flip-card-back .loc-btn-adult  { background: #FFE066; color: #0c2d5a; border-color: transparent; }
.flip-card-back .loc-btn-bh     { background: #7FF5C0; color: #0c2d5a; border-color: transparent; }
.flip-card-back .loc-btn-aba    { background: #FFB98A; color: #0c2d5a; border-color: transparent; }
.flip-card-back .loc-btn-speech { background: #D4A0FF; color: #0c2d5a; border-color: transparent; }
.flip-card-back .loc-btn:hover  { filter: brightness(0.88); transform: translateY(-1px); }
.flip-card-back-icon.loc-icon-peds   { color: #5BC8FF; }
.flip-card-back-icon.loc-icon-adult  { color: #FFD840; }
.flip-card-back-icon.loc-icon-bh     { color: #3FE896; }
.flip-card-back-icon.loc-icon-aba    { color: #FF9060; }
.flip-card-back-icon.loc-icon-speech { color: #C47BFF; }

.vision-mission { background: #280E44; }
.vm-block { margin-bottom: 52px; }
.vm-block:last-child { margin-bottom: 0; }
.vm-block h2 { font-family: 'Poppins', sans-serif; font-size: clamp(1.3rem, 2vw, 1.65rem); font-weight: 700; color: #fff; margin-bottom: 16px; }
.vm-block p { color: rgba(255,255,255,0.78); font-size: 17px; line-height: 1.8; margin-bottom: 14px; }
.vm-block p:last-child { margin-bottom: 0; }

.providers { background: #fff; }
.providers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.prov-card {
  flex: 0 0 calc(25% - 18px);
  max-width: calc(25% - 18px);
  aspect-ratio: 3/3.4;
  perspective: 1200px;
  cursor: pointer;
}
.prov-inner {
  position: relative; width: 100%; height: 100%;
  transition: transform 0.6s cubic-bezier(0.4,0.2,0.2,1);
  transform-style: preserve-3d;
}
@media (hover: hover) {
  .prov-card:hover .prov-inner { transform: rotateY(180deg); }
}
.prov-card.tapped .prov-inner { transform: rotateY(180deg); }
.prov-card.tapped .prov-front { pointer-events: none; visibility: hidden; }
@media (hover: hover) {
  .prov-card:hover .prov-front { pointer-events: none; }
}
.prov-front, .prov-back {
  position: absolute; inset: 0;
  border-radius: 16px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex; flex-direction: column;
  align-items: center; overflow: hidden;
}
.prov-front { justify-content: flex-end; padding: 0 0 18px; }
.prov-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  border-radius: 16px;
}
.prov-front::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 58%;
  background: linear-gradient(to top, rgba(10,24,50,0.93) 0%, transparent 100%);
  border-radius: 0 0 16px 16px;
  z-index: 1;
}
.prov-front .sp-badge,
.prov-front h4,
.prov-front .prov-cred { position: relative; z-index: 2; }
.prov-front h4 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 700; color: #fff;
  margin: 5px 0 2px; text-align: center; padding: 0 14px; line-height: 1.2;
}
.prov-cred {
  font-size: clamp(0.7rem, 0.9vw, 0.8rem);
  color: rgba(255,255,255,0.78);
  text-align: center; padding: 0 14px;
}
.prov-back {
  background: var(--navy);
  transform: rotateY(180deg);
  justify-content: flex-start;
  padding: 24px 20px;
  gap: 8px; text-align: left;
}
.prov-back h4 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 700; color: #fff; margin: 4px 0 0; line-height: 1.25;
}
.prov-back p {
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.65; margin: 0; flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prov-see-more {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--teal); text-decoration: none;
  transition: color 0.2s;
}
.prov-see-more:hover { color: #fff; }
.sp-badge {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.6px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  margin-bottom: 4px;
}
.sp-peds     { background: rgba(217,119,6,0.25); color: #fcd34d; }
.sp-primary  { background: rgba(42,179,177,0.22); color: #2ab3b1; }
.sp-psych    { background: rgba(109,40,217,0.25); color: #c4b5fd; }
.sp-ot       { background: rgba(219,39,119,0.25); color: #f9a8d4; }
.sp-counsel  { background: rgba(22,163,74,0.25); color: #86efac; }
.sp-speech   { background: rgba(249,115,22,0.25); color: #ffedd5; }
.sp-aba      { background: rgba(42,179,177,0.22); color: var(--teal); }
.sp-bh       { background: rgba(109,40,217,0.25); color: #c4b5fd; }
.sp-behavioral { background: rgba(240,165,0,0.28); color: #f59e0b; }
.prov-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; background: var(--navy); display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 16px; }
.prov-placeholder .initials { font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 700; color: rgba(255,255,255,0.25); }
.prov-placeholder .pl-name { font-family: 'Poppins', sans-serif; font-size: .8rem; font-weight: 600; color: rgba(255,255,255,0.5); margin-top: 8px; text-align: center; padding: 0 12px; }

.team { background: var(--gray-bg); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.team-text h2 { margin-bottom: 16px; }
.team-text p { color: var(--mid); font-size: 17px; line-height: 1.78; margin-bottom: 24px; }
.team-badge { width: 100px; margin-top: 16px; }
.team-img img { width: 100%; border-radius: 10px; box-shadow: 0 8px 28px rgba(0,0,0,.1); }

.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.about-text h2 { margin-bottom: 16px; }
.about-text p { color: var(--mid); font-size: 17px; line-height: 1.78; margin-bottom: 12px; }
.about-badge-col { display: flex; flex-direction: column; align-items: center; gap: 20px; padding-top: 24px; }
.about-badge-col img { max-width: 180px; }

.insurance { background: var(--gray-bg); }
.insurance .sec-title { text-align: center; }
.ins-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.ins-card {
  background: #fff;
  border: 1.5px solid #555;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  min-height: 90px;
}
.ins-card img {
  max-height: 44px;
  width: 100%;
  object-fit: contain;
}

.why-us { background: var(--gray-bg); }
.why-us .sec-title { text-align: center; }
.why-us .sec-sub   { text-align: center; margin-bottom: 44px; }
.why-intro { color: var(--mid); font-size: 17px; line-height: 1.78; text-align: center; max-width: 740px; margin: 0 auto 48px; }
.why-grid { display: flex; flex-direction: column; gap: 16px; max-width: 860px; margin: 0 auto; }
.why-card { border-radius: 16px; padding: 28px 24px; display: flex; flex-direction: row; align-items: center; gap: 20px; transition: transform .22s, box-shadow .22s; }
.why-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.why-card-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0; background: #fff;
}
.card-teal   { background: rgba(42,179,177,0.14); }
.card-orange { background: rgba(240,165,0,0.15); }
.card-navy   { background: rgba(27,58,107,0.12); }
.card-green  { background: rgba(22,163,74,0.13); }
.card-purple { background: rgba(124,58,237,0.12); }
.card-blue   { background: rgba(2,132,199,0.12); }
.card-rose   { background: rgba(225,29,72,0.1); }
.why-card-text { display: flex; flex-direction: column; gap: 6px; }
.why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem; font-weight: 700; color: var(--navy);
  margin: 0; line-height: 1.3;
}
.why-card p { color: var(--mid); font-size: 15px; line-height: 1.7; margin: 0; }
.why-closing {
  text-align: center; margin-top: 44px;
  font-family: 'Poppins', sans-serif; font-size: 1.05rem;
  font-weight: 600; color: var(--navy);
}

.testimonials { background: #280E44; padding: 64px 0; overflow: hidden; }
.testi-heading-wrap {
  text-align: center;
  padding: 0 32px;
  margin-bottom: 28px;
}
.testi-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--white); text-align: center; margin: 0;
}
.testi-ticker-outer {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}
.testi-ticker {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  align-items: flex-start;
}
@keyframes tickerLTR {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes tickerRTL {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.testi-ticker--ltr {
  animation: tickerLTR 48s linear infinite;
}
.testi-ticker--rtl {
  animation: tickerRTL 52s linear infinite;
}
.testi-ticker-outer:hover .testi-ticker {
  animation-play-state: paused;
}
.testi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  align-self: flex-start;
  height: auto !important;
  min-height: unset !important;
}
.testi-ticker .testi-card {
  flex: 0 0 460px;
  width: 460px;
  max-width: 460px;
  margin: 0;
}
.testi-top-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 10px;
}
.testi-stars { color: #fbbc04; font-size: 18px; letter-spacing: 2px; flex-shrink: 0; }
.testi-google-row { display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.testi-g-icon { width: 20px; height: 20px; flex-shrink: 0; }
.testi-g-label { font-size: 12px; font-weight: 700; color: var(--mid); letter-spacing: 0.3px; }
.testi-quote {
  font-style: normal; font-size: 16px; line-height: 1.6; color: var(--text); margin-bottom: 10px;
}
.testi-author { font-style: normal; font-weight: 700; font-size: 13px; color: var(--mid); }
.testi-video-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  align-self: flex-start;
}
.testi-ticker .testi-video-card {
  flex: 0 0 500px;
  width: 500px;
  max-width: 500px;
  margin: 0;
}
.testi-video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.testi-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.testi-video-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin: 12px 0 4px;
  text-align: center;
}
.testi-video-brief {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .testi-ticker--ltr { animation-duration: 28s; }
  .testi-ticker--rtl { animation-duration: 24s; }
  .testi-ticker .testi-card { flex: 0 0 300px; width: 300px; }
  .testi-ticker .testi-video-card { flex: 0 0 320px; width: 320px; }
}

.faq { background: var(--gray-bg); text-align: center; }
.faq-list { max-width: 820px; margin: 0 auto; text-align: left; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer; font-weight: 600; color: var(--navy);
  font-size: 16px; gap: 16px; user-select: none;
}
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1; transition: transform .3s, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--navy); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  color: var(--mid); font-size: 16px; line-height: 1.72;
}
.faq-item.open .faq-a { max-height: 220px; padding-bottom: 18px; }

footer {
  background: #280E44; color: #fff;
  padding: 52px 32px 20px;
}
.footer-wrap { max-width: 1180px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr 1.4fr;
  gap: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.footer-logo img { height: 52px; margin-bottom: 0; }
.footer-col h4 {
  font-family: 'Poppins', sans-serif; font-size: .82rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: #fff; margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 15.5px; color: rgba(255,255,255,.72); transition: color .18s; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a::before { content: '✓'; color: var(--teal); font-size: 11px; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-addr p { font-size: 15.5px; color: rgba(255,255,255,.72); margin-bottom: 7px; line-height: 1.55; }
.footer-addr a { color: rgba(255,255,255,.72); }
.story-link { color: var(--teal); font-weight: 600; text-decoration: none; display: inline-block; margin-top: 12px; transition: opacity .2s; }
.story-link:hover { opacity: .75; }
.welcome-btn { position: absolute; right: 32px; background: var(--teal); color: #fff; border-radius: 22px; padding: 8px 18px; font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; transition: opacity .2s; }
.welcome-btn:hover { opacity: .88; }
.loc-front-img { padding: 0 !important; overflow: hidden; }
.loc-front-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.loc-img-overlay { position: relative; z-index: 1; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%); border-radius: 16px; }
.loc-img-overlay h3 { color: #fff; font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 600; margin: 0 0 4px; }
.loc-img-overlay p { color: rgba(255,255,255,0.8); font-size: 0.8rem; margin: 0; }
.sliding-fee-banner { background: rgba(42,179,177,0.1); border: 1.5px solid rgba(42,179,177,0.3); border-radius: 10px; padding: 16px 24px; text-align: center; margin-top: 28px; font-size: 15px; color: var(--navy); display: flex; flex-direction: column; gap: 6px; align-items: center; }
.sfb-line1 { font-weight: 600; }
.sfb-line2 { font-size: 14px; }
.sfb-line2 a { color: var(--teal); font-weight: 700; text-decoration: underline; }
.footer-social { margin-top: 14px; display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; transition: background .18s;
}
.footer-social a:hover { background: var(--teal); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; font-size: 14px; color: rgba(255,255,255,.45);
  flex-wrap: wrap; gap: 10px;
}
.footer-gallery-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.75); font-size: 13.5px; font-weight: 600;
  padding: 8px 0; margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.2);
  width: 100%; transition: color .2s;
}
.footer-gallery-link:hover { color: var(--teal); }

.appt-overlay {
  display: none; position: fixed; inset: 0; z-index: 9998;
  background: rgba(10,10,20,.65); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
.appt-overlay.open { display: flex; }
.contact-overlay {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,10,20,.65); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
.contact-overlay.open { display: flex; }
.appt-modal {
  background: #fff; border-radius: 20px;
  padding: 44px 40px 36px; max-width: 420px; width: calc(100% - 40px);
  text-align: center; position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
  animation: appt-in .22s ease;
}
@keyframes appt-in {
  from { opacity: 0; transform: translateY(18px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.appt-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 22px; color: #999;
  cursor: pointer; line-height: 1; padding: 4px 8px;
  transition: color .15s;
}
.appt-close:hover { color: #333; }
.appt-modal h3 {
  font-family: 'Poppins', sans-serif; font-size: 1.25rem;
  font-weight: 700; color: var(--navy); margin-bottom: 6px;
}
.appt-modal p {
  color: var(--mid); font-size: 14px; margin-bottom: 28px;
  line-height: 1.6;
}
.appt-options { display: flex; gap: 14px; }
.appt-opt {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  padding: 22px 16px; border-radius: 14px; border: 2px solid var(--border);
  text-decoration: none; color: var(--navy);
  transition: border-color .2s, background .2s, transform .18s;
}
.appt-opt:hover {
  border-color: var(--teal); background: rgba(42,179,177,.06);
  transform: translateY(-3px);
}
.appt-opt-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.appt-opt-call .appt-opt-icon { background: rgba(42,179,177,.14); color: var(--teal); }
.appt-opt-text .appt-opt-icon { background: rgba(27,58,107,.1); color: var(--navy); }
.appt-opt strong { font-family: 'Poppins',sans-serif; font-size: .9rem; font-weight: 700; }
.appt-opt span { font-size: 12px; color: var(--light); }

/* ═══ MOBILE NAV ═══ */
.mob-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1b3a6b;
  z-index: 9999;
  flex-direction: column;
  padding: 0 24px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mob-nav.open {
  display: flex;
}
.mob-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  margin-top: 20px;
  margin-bottom: 20px;
  appearance: none;
  -webkit-appearance: none;
}
.mob-link {
  display: block;
  color: rgba(255,255,255,0.88);
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
}
.mob-link:hover { color: #2ab3b1; }
.mob-accordion {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mob-acc-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: none;
  color: rgba(255,255,255,0.88);
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.mob-acc-icon {
  flex-shrink: 0;
  margin-left: 10px;
  transition: transform 0.25s ease;
  opacity: 0.65;
}
.mob-accordion.open .mob-acc-icon {
  transform: rotate(180deg);
}
.mob-acc-content {
  display: none;
  flex-direction: column;
  padding: 0 0 10px 16px;
  gap: 0;
}
.mob-accordion.open .mob-acc-content {
  display: flex;
}
.mob-acc-content a {
  display: block;
  color: rgba(255,255,255,0.62);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  transition: color 0.2s;
}
.mob-acc-content a:last-child {
  border-bottom: none;
}
.mob-acc-content a:hover {
  color: #2ab3b1;
}
.mob-bottom-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
}
.mob-appt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 15px 20px;
  background: #f0a500;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
  box-sizing: border-box;
}
.mob-appt-btn:hover { opacity: 0.88; color: #fff; }
.mob-util-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mob-util-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.88);
  border: 1.5px solid rgba(255,255,255,0.3);
  box-sizing: border-box;
}
.mob-util-tele {
  background: rgba(42,179,177,0.15);
  color: #2ab3b1;
  border-color: #2ab3b1;
}
.mob-util-btn:hover { opacity: 0.82; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.in { animation: fadeInUp 0.65s cubic-bezier(0.22,1,0.36,1) forwards; }
.reveal.in:nth-child(2) { animation-delay: 0.08s; }
.reveal.in:nth-child(3) { animation-delay: 0.16s; }
.reveal.in:nth-child(4) { animation-delay: 0.24s; }
.reveal.in:nth-child(5) { animation-delay: 0.32s; }
.reveal.in:nth-child(6) { animation-delay: 0.40s; }

@media (max-width: 1050px) {
  .prov-card { flex: 0 0 calc(33.33% - 14px); max-width: calc(33.33% - 14px); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .team-grid, .about-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .topbar-locations { display: none; }
  .topbar .header-container { padding-left: 16px; padding-right: 16px; justify-content: flex-end; }
  .topbar-ctas { border-left: none; padding-left: 0; margin-left: 0; }
  .nav-logo { left: 16px; }
  .nav-logo img { height: 80px; }
  .navbar .header-container { justify-content: flex-end; padding-right: 70px; }
  .nav-appt { display: none; }
  .nav-links { display: none; }
  .welcome-btn { display: none; }
  .hamburger { display: flex; }
  .tb-btn { font-size: 10px; padding: 4px 10px; }
  .hero { min-height: 360px !important; }
  .hero-container { padding: 0 24px; }
  .hero-content { padding: 0 0 36px 0; max-width: 100%; }
  .hero-content h1 { font-size: 2.38rem; }
  .hero-content h2 { font-size: 1.54rem; }
  .hero-eyebrow { font-size: 15px; }
  .services-inner { flex-wrap: wrap; gap: 10px; padding: 16px 0; }
  .svc-item { flex: 0 0 calc(33.33% - 8px); }
  .flip-card { flex: 0 0 calc(50% - 12px); max-width: calc(50% - 12px); }
  .prov-card { flex: 0 0 calc(50% - 10px); max-width: calc(50% - 10px); aspect-ratio: 3/4.2; }
  .prov-back .sp-badge { display: none; }
  .prov-back p { flex: 0 0 auto; }
  .prov-see-more { margin-top: auto; }
  .section { padding: 48px 18px; }
  footer { padding: 40px 18px 18px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .testi-slide { padding: 0 16px; flex-direction: column; gap: 20px; }

  /* Hide topbar entirely on mobile */
  .topbar { display: none !important; }
  .footer-logo { display: none; }

  /* Fix hero h1 — prevent overflow */
  .hero-content h1 { white-space: normal !important; word-break: break-word; }

  /* Stack hero buttons full width */
  .hero-btns { flex-direction: column !important; align-items: stretch !important; gap: 10px !important; }
  .btn-primary,
  .btn-outline { justify-content: center !important; text-align: center !important; width: 100% !important; box-sizing: border-box !important; }

  /* Service row — 2 per row on mobile */
  .svc-item { flex: 0 0 calc(50% - 5px) !important; }

  /* Intro grid collapse */
  .intro-grid { grid-template-columns: 1fr !important; gap: 28px !important; }

  /* Content grids collapse */
  .content-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .card-grid { grid-template-columns: 1fr 1fr !important; gap: 14px !important; }

  /* Location service card grid — 2 col */
  .lp-svc-grid { grid-template-columns: 1fr 1fr !important; gap: 14px !important; }

  /* Insurance grid — 2 col */
  .ins-grid { grid-template-columns: 1fr 1fr !important; }

  /* Community blocks */
  .community-block { grid-template-columns: 1fr !important; direction: ltr !important; gap: 24px !important; }
  .community-block.reverse { direction: ltr !important; }
  .community-block.reverse > * { direction: ltr !important; }

  /* CTA banner buttons */
  .cta-btns { flex-direction: column !important; align-items: stretch !important; gap: 12px !important; }
  .cta-btn-primary,
  .cta-btn-secondary { justify-content: center !important; text-align: center !important; width: 100% !important; box-sizing: border-box !important; }

  /* Welcome video modal padding */
  .welcome-modal-inner { padding: 24px 20px !important; }
  .welcome-modal-inner > div { flex-direction: column !important; }
  .welcome-modal-inner > div img { width: 100% !important; height: auto !important; max-height: 220px !important; object-fit: cover !important; }

  /* Why choose grid */
  .lp-why-grid { flex-direction: column !important; }
  .lp-why-box { flex: 0 0 100% !important; max-width: 100% !important; }

  /* Navbar height */
  .navbar .header-container { height: 56px !important; }
}
@media (max-width: 480px) {
  .flip-card { flex: 0 0 100%; max-width: 100%; }
  .prov-card { flex: 0 0 calc(50% - 10px); max-width: calc(50% - 10px); }
  .card-grid { grid-template-columns: 1fr !important; }
  .lp-svc-grid { grid-template-columns: 1fr !important; }
  .svc-item { flex: 0 0 100% !important; }
  .hero-content h1 { font-size: 1.9rem !important; }
  .hero-content h2 { font-size: 1.25rem !important; }
  .sec-title { font-size: 1.35rem !important; }
  .section { padding: 36px 16px !important; }
}

/* Welcome Video Modal */
.welcome-video-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.88);
  align-items: center; justify-content: center;
}
.welcome-video-overlay.open { display: flex; }
.welcome-video-modal {
  position: relative;
  width: 95vw; max-width: 1100px;
  background: var(--navbar-dark); border-radius: 12px; overflow: hidden;
}
.welcome-video-close {
  position: absolute; top: 12px; right: 14px; z-index: 10;
  background: rgba(255,255,255,0.15); border: none; color: var(--white);
  width: 38px; height: 38px; border-radius: 50%; font-size: 22px;
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; transition: background .2s;
}
.welcome-video-close:hover { background: rgba(255,255,255,0.3); }
.welcome-video-wrap {
  position: relative; padding-top: 56.25%;
}
.welcome-video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

/* Service page shared styles */
.page-hero-photo { position: relative; min-height: 480px; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-photo .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-photo .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.page-hero-photo .hero-container { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 0 32px; width: 100%; display: flex; align-items: flex-end; }
.page-hero-photo .hero-content { padding: 0 0 60px; max-width: 680px; }
.page-hero-photo h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5.6vw, 4.48rem); font-weight: 600; color: #fff; line-height: 1.15; margin-bottom: 8px; opacity: 0; animation: fadeInUp .6s ease forwards .4s; }
.page-hero-photo h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 400; color: rgba(255,255,255,.88); font-style: italic; opacity: 0; animation: fadeInUp .6s ease forwards .6s; }

.content-section { background: #fff; padding: 44px 32px; }
.content-section.alt { background: var(--gray-bg); }
.content-section.dark { background: #280E44; }
.content-section.dark .sec-title, .content-section.dark h3 { color: #fff; }
.content-section.dark p, .content-section.dark li { color: rgba(255,255,255,0.78); }
.lead { font-size: 19px; color: var(--mid); line-height: 1.8; margin-bottom: 28px; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.content-grid.single { grid-template-columns: 1fr; }
.content-grid h3 { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 0 0 12px; }
.content-grid p { color: var(--mid); font-size: 16.5px; line-height: 1.78; margin-bottom: 14px; }
.content-grid ul { list-style: none; padding: 0; margin: 0 0 14px; }
.content-grid ul li { position: relative; padding-left: 22px; color: var(--mid); font-size: 16px; line-height: 1.7; margin-bottom: 6px; }
.content-grid ul li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.info-card { border-radius: 16px; padding: 28px 24px; border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: transform .22s, box-shadow .22s; }
.info-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.info-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin: 0 0 10px; }
.info-card p, .info-card li { color: var(--mid); font-size: 15.5px; line-height: 1.7; }
.icon-badge { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 14px; background: #fff; }
.card-teal .icon-badge { color: var(--teal); }
.card-orange .icon-badge { color: var(--orange); }
.card-navy .icon-badge { color: var(--navy); }
.card-purple .icon-badge { color: #7c3aed; }

.cta-section { background: var(--navy); padding: 64px 32px; text-align: center; }
.cta-section h2 { font-family: 'Poppins', sans-serif; font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; color: #fff; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.78); font-size: 17px; line-height: 1.7; max-width: 640px; margin: 0 auto 28px; }
.cta-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--teal); color: #fff; border-radius: 50px; padding: 14px 32px; font-size: 15px; font-weight: 700; text-decoration: none; transition: opacity .2s, transform .2s; border: none; cursor: pointer; }
.cta-btn:hover { opacity: .88; transform: translateY(-2px); }

/* NCQA banner */
.ncqa-banner { background: #f0e6ff; border-left: 4px solid #7c3aed; border-radius: 0 12px 12px 0; padding: 20px 28px; margin-bottom: 32px; }
.ncqa-banner p { color: #4c1d95; font-size: 16px; font-weight: 600; line-height: 1.55; margin: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE-SPECIFIC CSS — extracted from individual HTML pages
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── phenix-city.html / fort-mitchell.html / auburn.html / opelika.html / columbus.html ── */

/* Hero extended elements */
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.88); margin-bottom: 28px; font-weight: 400; line-height: 1.65; opacity: 0; animation: fadeInUp 0.6s ease forwards 0.6s; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; opacity: 0; animation: fadeInUp 0.6s ease forwards 0.8s; }
.hero-trust { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,0.65); font-style: italic; opacity: 0; animation: fadeInUp 0.6s ease forwards 1s; }

/* Themed buttons */
.btn-primary { background: var(--theme, var(--teal)); color: #fff; border: 2px solid var(--theme, var(--teal)); border-radius: 30px; padding: 13px 28px; font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; transition: background .2s, transform .2s; }
.btn-primary:hover { background: var(--theme2, var(--teal2)); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); border-radius: 30px; padding: 13px 28px; font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; transition: background .2s, transform .2s; }
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* Intro two-column */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.intro-text p { color: var(--mid); font-size: 17px; line-height: 1.78; margin-bottom: 14px; }
.intro-text p:last-child { margin-bottom: 0; }
.intro-img img { width: 100%; border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,.12); }

/* Intro highlights (opelika.html) */
.intro-highlights { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.intro-highlights li { display: flex; align-items: flex-start; gap: 10px; color: var(--mid); font-size: 16px; }
.intro-highlights li i { color: var(--teal); font-size: 15px; margin-top: 4px; flex-shrink: 0; }

/* Location service card grid */
.lp-svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.lp-svc-card { border-radius: 16px; padding: 32px 20px; text-align: center; border: 1.5px solid #fff; transition: transform .22s, box-shadow .22s; display: flex; flex-direction: column; align-items: center; gap: 14px; box-shadow: 0 2px 14px rgba(0,0,0,0.07); }
.lp-svc-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(0,0,0,.1); }
.lp-svc-icon { width: 62px; height: 62px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; background: #fff; }
.lp-svc-card h3 { font-family: 'Poppins', sans-serif; font-size: .95rem; font-weight: 700; color: var(--navy); margin: 0; line-height: 1.3; }
.lp-svc-card p { color: var(--mid); font-size: 15px; line-height: 1.65; margin: 0; }

/* Icon color classes */
.icon-peds    { color: #0284c7; }
.icon-adult   { color: #b45309; }
.icon-counsel { color: #16a34a; }
.icon-psych   { color: #7c3aed; }
.icon-speech  { color: #E07800; }
.icon-adol    { color: #0284c7; }
.icon-purple  { color: #9b59d0; }
.icon-teal    { color: var(--teal); }
.icon-navy    { color: var(--navy); }
.icon-orange  { color: var(--orange); }
.icon-green   { color: #16a34a; }
.icon-blue    { color: #0284c7; }

/* Service card backgrounds */
.svc-card-peds    { background: #E5F5FF; }
.svc-card-adult   { background: #FFF5D4; }
.svc-card-counsel { background: #E1FEEC; }
.svc-card-psych   { background: #F2E5FE; }
.svc-card-speech  { background: #FFE8D4; }
.svc-card-adol    { background: #E5F5FF; }
.svc-card-purple  { background: rgba(155,89,208,0.12); }
.svc-card-teal    { background: rgba(42,179,177,0.12); }
.svc-card-navy    { background: rgba(27,58,107,0.12); }
.svc-card-orange  { background: rgba(240,165,0,0.15); }
.svc-card-green   { background: rgba(22,163,74,0.13); }
.svc-card-blue    { background: #E5F5FF; }

/* Community impact blocks */
.community-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 52px 0; border-bottom: 1px solid var(--border); }
.community-block:last-child { border-bottom: none; padding-bottom: 0; }
.community-block.reverse .comm-img { order: 2; }
.community-block.reverse .comm-text { order: 1; }
.comm-img img { width: 100%; border-radius: 14px; box-shadow: 0 6px 24px rgba(0,0,0,.1); height: 300px; object-fit: cover; object-position: center; }
.comm-text h3 { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; line-height: 1.3; }
.comm-text p { color: var(--mid); font-size: 17px; line-height: 1.78; margin: 0; }

/* Stat callout */
.stat-callout { display: inline-flex; align-items: center; gap: 18px; background: rgba(42,179,177,0.1); border: 2px solid var(--teal); border-radius: 14px; padding: 18px 28px; margin-top: 22px; }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 2.6rem; font-weight: 800; color: var(--teal); line-height: 1; }
.stat-label { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.35; }

/* Military badge (fort-mitchell.html) */
.mil-badge { display: inline-flex; align-items: center; gap: 12px; background: rgba(27,58,107,0.08); border: 2px solid var(--navy); border-radius: 14px; padding: 14px 24px; margin-top: 20px; }
.mil-badge i { font-size: 1.8rem; color: var(--navy); }
.mil-badge-text { font-family: 'Poppins', sans-serif; font-size: .95rem; font-weight: 700; color: var(--navy); line-height: 1.35; }

/* Expanded services list (auburn.html) */
.svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.svc-list-item { display: flex; align-items: flex-start; gap: 12px; padding: 18px 20px; background: #fff; border-radius: 12px; border: 1px solid var(--border); }
.svc-list-item i { color: var(--teal); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.svc-list-item div h4 { font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.svc-list-item div p { color: var(--mid); font-size: 14px; line-height: 1.6; margin: 0; }

/* Family section (auburn.html) */
.family-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.family-text h2 { margin-bottom: 16px; }
.family-text p { color: var(--mid); font-size: 17px; line-height: 1.78; margin-bottom: 14px; }
.family-text p:last-child { margin-bottom: 0; }
.family-img img { width: 100%; border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,.12); }
.family-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.family-list li { display: flex; align-items: center; gap: 10px; color: var(--mid); font-size: 16px; }
.family-list li i { color: var(--teal); font-size: 14px; flex-shrink: 0; }

/* Location why-grid */
.lp-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.lp-why-box { background: #fff; border-radius: 14px; padding: 28px 20px; text-align: center; border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,.05); display: flex; flex-direction: column; align-items: center; gap: 14px; transition: transform .22s, box-shadow .22s; }
.lp-why-box:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.lp-why-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.lp-why-box h3 { font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 700; color: var(--navy); margin: 0; line-height: 1.35; }
.lp-why-box p { color: var(--mid); font-size: 15px; line-height: 1.6; margin: 0; }

/* Why-icon color tokens */
.wi-teal   { background: rgba(42,179,177,0.14); color: var(--teal); }
.wi-orange { background: rgba(240,165,0,0.15); color: var(--orange); }
.wi-navy   { background: rgba(27,58,107,0.12); color: var(--navy); }
.wi-green  { background: rgba(22,163,74,0.13); color: #16a34a; }
.wi-purple { background: rgba(124,58,237,0.12); color: #7c3aed; }
.wi-blue   { background: rgba(14,165,233,0.13); color: #0ea5e9; }
.wi-rose   { background: rgba(225,29,72,0.12); color: #e11d48; }

/* CTA banner (location pages) */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, #0d2245 100%); padding: 80px 32px; text-align: center; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 600; color: #fff; margin-bottom: 16px; line-height: 1.25; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 640px; margin: 0 auto 36px; line-height: 1.7; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-btn-primary { background: var(--theme, var(--teal)); color: #fff; border-radius: 30px; padding: 15px 34px; font-size: 15px; font-weight: 700; text-decoration: none; transition: background .2s, transform .2s; display: inline-flex; align-items: center; gap: 8px; }
.cta-btn-primary:hover { background: var(--theme2, var(--teal2)); transform: translateY(-2px); }
.cta-btn-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); border-radius: 30px; padding: 15px 34px; font-size: 15px; font-weight: 700; text-decoration: none; transition: background .2s, transform .2s; display: inline-flex; align-items: center; gap: 8px; }
.cta-btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ABA highlights (columbus.html) */
.aba-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.aba-highlight { background: #fff; border-radius: 16px; padding: 28px 22px; border: 1.5px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.aba-highlight-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; background: rgba(155,89,208,0.12); color: #9b59d0; }
.aba-highlight h3 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); }
.aba-highlight p { color: var(--mid); font-size: 15px; line-height: 1.65; }

/* Process steps (columbus.html) */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 40px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 36px; left: calc(12.5%); right: calc(12.5%); height: 2px; background: linear-gradient(to right, #9b59d0, var(--teal)); z-index: 0; }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num { width: 72px; height: 72px; border-radius: 50%; background: #9b59d0; color: #fff; font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 4px 16px rgba(155,89,208,0.35); }
.process-step h3 { font-family: 'Poppins', sans-serif; font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { color: var(--mid); font-size: 14px; line-height: 1.6; }

/* Who we serve (columbus.html) */
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 36px; }
.who-card { background: #fff; border-radius: 14px; padding: 26px 24px; border: 1.5px solid var(--border); display: flex; align-items: flex-start; gap: 18px; transition: transform .2s, box-shadow .2s; }
.who-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.who-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(155,89,208,0.12); color: #9b59d0; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.who-card h3 { font-family: 'Poppins', sans-serif; font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.who-card p { color: var(--mid); font-size: 15px; line-height: 1.6; }

/* ── our-story.html ── */

.page-hero { position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #280E44; }
.page-hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 80px 32px 64px; }
.page-hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 600; color: #fff; line-height: 1.15; margin-bottom: 12px; }
.page-hero-content p { font-family: 'Playfair Display', serif; font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 400; color: rgba(255,255,255,0.85); font-style: italic; margin: 0; }

.welcome-block { background: #fff; }
.welcome-inner { max-width: 800px; margin: 0 auto; text-align: center; padding: 40px 0; }
.welcome-eyebrow { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 20px; }
.welcome-inner p { color: var(--mid); font-size: 18px; line-height: 1.85; margin-bottom: 20px; }
.welcome-inner p:last-child { margin-bottom: 0; }

.founder { background: var(--gray-bg); }
.founder-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 52px; align-items: center; max-width: 1100px; margin: 0 auto; }
.founder-photo img { width: 100%; border-radius: 16px; object-fit: cover; }
.founder-text .eyebrow { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.founder-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; color: var(--navy); font-style: italic; margin-bottom: 20px; }
.founder-text p { color: var(--mid); font-size: 17px; line-height: 1.78; margin-bottom: 16px; }
.founder-text p:last-child { margin-bottom: 0; }
.founder-attrib { margin-top: 24px; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; color: var(--navy); }
.founder-attrib span { display: block; font-size: 13px; font-weight: 500; color: var(--mid); margin-top: 2px; }

.narrative { background: #fff; }
.narrative-inner { max-width: 860px; margin: 0 auto; }
.narrative-inner h2 { font-family: 'Poppins', sans-serif; font-size: clamp(1.45rem, 2.5vw, 2rem); font-weight: 700; color: var(--navy); margin-bottom: 28px; text-align: center; }
.narrative-inner p { color: var(--mid); font-size: 17px; line-height: 1.85; margin-bottom: 18px; }
.narrative-inner p:last-child { margin-bottom: 0; }
.narrative-note { display: block; margin-top: 24px; font-size: 13px; color: var(--light); font-style: italic; }

.timeline-section { background: #280E44; }
.timeline-section .sec-title { color: #fff; text-align: center; }
.timeline-sub { text-align: center; color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 44px; }
.timeline { max-width: 860px; margin: 0 auto; padding: 40px 0; display: flex; flex-direction: column; gap: 20px; }
.tl-item { display: flex; align-items: stretch; gap: 20px; }
.tl-date-box { width: 110px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #fff; border-radius: 12px; padding: 16px 12px; text-align: center; gap: 8px; }
.tl-icon { font-size: 22px; line-height: 1; }
.tl-year-text { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700; color: #000; line-height: 1; }
.tl-card { flex: 1; border-radius: 12px; padding: 16px 20px; display: flex; flex-direction: column; justify-content: center; }
.tl-card h4 { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700; color: #000; margin: 0 0 4px; }
.tl-card p { font-size: 14px; color: var(--mid); margin: 0; line-height: 1.6; }
.tl-note { display: block; font-size: 12px; color: var(--light); font-style: italic; margin-top: 6px; }
.tl-item:nth-child(5n+1) .tl-card { background: #E5F5FF; }
.tl-item:nth-child(5n+1) .tl-icon { color: #0284c7; }
.tl-item:nth-child(5n+2) .tl-card { background: #FFF5D4; }
.tl-item:nth-child(5n+2) .tl-icon { color: #ca8a04; }
.tl-item:nth-child(5n+3) .tl-card { background: #E1FEEC; }
.tl-item:nth-child(5n+3) .tl-icon { color: #16a34a; }
.tl-item:nth-child(5n+4) .tl-card { background: #FFEADF; }
.tl-item:nth-child(5n+4) .tl-icon { color: #ea580c; }
.tl-item:nth-child(5n+5) .tl-card { background: #F2E5FE; }
.tl-item:nth-child(5n+5) .tl-icon { color: #9333ea; }

/* ── office-policies.html ── */

.policies-container { max-width: 860px; }
.gallery-overlay { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(8,8,18,.94); overflow-y: auto; padding: 40px 32px; }
.gallery-overlay.open { display: block; }
.gallery-modal-inner { max-width: 1100px; margin: 0 auto; }
.gallery-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.gallery-modal-header h2 { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 700; color: #fff; margin: 0; }
.gallery-close { background: rgba(255,255,255,.12); border: none; color: #fff; width: 42px; height: 42px; border-radius: 50%; font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; flex-shrink: 0; }
.gallery-close:hover { background: rgba(255,255,255,.25); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.gallery-item { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; background: #1a1a2e; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── why-choose-us.html ── */

.cta-band { background: var(--teal); padding: 56px 32px; text-align: center; }
.cta-band p { font-family: 'Poppins', sans-serif; font-size: 1.25rem; font-weight: 600; color: #fff; margin-bottom: 22px; }
.cta-band .cta-btn { display: inline-block; background: #fff; color: var(--navy); font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; padding: 12px 28px; border-radius: 22px; text-decoration: none; transition: opacity .2s, transform .2s; cursor: pointer; border: none; }
.cta-band .cta-btn:hover { opacity: .92; transform: translateY(-2px); }

/* ── insurance-payments.html ── */

.sliding-fee-banner.prominent { padding: 32px 28px; font-size: 17px; border-color: var(--teal); margin-top: 0; }
.sliding-fee-banner.prominent .sfb-line1 { font-size: 20px; margin-bottom: 6px; }
.sliding-fee-banner.prominent .sfb-line2 { font-size: 15px; }
.payments-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--mid); }
.check-list li i { color: var(--teal); font-size: 16px; }

/* ── expectant-parents.html ── */

.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }

/* ── patient-portal.html ── */

.portal-hero { background: var(--navy); padding: 110px 32px 90px; text-align: center; }
.portal-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 600; color: #fff; margin-bottom: 14px; line-height: 1.2; }
.portal-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto; }
.portal-section-white { background: #fff; }
.portal-section-gray { background: var(--gray-bg); }
.portal-two-col { display: grid; grid-template-columns: 1fr 2fr; gap: 52px; align-items: center; }
.portal-icon-wrap { display: flex; justify-content: center; align-items: center; }
.portal-icon-wrap img { width: 120px; height: 120px; object-fit: contain; border-radius: 24px; }
.portal-features ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.portal-features ul li { display: flex; align-items: center; gap: 10px; font-size: 17px; color: #333; font-weight: 500; }
.portal-features ul li .halo-li-icon { width: 36px; height: 36px; flex-shrink: 0; background: rgba(42,179,177,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--teal); }
.portal-video-wrap { max-width: 760px; margin: 0 auto; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; }
.portal-video-placeholder { width: 100%; height: 100%; background: rgba(27,58,107,0.07); border: 2px dashed var(--border); border-radius: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--mid); }
.portal-video-placeholder i { font-size: 56px; color: var(--teal); }
.portal-access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto; }
.portal-access-card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 40px 32px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; transition: transform .2s, box-shadow .2s; }
.portal-access-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.portal-access-icon { width: 64px; height: 64px; border-radius: 16px; background: rgba(42,179,177,0.12); display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--teal); }
.portal-access-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 0; }
.portal-access-card p { font-size: 15px; color: var(--mid); margin: 0; }
.portal-store-btns { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; justify-content: center; }

/* ── slidingfeeschedule.html ── */

.page-section { padding: 72px 32px; }
.page-title { font-family: 'Poppins', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.page-subtitle { color: var(--mid); font-size: 17px; margin-bottom: 40px; line-height: 1.7; }
.sf-section { margin-bottom: 36px; }
.sf-section h2 { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.sf-section p, .sf-section li { color: var(--mid); font-size: 16px; line-height: 1.75; margin-bottom: 10px; }
.sf-section ul { list-style: none; padding-left: 0; }
.sf-section ul li { position: relative; padding-left: 22px; }
.sf-section ul li::before { content: '•'; color: var(--teal); font-weight: 700; position: absolute; left: 0; }
.sf-section a { color: var(--teal); font-weight: 600; }
.sf-section a:hover { text-decoration: underline; }
.sf-contact { background: #fff; border-radius: 14px; padding: 28px 28px 12px; border: 1.5px solid var(--border); margin-top: 32px; }
.sf-contact h2 { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.sf-contact p { color: var(--mid); font-size: 16px; line-height: 1.7; margin-bottom: 10px; }
.sf-contact a { color: var(--teal); font-weight: 600; }

/* ── gallery.html ── */

.gallery-hero { background: var(--navy); padding: 80px 32px; text-align: center; }
.gallery-hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: #fff; margin-bottom: 10px; }
.gallery-hero p { color: rgba(255,255,255,0.7); font-size: 18px; }
.gallery-year-nav { position: sticky; top: 0; z-index: 800; background: #fff; border-bottom: 1px solid #e8eaf0; padding: 10px 0; width: 100%; }
.gallery-year-nav-inner { display: flex; gap: 8px; overflow-x: auto; padding: 0 24px; scrollbar-width: none; }
.gallery-year-nav-inner::-webkit-scrollbar { display: none; }
.gyn-pill { flex-shrink: 0; background: transparent; border: 1.5px solid #dde1ea; border-radius: 20px; padding: 5px 16px; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; color: var(--mid); cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.gyn-pill:hover { border-color: var(--teal); color: var(--teal); }
.gyn-pill.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.gallery-year-section { padding: 56px 0 40px; border-bottom: 1px solid #eef0f5; scroll-margin-top: 120px; }
.gallery-year-section:nth-child(even) { background: var(--gray-bg); }
.gallery-year-section:nth-child(odd) { background: #fff; }
.gys-header { display: flex; align-items: flex-start; gap: 24px; padding: 0 40px 28px; max-width: 1200px; margin: 0 auto; }
.gys-year-badge { font-family: 'Poppins', sans-serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; color: var(--navy); line-height: 1; flex-shrink: 0; min-width: 120px; }
.gys-milestone { padding-top: 8px; border-left: 3px solid var(--teal); padding-left: 20px; }
.gys-milestone-label { display: block; font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 6px; }
.gys-milestone-text { font-size: 1rem; color: var(--mid); line-height: 1.65; margin: 0; max-width: 600px; }
.gys-strip-outer { position: relative; display: flex; align-items: center; gap: 8px; padding: 0 40px; }
.gys-strip { display: flex; gap: 16px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding: 8px 0 16px; cursor: grab; user-select: none; }
.gys-strip::-webkit-scrollbar { display: none; }
.gys-strip.dragging { cursor: grabbing; }
.gys-photo { flex-shrink: 0; width: 320px; height: 240px; border-radius: 12px; overflow: hidden; background: #e8eaf0; box-shadow: 0 2px 12px rgba(0,0,0,.08); transition: transform .25s, box-shadow .25s; }
.gys-photo:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.14); }
.gys-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; pointer-events: none; }
.gys-photo-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: #aaa; font-size: 13px; }
.gys-photo-placeholder i { font-size: 32px; color: #ccc; }
.gys-arrow { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid #dde1ea; background: #fff; color: var(--navy); font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; line-height: 1; box-shadow: 0 2px 8px rgba(0,0,0,.07); z-index: 2; }
.gys-arrow:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.glb-overlay { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; flex-direction: column; }
.glb-overlay.open { display: flex; }
.glb-img-wrap { max-width: 90vw; max-height: 80vh; display: flex; flex-direction: column; align-items: center; gap: 12px; }
#glbImg { max-width: 100%; max-height: 75vh; object-fit: contain; border-radius: 8px; display: block; }
.glb-caption { color: rgba(255,255,255,0.65); font-size: 14px; text-align: center; }
.glb-close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: #fff; font-size: 36px; cursor: pointer; line-height: 1; opacity: 0.7; transition: opacity .2s; }
.glb-close:hover { opacity: 1; }
.glb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.2); color: #fff; border-radius: 50%; width: 52px; height: 52px; font-size: 28px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; line-height: 1; }
.glb-nav:hover { background: rgba(255,255,255,0.25); }
.glb-prev { left: 20px; }
.glb-next { right: 20px; }

/* ── Responsive additions ── */
@media (max-width: 1050px) {
  .lp-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-why-grid { grid-template-columns: repeat(2, 1fr); }
  .aba-highlights { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .payments-grid { grid-template-columns: 1fr; gap: 36px; }
  .founder-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .community-block { grid-template-columns: 1fr; gap: 28px; }
  .community-block.reverse .comm-img,
  .community-block.reverse .comm-text { order: unset !important; }
  .lp-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-why-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-list { grid-template-columns: 1fr; }
  .family-grid { grid-template-columns: 1fr; gap: 28px; }
  .who-grid { grid-template-columns: 1fr; }
  .aba-highlights { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .portal-two-col { grid-template-columns: 1fr; gap: 36px; }
  .portal-access-grid { grid-template-columns: 1fr; }
  .portal-hero { padding: 80px 24px 64px; }
  .page-section { padding: 48px 18px; }
  .page-hero { min-height: 300px; }
  .page-hero-content { padding: 60px 24px 48px; }
  .gallery-hero { padding: 56px 20px; }
  .gys-header { padding: 0 20px 20px; flex-direction: column; gap: 12px; }
  .gys-year-badge { font-size: 2.2rem; min-width: unset; }
  .gys-strip-outer { padding: 0 16px; }
  .gys-arrow { display: none; }
  .gys-photo { width: 260px; height: 195px; }
  .glb-nav { width: 40px; height: 40px; font-size: 22px; }
  .glb-prev { left: 8px; }
  .glb-next { right: 8px; }
  .tl-item { flex-direction: column; gap: 10px; }
  .tl-date-box { width: 100%; flex-direction: row; padding: 10px 16px; justify-content: flex-start; gap: 12px; }
  .tl-year-text { font-size: 1rem; }
}
@media (max-width: 480px) {
  .lp-svc-grid { grid-template-columns: 1fr; }
  .lp-why-grid { grid-template-columns: 1fr; }
  .portal-store-btns { flex-direction: column; align-items: center; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MISSING CLASSES — added via CSS audit
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Hero text color enforcement (all hero variants) — replaced by comprehensive fix below ── */

/* ── page-pediatrics.php: 4-column card grid variant ── */
.card-grid-4 {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 20px !important;
}
.card-grid-4 > * {
  flex: 0 0 calc(25% - 15px) !important;
  max-width: calc(25% - 15px) !important;
}
@media (max-width: 1024px) {
  .card-grid-4 > * {
    flex: 0 0 calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
  }
}
@media (max-width: 560px) {
  .card-grid-4 > * {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* ── page-our-story.php: closing section ── */
.closing-message { background: #fff; }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }

/* ── page-office-policies.php: policies section wrapper ── */
.policies-section { background: #fff; }

/* ══════════════════════════════════════════════════════════════
   CSS CONSOLIDATION — extracted from HTML source files
   ══════════════════════════════════════════════════════════════ */

/* ── phenix-city.html / fort-mitchell.html / auburn.html / opelika.html / columbus.html ── */
/* (All common location page rules are already covered above; only truly new rules are added here) */

/* lp-svc-card icon background — applies when .lp-svc-icon is a direct child of .lp-svc-card */
.lp-svc-card .lp-svc-icon { background: #fff; }

/* ── pediatrics.html / adult-primary-care.html ── */
/* info-card with bullet list */
.info-card ul { list-style: none; padding: 0; margin: 0; }
.info-card ul li { position: relative; padding-left: 18px; margin-bottom: 4px; }
.info-card ul li::before { content: '•'; position: absolute; left: 0; color: var(--navy); font-weight: 700; }
.card-green .icon-badge { color: #16a34a; }

/* ── behavioral-health.html ── */
/* Different ncqa-banner style (dark navy background variant, scoped to avoid conflict) */
.page-behavioral-health .ncqa-banner { background: var(--navy); padding: 44px 32px; text-align: center; border-left: none; border-radius: 0; }
.page-behavioral-health .ncqa-banner p { color: rgba(255,255,255,0.9); font-size: 17px; line-height: 1.75; max-width: 820px; margin: 0 auto; }
.page-behavioral-health .ncqa-banner strong { color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; }

/* ── why-choose-us.html / office-policies.html / insurance-payments.html ── */
/* .page-hero h1 and .page-hero p (simple static hero variant used by non-location pages) */
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
}

/* ── LOCATION PAGE VARIABLE OVERRIDES (body-scoped) ── */
body.page-phenix-city {
  --gray-bg:     #DCEEFF;
  --page-light:  #EFF8FF;
  --border:      #c8dff0;
  --theme:       #0284c7;
  --theme2:      #0369a1;
  background:    var(--page-light);
}
body.page-fort-mitchell {
  --gray-bg:     #D6FAF0;
  --page-light:  #EDFDF7;
  --border:      #b2e8d8;
  --theme:       #059669;
  --theme2:      #047857;
  background:    var(--page-light);
}
body.page-auburn {
  --gray-bg:     #FFF4D0;
  --page-light:  #FFFCF0;
  --border:      #e8d89a;
  --theme:       #b8860b;
  --theme2:      #9a7209;
  background:    var(--page-light);
}
body.page-opelika {
  --gray-bg:     #FFE8D4;
  --page-light:  #FFF4EE;
  --border:      #e8c4a0;
  --theme:       #E07800;
  --theme2:      #c45f00;
  background:    var(--page-light);
}
body.page-columbus {
  --purple:      #9b59d0;
  --purple2:     #8a4bbf;
  --theme:       #9b59d0;
  --theme2:      #8a4bbf;
  --gray-bg:     #F0E8FF;
  --page-light:  #F8F2FF;
  --border:      #d8bef5;
  background:    var(--page-light);
}
body.page-columbus .cta-banner {
  background: linear-gradient(135deg, #3d1a6b 0%, #1b3a6b 100%);
}

/* ── Location page grid overrides (differ from shared default) ── */
/* Phenix City uses 5-column why-grid */
body.page-phenix-city .lp-why-grid { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1050px) {
  body.page-phenix-city .lp-why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  body.page-phenix-city .lp-why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Auburn uses 3-column why-grid */
body.page-auburn .lp-why-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) {
  body.page-auburn .lp-why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Columbus uses 3-column svc-grid */
body.page-columbus .lp-svc-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) {
  body.page-columbus .lp-svc-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══ GLOBAL HERO TEXT FIX ══ */
.hero-content h1,
.hero-content h2,
.hero-content p,
.hero-sub,
.page-hero-content h1,
.page-hero-content h2,
.page-hero-content p {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6) !important;
  opacity: 1 !important;
}
.hero-sub,
.page-hero-content h2,
.page-hero-content p,
.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.6rem) !important;
}

/* ══ BUTTON VISIBILITY FIX ══ */
.btn-primary,
.btn-outline,
.cta-btn,
.loc-cta-btn,
.hero-btn,
.hero-cta {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ══ MOBILE FIXES ══ */
@media (max-width: 768px) {
  .tb-btn { font-size: 10px !important; padding: 4px 10px !important; }
  .welcome-btn { display: none !important; }
  .nav-logo img { height: 80px !important; }
  .mob-nav img {
    height: 60px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1) !important;
    display: block !important;
  }
  .section { padding: 36px 20px !important; }
  .container { padding: 0 4px !important; }
  .hero-content h1 { font-size: clamp(1.8rem, 5vw, 2.6rem) !important; white-space: normal !important; }
  .hero-content h2,
  .hero-content p { font-size: clamp(1rem, 3vw, 1.3rem) !important; }
  .pmg-two-col { grid-template-columns: 1fr !important; gap: 24px !important; }
  .providers-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
  .prov-card { flex: 0 0 calc(50% - 7px) !important; max-width: calc(50% - 7px) !important; }
  .services-inner { flex-wrap: wrap !important; }
  .svc-item { flex: 0 0 calc(50% - 8px) !important; }
  .ins-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-top { grid-template-columns: 1fr !important; }
  .flip-card { flex: 0 0 100% !important; max-width: 100% !important; }
}

@media (max-width: 480px) {
  .svc-item { flex: 0 0 calc(50% - 8px) !important; }
  .prov-card { flex: 0 0 calc(50% - 10px) !important; max-width: calc(50% - 10px) !important; }
}

/* ══ CHANGE 2: PARAGRAPH SPACING ══ */
.content-section p,
.intro-text p,
.story-text-col p,
.bio-text p {
  margin-bottom: 10px !important;
  line-height: 1.72 !important;
}
.content-grid p + p {
  margin-top: 8px !important;
}

/* ══ CHANGE 3: IMAGE OBJECT-POSITION ══ */
.prov-photo,
.mtp-photo,
.bio-photo,
.spotlight-photo {
  object-position: top center !important;
}
.ped-mosaic-img,
.ped-row-img,
.clinic-mosaic-img,
.aba-gallery-img,
.story-img-main,
.story-chapter-img,
.story-founder-photo {
  object-position: top center !important;
}
img[class*="photo"],
img[class*="mosaic"],
img[class*="portrait"] {
  object-position: top center !important;
}

/* ══ CHANGE 5: CENTER ORPHANED CARDS IN LAST ROW ══ */
.card-grid,
.lp-svc-grid,
.providers-grid,
.mtp-providers-grid,
.why-grid,
.svc-cards-grid,
.info-cards-grid,
.card-grid-4,
.services-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 24px;
}
.card-grid > *,
.lp-svc-grid > * {
  flex: 0 0 calc(33.33% - 16px) !important;
  max-width: calc(33.33% - 16px) !important;
}
.svc-cards-grid > *,
.info-cards-grid > *,
.services-grid > * {
  flex: 0 0 calc(33.33% - 16px);
  max-width: calc(33.33% - 16px);
}
@media (max-width: 900px) {
  .card-grid > *,
  .lp-svc-grid > * {
    flex: 0 0 calc(50% - 12px) !important;
    max-width: calc(50% - 12px) !important;
  }
  .svc-cards-grid > *,
  .info-cards-grid > *,
  .services-grid > * {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}
@media (max-width: 560px) {
  .card-grid > *,
  .lp-svc-grid > * {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .svc-cards-grid > *,
  .info-cards-grid > *,
  .services-grid > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ══ CHANGE 7: CTA SECTION FULL-WIDTH ══ */
.cta-section,
.cta-band {
  max-width: 100% !important;
  padding: 64px 48px !important;
}
.cta-section .container,
.cta-band .container {
  max-width: 1100px !important;
  margin: 0 auto;
}

/* ══ CHANGE 9: CONDITIONS GRID ══ */
.conditions-section,
.conditions-grid {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
  text-align: left;
  justify-content: center;
}
@media (max-width: 768px) {
  .conditions-grid {
    grid-template-columns: 1fr;
  }
}

/* ══ CHANGE 1: CONTACT MODAL 4-OPTION GRID ══ */
.contact-modal-wide {
  max-width: 680px !important;
}
.contact-options-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 14px !important;
}
.appt-opt-email .appt-opt-icon {
  background: rgba(27,58,107,0.1);
  color: var(--navy);
}
@media (max-width: 600px) {
  .contact-modal-wide {
    max-width: 100% !important;
  }
  .contact-options-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ══ CHANGE 3: HERO HEADING & SUBTITLE SPACING ══ */
.hero-content h1 {
  margin-bottom: 16px !important;
}
.hero-content h2 {
  margin-bottom: 28px !important;
}
.hero-cta-row,
.hero-btns,
.hero-buttons {
  margin-top: 28px !important;
  display: flex !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

/* Button colors are handled by var(--theme) in .btn-primary — see body.page-* blocks above */

/* ══ CHANGE 5: WHY-GRID RESPONSIVE WRAP (PHENIX CITY) ══ */
@media (max-width: 900px) {
  .lp-why-grid {
    flex-wrap: wrap !important;
  }
  .lp-why-grid > * {
    flex: 0 0 calc(50% - 8px) !important;
  }
}

/* Section backgrounds use var(--page-light) / var(--gray-bg) inline styles — handled by body.page-* variable blocks above */

/* ── ACTIVE NAV STATES ── */
.drop li a.active-drop {
  color: var(--teal) !important;
  background: var(--gray-bg) !important;
}
.drop li a.active-drop::before {
  content: '→ ';
  color: var(--teal);
}
.topbar-loc-item.active-loc {
  color: var(--orange) !important;
  font-weight: 800 !important;
  opacity: 1 !important;
}

/* ══ PROVIDER BIO PAGE ══ */
.bio-hero {
  background: linear-gradient(135deg, #1b3a6b 0%, #0f2347 100%);
  padding: 64px 32px;
  color: #fff;
}
.bio-hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.bio-photo-wrap {
  position: relative;
  flex-shrink: 0;
}
.bio-photo {
  width: 220px;
  height: 260px;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  display: block;
}
.bio-specialty-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}
.bio-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.bio-credentials {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 6px;
}
.bio-role {
  font-size: 1rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0;
}
.bio-content-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}
.bio-main h2 {
  margin-bottom: 20px;
}
.bio-text {
  color: var(--mid);
  font-size: 17px;
  line-height: 1.78;
}
.bio-text p {
  margin-bottom: 14px;
}
.bio-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 12px;
}
.bio-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bio-card {
  background: #f4f6f8;
  border-radius: 16px;
  padding: 24px;
}
.bio-card-cta {
  background: var(--navy);
  color: #fff;
}
.bio-card-cta p {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}
.bio-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bio-card-cta .bio-card-title {
  color: #fff;
}
.bio-card-title i {
  color: var(--teal);
  font-size: 0.95rem;
}
@media (max-width: 900px) {
  .bio-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .bio-photo {
    width: 180px;
    height: 210px;
  }
  .bio-content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .bio-hero {
    padding: 40px 20px;
  }
  .bio-photo {
    width: 150px;
    height: 180px;
  }
}

/* ══ OUR STORY PAGE ══ */

/* HERO */
.story-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: center center / cover no-repeat;
}

.story-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,18,40,0.92) 0%, rgba(27,58,107,0.65) 100%);
}

.story-hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 32px 80px;
  max-width: 780px;
}

.story-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: block;
}

.story-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.story-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.story-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.story-scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--teal);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.story-scroll-arrow {
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 1px;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* SHARED LABELS + HEADINGS */
.story-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}

.story-chapter-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 28px;
}

/* SECTION 2: WHERE IT BEGAN */
.story-origin {
  position: relative;
  overflow: hidden;
}

.story-origin::before {
  content: '2006';
  position: absolute;
  top: -20px;
  left: -20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14rem;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.story-two-col {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 72px;
  align-items: center;
}

.story-text-col p {
  color: var(--mid);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.story-pullquote {
  border-left: 6px solid var(--teal);
  padding: 20px 28px;
  margin: 36px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--navy);
  background: rgba(42,179,177,0.06);
  border-radius: 0 10px 10px 0;
  line-height: 1.6;
}

.story-img-main {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
  object-fit: cover;
}

.story-img-portrait {
  aspect-ratio: 3 / 4;
  object-position: center top;
}

/* SECTION 3: FOUNDER */
.story-founder-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}

.story-founder-photo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.story-founder-photo {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  object-fit: cover;
  object-position: top;
}

.story-founder-sig {
  width: 100%;
}

.story-sig-rule {
  width: 40px;
  height: 2px;
  background: var(--teal);
  margin-bottom: 12px;
}

.story-sig-name {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.4;
}

.story-sig-title {
  display: block;
  font-size: 13px;
  color: var(--light);
  margin-top: 4px;
}

.story-founder-text-col p {
  color: var(--mid);
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.story-founder-quote {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-size: 1.4rem !important;
  color: var(--teal) !important;
  line-height: 1.5 !important;
  margin: 32px 0 !important;
  text-align: center;
}

.story-founder-closing {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem !important;
  color: var(--navy) !important;
  margin-top: 28px !important;
}

/* SECTION 4: GROWTH CHAPTERS */
.story-chapters-wrapper {
  display: flex;
  flex-direction: column;
}

.story-chapter-block {
  padding: 72px 0;
}

.story-chapter-block--light {
  background: #fff;
}

.story-chapter-block--dark {
  background: #0f2444;
}

.story-chapter-inner {
  display: grid;
  grid-template-columns: 160px 1fr 240px;
  gap: 48px;
  align-items: center;
}

.story-chapter-year-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.story-year-badge {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.story-chapter-block--dark .story-year-badge {
  color: var(--orange);
}

.story-year-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--light);
  line-height: 1;
}

.story-chapter-block--dark .story-year-label {
  color: rgba(255,255,255,0.4);
}

.story-chapter-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
  margin-top: 8px;
}

.story-chapter-block--dark .story-chapter-tag {
  color: rgba(255,255,255,0.35);
}

.story-chapter-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.story-chapter-block--dark .story-chapter-content h3 {
  color: #fff;
}

.story-chapter-content p {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 14px;
}

.story-chapter-block--dark .story-chapter-content p {
  color: rgba(255,255,255,0.72);
}

.story-chapter-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* SECTION 5: TIMELINE */
.story-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--navy));
}

.story-tl-item {
  display: grid;
  grid-template-columns: 80px 28px 1fr;
  gap: 0 16px;
  margin-bottom: 28px;
  align-items: start;
}

/* Major milestones */
.story-tl-milestone .story-tl-year {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal);
  text-align: right;
  padding-top: 1px;
  padding-right: 14px;
}

.story-tl-milestone .story-tl-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid #f4f6f8;
  box-shadow: 0 0 0 3px var(--teal);
  margin-top: 1px;
  position: relative;
  z-index: 1;
}

.story-tl-milestone .story-tl-content h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.3;
}

.story-tl-milestone .story-tl-content p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  margin: 0;
}

/* Minor milestones */
.story-tl-minor .story-tl-year {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--light);
  text-align: right;
  padding-top: 3px;
  padding-right: 14px;
}

.story-tl-minor .story-tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cdd5de;
  border: 2px solid #f4f6f8;
  box-shadow: 0 0 0 1px #cdd5de;
  margin-top: 4px;
  margin-left: 5px;
  position: relative;
  z-index: 1;
}

.story-tl-minor .story-tl-content h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 3px;
  line-height: 1.3;
}

.story-tl-minor .story-tl-content p {
  font-size: 13px;
  color: var(--light);
  line-height: 1.55;
  margin: 0;
}

/* SECTION 6: FINAL CLOSE */
.story-final-close {
  background: #0a1628;
  padding: 120px 32px;
  text-align: center;
}

.story-close-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  max-width: 680px;
  margin: 20px auto 48px;
}

.story-close-cta {
  margin-top: 0;
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .story-chapter-inner {
    grid-template-columns: 140px 1fr 200px;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .story-two-col { grid-template-columns: 1fr; gap: 40px; }
  .story-image-col { order: -1; }
  .story-img-portrait { aspect-ratio: 16 / 9; }
  .story-founder-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-founder-photo-col { flex-direction: row; align-items: flex-start; gap: 24px; }
  .story-founder-photo { width: 140px; height: 170px; }
  .story-chapter-inner { grid-template-columns: 1fr; gap: 20px; }
  .story-chapter-img-col { display: none; }
  .story-chapter-block { padding: 56px 0; }
  .story-final-close { padding: 80px 24px; }
}

@media (max-width: 600px) {
  .story-hero-content { padding: 72px 20px 60px; }
  .story-timeline::before { left: 60px; }
  .story-tl-item { grid-template-columns: 60px 24px 1fr; }
  .story-tl-milestone .story-tl-year { font-size: 0.9rem; }
  .story-tl-minor .story-tl-year { font-size: 0.72rem; }
  .story-founder-photo-col { flex-direction: column; }
  .story-founder-photo { width: 100%; height: auto; }
  .story-close-quote { font-size: 1.25rem; }
}

/* ══ ABA IMAGE GALLERY ══ */
.aba-image-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  margin: 36px 0;
}

.aba-img-main {
  grid-row: span 2;
}

.aba-img-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aba-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  display: block;
}

.aba-img-main .aba-gallery-img {
  max-height: 420px;
}

.aba-img-stack .aba-gallery-img {
  max-height: 196px;
}

@media (max-width: 768px) {
  .aba-image-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .aba-img-main {
    grid-row: span 1;
  }
  .aba-img-main .aba-gallery-img {
    max-height: 260px;
  }
  .aba-img-stack {
    flex-direction: row;
  }
  .aba-img-stack .aba-gallery-img {
    max-height: 160px;
  }
}

/* ══ CLINIC IMAGE MOSAIC ══ */
.clinic-img-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin: 36px 0;
}

.clinic-mosaic-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  display: block;
}

.clinic-mosaic-wide {
  grid-column: span 2;
  height: 300px;
}

/* ══ PROVIDER SPOTLIGHT ══ */
.provider-spotlight {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
  background: #f4f6f8;
  border-radius: 20px;
  padding: 32px;
  margin: 36px 0;
  border-left: 4px solid var(--teal);
}

.provider-spotlight-img {
  position: relative;
}

.spotlight-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: block;
}

.spotlight-badge {
  margin-top: 12px;
  text-align: center;
}

.spotlight-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0 4px;
}

.spotlight-role {
  color: var(--teal);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
}

.spotlight-bio {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.72;
}

/* ══ COUNSELING IMAGE BLOCK ══ */
.counseling-img-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
  margin: 36px 0;
}

.counseling-feature-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  display: block;
}

.counseling-img-caption p {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .clinic-img-mosaic {
    grid-template-columns: 1fr;
  }
  .clinic-mosaic-wide {
    grid-column: span 1;
    height: 220px;
  }
  .clinic-mosaic-img {
    height: 200px;
  }
  .provider-spotlight {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .spotlight-photo {
    height: 200px;
  }
  .counseling-img-block {
    grid-template-columns: 1fr;
  }
  .counseling-feature-img {
    height: 260px;
  }
}

/* ══ PEDIATRICS IMAGE LAYOUTS ══ */
.ped-image-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  margin: 36px 0;
}

.ped-mosaic-large {
  grid-row: span 2;
}

.ped-mosaic-small {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ped-mosaic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  display: block;
}

.ped-mosaic-large .ped-mosaic-img {
  max-height: 440px;
}

.ped-mosaic-small .ped-mosaic-img {
  max-height: 206px;
}

.ped-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.ped-row-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  display: block;
}

@media (max-width: 768px) {
  .ped-image-mosaic {
    grid-template-columns: 1fr;
  }
  .ped-mosaic-large {
    grid-row: span 1;
  }
  .ped-mosaic-large .ped-mosaic-img {
    max-height: 280px;
  }
  .ped-mosaic-small {
    flex-direction: row;
  }
  .ped-mosaic-small .ped-mosaic-img {
    max-height: 160px;
  }
  .ped-img-row {
    grid-template-columns: 1fr;
  }
  .ped-row-img {
    height: 220px;
  }
}

/* ══ PRESS COVERAGE PAGE ══ */
.press-hero {
  position: relative;
  background: linear-gradient(135deg, #0f2347 0%, #1b3a6b 60%, #0e3a5c 100%);
  padding: 100px 32px 80px;
  overflow: hidden;
}

.press-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.press-hero-overlay {
  display: none;
}

.press-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.press-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.press-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 580px;
}

.press-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.press-grid-sub {
  color: var(--mid);
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 600px;
}

.press-featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 28px;
}

.press-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.press-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.press-outlet-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,0,0,0.1);
  color: #cc0000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.press-outlet-badge i {
  font-size: 14px;
}

.press-featured-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.press-featured-desc {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.72;
  margin-bottom: 16px;
}

.press-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.press-tag {
  background: rgba(42,179,177,0.12);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.press-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.press-video-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.press-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.press-card-info {
  padding: 16px 18px 20px;
}

.press-card-info .press-outlet-badge {
  margin-bottom: 8px;
}

.press-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .press-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .press-hero {
    padding: 64px 20px 52px;
  }
  .press-featured-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .press-video-grid {
    grid-template-columns: 1fr;
  }
}

/* ══ VIDEO TESTIMONIALS PAGE ══ */

.vtesti-hero {
  position: relative;
  background: linear-gradient(135deg, #280E44 0%, #1b3a6b 100%);
  padding: 96px 20px 80px;
  text-align: center;
  overflow: hidden;
}

.vtesti-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 20, 0.35);
  pointer-events: none;
}

.vtesti-hero-content {
  position: relative;
  z-index: 2;
}

.vtesti-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin: 10px 0 16px;
  line-height: 1.2;
}

.vtesti-hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.vtesti-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.vtesti-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.vtesti-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.vtesti-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vtesti-stat-sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}

/* Featured video */
.vtesti-featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.vtesti-featured-video {
  width: 100%;
}

.vtesti-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

.vtesti-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vtesti-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--teal);
  line-height: 0.5;
  display: block;
  margin-bottom: 16px;
}

.vtesti-featured-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 10px;
}

.vtesti-featured-attr {
  font-size: 14px;
  color: var(--mid);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Video grid */
.vtesti-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vtesti-video-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vtesti-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}

.vtesti-card-info {
  padding: 16px 18px 18px;
}

.vtesti-card-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 4px;
}

.vtesti-card-desc {
  font-size: 13px;
  color: var(--mid);
  margin: 0;
}

/* Reviews grid */
.vtesti-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vtesti-review-card {
  background: #fff;
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.06);
}

.vtesti-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.vtesti-stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.vtesti-review-text {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
  font-style: italic;
}

.vtesti-reviewer-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

@media (max-width: 1024px) {
  .vtesti-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vtesti-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vtesti-hero {
    padding: 64px 20px 52px;
  }
  .vtesti-stat {
    padding: 0 20px;
  }
  .vtesti-featured-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .vtesti-video-grid {
    grid-template-columns: 1fr;
  }
  .vtesti-reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ══ MEET THE PROVIDERS PAGE ══ */

.mtp-hero {
  background: linear-gradient(135deg, #1b3a6b 0%, #0f2347 100%);
  padding: 100px 32px 72px;
  position: relative;
  overflow: hidden;
}

.mtp-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(42,179,177,0.07);
  pointer-events: none;
}

.mtp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.mtp-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.mtp-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 580px;
}

.mtp-stats-bar {
  background: var(--navy);
  padding: 24px 32px;
}

.mtp-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.mtp-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.mtp-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.mtp-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  text-align: center;
  margin-top: 4px;
}

.mtp-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.mtp-section {
  padding-top: 52px;
  padding-bottom: 72px;
}

.mtp-filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}

.mtp-tab {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 10px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.2s;
}

.mtp-tab:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.mtp-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.mtp-providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mtp-card {
  aspect-ratio: 3 / 3.6;
  perspective: 1200px;
  cursor: pointer;
}

.mtp-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4,0.2,0.2,1);
  transform-style: preserve-3d;
}

.mtp-card.tapped .mtp-card-inner {
  transform: rotateY(180deg);
}

@media (hover: hover) {
  .mtp-card:hover .mtp-card-inner {
    transform: rotateY(180deg);
  }
  .mtp-card.tapped .mtp-card-front {
    pointer-events: none;
  }
}

.mtp-card.tapped .mtp-card-front {
  pointer-events: none;
  visibility: hidden;
}

.mtp-card-front,
.mtp-card-back {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

.mtp-card-front {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mtp-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.mtp-front-overlay {
  position: relative;
  z-index: 2;
  padding: 48px 16px 18px;
  background: linear-gradient(to top, rgba(10,24,50,0.95) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mtp-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.8rem, 1.1vw, 1rem);
  font-weight: 700;
  color: #fff;
  margin: 6px 0 2px;
  text-align: center;
  line-height: 1.2;
}

.mtp-cred {
  font-size: clamp(0.68rem, 0.9vw, 0.78rem);
  color: rgba(255,255,255,0.75);
  text-align: center;
}

.mtp-card-back {
  background: var(--navy);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 18px;
  gap: 6px;
}

.mtp-back-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 700;
  color: #fff;
  margin: 4px 0 0;
  line-height: 1.25;
}

.mtp-back-bio {
  font-size: clamp(0.72rem, 0.88vw, 0.82rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mtp-profile-btn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
  margin-top: auto;
}

.mtp-profile-btn:hover { color: #fff; }

.mtp-cta {
  padding: 80px 0;
}

.mtp-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mtp-cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.mtp-cta-desc {
  color: var(--mid);
  font-size: 17px;
  line-height: 1.72;
}

/* mtp-card flex-basis — needed because CHANGE 5 forces display:flex on the grid */
.mtp-providers-grid > .mtp-card {
  flex: 0 0 calc(25% - 18px);
  max-width: calc(25% - 18px);
}

@media (max-width: 1100px) {
  .mtp-providers-grid > .mtp-card {
    flex: 0 0 calc(33.33% - 16px);
    max-width: calc(33.33% - 16px);
  }
}

@media (max-width: 768px) {
  .mtp-hero { padding: 64px 20px 48px; }
  .mtp-stats-bar { padding: 20px; }
  .mtp-stat-item { padding: 0 20px; }
  .mtp-providers-grid { gap: 16px; }
  .mtp-providers-grid > .mtp-card {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
    aspect-ratio: 3/4.2;
  }
  .mtp-card-back .sp-badge { display: none; }
  .mtp-back-bio { flex: 0 0 auto; }
  .mtp-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .mtp-cta-img { display: none; }
}

@media (max-width: 480px) {
  .mtp-providers-grid { gap: 12px; }
  .mtp-providers-grid > .mtp-card {
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
  }
  .mtp-stat-divider { display: none; }
  .mtp-stat-item { padding: 8px 16px; }
}

/* ══ CONTACT MODAL REDESIGN ══ */
.contact-modal-wide {
  max-width: 480px !important;
}

.contact-options-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.contact-opt {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: var(--navy);
  transition: all 0.2s;
  background: #fff;
}

.contact-opt:hover {
  border-color: var(--teal);
  background: rgba(42,179,177,0.06);
  transform: translateX(4px);
}

.contact-opt-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-opt-call .contact-opt-icon {
  background: rgba(42,179,177,0.12);
  color: var(--teal);
}
.contact-opt-text .contact-opt-icon {
  background: rgba(27,58,107,0.1);
  color: var(--navy);
}
.contact-opt-email .contact-opt-icon {
  background: rgba(240,165,0,0.12);
  color: var(--orange);
}
.contact-opt-fax .contact-opt-icon {
  background: rgba(107,114,128,0.1);
  color: #6b7280;
}

.contact-opt-text strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-opt-text span {
  font-size: 13px;
  color: var(--mid);
}
}

/* ══ CHANGE 6: ALTERNATING SECTION LAYOUT UTILITIES ══ */
.pmg-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.pmg-two-col--reversed {
  direction: rtl;
}
.pmg-two-col--reversed > * {
  direction: ltr;
}
.pmg-two-col img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  display: block;
  object-fit: cover;
  object-position: top center;
}
.pmg-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  display: block;
}
.pmg-section-white { background: #ffffff; }
.pmg-section-gray  { background: #f4f6f8; }
.pmg-section-navy  { background: #280E44; }
.pmg-section-light { background: #EFF8FF; }
@media (max-width: 900px) {
  .pmg-two-col {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    direction: ltr !important;
  }
  .pmg-two-col--reversed > * {
    direction: ltr !important;
  }
}

/* ══ PARAGRAPH SPACING ══ */
.content-section p,
.pmg-two-col p,
.intro-text p,
.section p {
  margin-bottom: 16px !important;
  line-height: 1.78 !important;
}
.content-section p:last-child,
.pmg-two-col p:last-child {
  margin-bottom: 0 !important;
}
.content-section h2 + p,
.pmg-two-col h2 + p,
.sec-title + p {
  margin-top: 16px !important;
}

/* ══ SECTION SEPARATORS ══ */
.pmg-section-gray {
  border-top: 1px solid rgba(0,0,0,0.06) !important;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
}

/* ══ CHECKLIST ══ */
.pmg-checklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 16px 0;
}
.pmg-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--mid);
  line-height: 1.6;
}
.pmg-checklist li i {
  color: var(--teal);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 15px;
}
