/* =====================================================
   ULTIMATE CARING ABA — Global Stylesheet
   Brand: Deep Navy #12345E | Teal #00B9B4 | Gold #DAA520
          Bright Blue #2B7FC3 | Warm Orange #F56C28 | Off-White #F4F8FB
   Font: Poppins (Google Fonts)
   ===================================================== */

/* ── Design Tokens ─────────────────────────────────── */
:root {
  /* Brand Colors */
  --navy:       #12345E;
  --navy-dark:  #0D2545;
  --teal:       #00B9B4;
  --teal-dark:  #009A96;
  --gold:       #DAA520;
  --blue:       #2B7FC3;
  --orange:     #F56C28;
  --off-white:  #F4F8FB;
  --white:      #FFFFFF;

  /* Text */
  --text-primary:   #1A2B3C;
  --text-muted:     #5A6B7C;
  --text-faint:     #9FB0C2;
  --text-on-dark:   rgba(255,255,255,0.88);
  --text-on-dark-2: rgba(255,255,255,0.55);

  /* Surfaces */
  --surface-1: #FFFFFF;
  --surface-2: #F4F8FB;
  --surface-3: #E8F0F8;
  --border:    #D5E1ED;

  /* Type Scale (Fluid) */
  --text-xs:   clamp(0.75rem,  0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw,   1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem + 2.5vw,  3.5rem);
  --text-hero: clamp(2.4rem,   1rem + 5vw,      4.5rem);

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --content-default: 1100px;
  --content-narrow:  760px;
  --content-wide:    1280px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(18,52,94,0.08);
  --shadow-md: 0 4px 20px rgba(18,52,94,0.10);
  --shadow-lg: 0 12px 40px rgba(18,52,94,0.14);

  /* Transition */
  --ease: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Fonts */
  --font-body:    'Poppins', Arial, Helvetica, sans-serif;
  --font-display: 'Poppins', Arial, Helvetica, sans-serif;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--surface-2);
  line-height: 1.6;
  min-height: 100dvh;
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); }
p, li, figcaption { text-wrap: pretty; }
a { color: var(--teal); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--teal-dark); }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, select, textarea { font: inherit; }
ul[role="list"], ol[role="list"] { list-style: none; }
::selection { background: rgba(0,185,180,0.2); color: var(--text-primary); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: var(--radius-sm); }

/* ── Layout Utilities ──────────────────────────────── */
.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--sp-4), 5vw, var(--sp-8));
}
.container--narrow { max-width: var(--content-narrow); }
.container--wide   { max-width: var(--content-wide); }

.section {
  padding-block: clamp(var(--sp-12), 8vw, var(--sp-24));
}
.section--sm {
  padding-block: clamp(var(--sp-8), 5vw, var(--sp-16));
}

/* ── Gold Rule ─────────────────────────────────────── */
.gold-rule {
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border: none;
  margin-block: var(--sp-6);
}

/* ── Eyebrow Label ─────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-3);
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,185,180,0.28);
}
.btn--primary:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,185,180,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(18,52,94,0.22);
}
.btn--navy:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-1px);
}

/* ── Navigation ────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(18,52,94,0.3);
  transition: box-shadow var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--sp-4), 5vw, var(--sp-8));
  gap: var(--sp-6);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img {
  height: 90px;
  width: auto;
  max-width: 500px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
  text-decoration: none;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--teal); }
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}
.nav-phone {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  display: none;
}
.nav-phone strong { color: var(--teal); font-size: var(--text-sm); }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 200ms ease;
}
.mobile-menu {
  display: none;
  background: var(--navy-dark);
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-1); }
.mobile-menu a {
  display: block;
  font-size: var(--text-base);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-md);
  text-decoration: none;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.mobile-cta { margin-top: var(--sp-4); display: block; text-align: center; }

@media (min-width: 860px) {
  .nav-phone { display: block; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-right .btn { display: none; }
}

/* ── Footer ────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding-block: var(--sp-16) var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--sp-10);
}
.footer-brand .footer-logo img {
  height: 80px;
  width: auto;
  max-width: 440px;
  margin-bottom: var(--sp-4);
}
.footer-tagline {
  font-size: var(--text-xs);
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: var(--sp-5);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-2);
}
.footer-contact-item strong { color: rgba(255,255,255,0.85); }
.footer-heading {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-4);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  margin-top: var(--sp-12);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--teal); }
.footer-social { display: flex; gap: var(--sp-3); }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--ease);
  text-decoration: none;
}
.footer-social a:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.footer-ins-strip {
  margin-top: var(--sp-5);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(0,185,180,0.1);
  border: 1px solid rgba(0,185,180,0.25);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.7);
}
.footer-ins-strip strong { color: var(--teal); display: block; margin-bottom: 4px; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Section Headers ───────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.section-header h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--sp-4);
}
.section-header p {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}
.section-header--light h2 { color: var(--white); }
.section-header--light p  { color: rgba(255,255,255,0.65); }

/* ── Cards ─────────────────────────────────────────── */
.card {
  background: var(--surface-1);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--ease), transform var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ── Badge / Pill ──────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
}
.badge--teal   { background: rgba(0,185,180,0.12); color: var(--teal-dark); border: 1px solid rgba(0,185,180,0.3); }
.badge--gold   { background: rgba(218,165,32,0.12); color: #9B7400; border: 1px solid rgba(218,165,32,0.3); }
.badge--orange { background: rgba(245,108,40,0.12); color: #C4450E; border: 1px solid rgba(245,108,40,0.3); }
.badge--navy   { background: rgba(18,52,94,0.08); color: var(--navy); border: 1px solid rgba(18,52,94,0.2); }

/* ── Page Hero (inner pages) ───────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0D2545 100%);
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--sp-12), 8vw, var(--sp-20));
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,185,180,0.18) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--blue));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.page-hero p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ── Insurance Logo Strip ──────────────────────────── */
.payer-strip {
  background: var(--navy);
  padding-block: var(--sp-5);
  overflow: hidden;
}
.payer-strip-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  justify-content: center;
}
.payer-name {
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 99px;
}
.payer-divider { color: rgba(255,255,255,0.2); font-size: 18px; }
.payer-more {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--teal);
  background: rgba(0,185,180,0.12);
  border: 1px solid rgba(0,185,180,0.3);
  padding: 4px 12px;
  border-radius: 99px;
}

/* ── Utility ───────────────────────────────────────── */
.text-center { text-align: center; }
.text-teal   { color: var(--teal); }
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-orange { color: var(--orange); }
.bg-navy     { background: var(--navy); }
.bg-off      { background: var(--surface-2); }
.sr-only     { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Page-specific: Coming Soon ────────────────────── */
.coming-soon-wrap {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-16) var(--sp-6);
}
.coming-soon-wrap h2 { font-size: var(--text-xl); color: var(--navy); margin-bottom: var(--sp-4); }
.coming-soon-wrap p  { color: var(--text-muted); max-width: 480px; margin-inline: auto; margin-bottom: var(--sp-8); }
