@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --background: #ffffff;
  --foreground: #1d2930;
  --card: #ffffff;
  --card-foreground: #012d28;
  --primary: #076EA1;
  --primary-foreground: #ffffff;
  --secondary: #FBF6ED;
  --secondary-foreground: #012d28;
  --accent: #FFA51F;
  --accent-foreground: #ffffff;
  --muted: #f1f5f4;
  --muted-foreground: #414242;
  --border: #e2e8e6;
  --input: #e2e8e6;
  --ring: #076EA1;
  --footer-bg: #076EA1;
  --cta-overlay: rgba(29, 41, 48, 0.85);
  --hero-gradient: linear-gradient(135deg, rgba(29, 41, 48, 1) 20%, rgba(29, 41, 48, 0.35) 100%);
  --star: #F59E0B;
	--blue-50: #EDF3F8;
    --blue-100: #DCE8F3;
    --blue-200: #C8DCEB;
    --blue-300: #9CC0DE;
    --blue-400: #5A99CC;
    --blue-500: #2A75B9;
    --blue-600: #076EA7;
    --blue-700: #01608C;
    --blue-800: #014C70;
    --blue-900: #013A57;
    --bg: #F7F9FB;
    --bg-2: #F4F7FA;
    --surface: #FFFFFF;
    --hero-tint: #EDF3F8;
    --ink: #1F2937;
    --ink-soft: #576673;
    --line: #E5EAF0;
    --ok: #22C55E;
    --ok-deep: #16A34A;
    --star: #F59E0B;
    --sage-50: #F4F7FA;
    --sage-100: #EDF3F8;
    --sage-200: #DCE8F3;
    --sage-300: #C8DCEB;
    --sage-400: #9CC0DE;
    --sage-500: #2A75B9;
    --sage-600: #01608C;
    --cream: #F7F9FB;
    --cream-2: #F4F7FA;
    --teal-700: #076EA7;
    --teal-800: #01608C;
    --teal-900: #013A57;
    --shadow-sm: 0 1px 2px rgba(15, 34, 55, .05), 0 1px 1px rgba(15, 34, 55, .04);
    --shadow-md: 0 8px 24px rgba(15, 34, 55, .08), 0 2px 6px rgba(15, 34, 55, .05);
    --shadow-lg: 0 24px 60px rgba(15, 34, 55, .14), 0 6px 16px rgba(15, 34, 55, .06);
    --radius: 14px;
    --radius-lg: 20px;
    --max: 1200px;
}

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

body {
  font-family: Raleway, system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, .font-display { font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif; }
h2 { font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif; }
h3 { font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif; }
h4 { font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif; }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section-padding { padding: 5rem 0; }
.section-alt { background: var(--secondary); }

/* ===== HEADER ===== */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
  padding-top: 5px;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.header-logo {
  max-width: 220px;
  position: relative;
  display: inline-block;
}
.header-logo svg,
.header-logo img {
  height: auto;
  max-height: 70px;
  width: 100%;
  padding-bottom: 5px;
}
.logo-img { display: block; transition: opacity 0.25s ease; }
.logo-dark { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
#site-header.scrolled #logo-dark { opacity: 1; }
#site-header.scrolled #logo-light { opacity: 0; }

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 8px;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
  color: var(--primary-foreground);
}
.site-header.scrolled .header-phone { color: var(--foreground); }
.header-phone svg { width: 1rem; height: 1rem; }
.site-header:not(.scrolled) .header-phone svg { color: var(--primary-foreground); }
.site-header.scrolled .header-phone svg { color: var(--primary); }

/* ========== AVAILABLE NOW BUTTON ========= */
.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--blue-700);
    color: #ffffff;
    padding: 9px 14px;
	margin-top: 14px; 
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: transform .15s ease, background .2s ease;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  height: 2.75rem;
  padding: 0 1.75rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 14px rgba(7, 110, 161, 0.3);
}
.btn-primary:hover {
  background: rgba(7, 110, 161, 0.9);
  box-shadow: 0 8px 20px rgba(7, 110, 161, 0.35);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: 0 4px 14px rgba(7, 110, 161, 0.3);
}
.btn-secondary:hover {
  background: rgba(7, 110, 161, 0.9);
  box-shadow: 0 8px 20px rgba(7, 110, 161, 0.35);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 4px 14px rgba(255, 165, 31, 0.3);
}
.btn-accent:hover {
  background: rgba(255, 165, 31, 0.9);
  box-shadow: 0 8px 20px rgba(255, 165, 31, 0.35);
}

.btn-sm { height: 2.5rem; padding: 0 1.5rem; border-radius: 0.5rem; }
.btn-lg { height: 3rem; padding: 0 2rem; }
.btn-xl { height: 3.25rem; padding: 0 2.5rem; font-size: 1.25rem; }

.btn-hero-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--primary-foreground);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.2); }

.btn-submit {
  background: var(--primary);
  color: var(--primary-foreground);
  width: 100%;
  height: 3.5rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(7, 110, 161, 0.3);
}
.btn-submit:hover { background: rgba(7, 110, 161, 0.9); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 4rem;
}


.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: var(--hero-gradient); }

.hero-content { position: relative; z-index: 10; max-width: 42rem; }

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(7, 110, 161, 0.2);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-title span { color: var(--accent); }

.hero-description {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons { display: flex; flex-direction: column; gap: 1rem; }

/* =========== HERO SECTION ALT ================ */
.hero-section-alt {
	position: relative;
    padding: 48px 0 56px;
    overflow: hidden;
    background: radial-gradient(1100px 600px at 80% -10%, rgba(42, 117, 185, .10), transparent 60%), radial-gradient(900px 500px at -10% 30%, rgba(237, 243, 248, .9), transparent 60%), linear-gradient(180deg, var(--bg) 0%, var(--hero-tint) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 48px;
    align-items: center;
}

section {
    padding: 72px 0;
}

.wrap {
	max-width: var(--max);
    margin: 0 auto;
    padding: 0 22px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue-700);
    background: rgba(42, 117, 185, .10);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.hero-section-alt p.lede {
    font-size: clamp(1.05rem, 1.6vw, 1.18rem);
    color: var(--ink-soft);
    max-width: 32em;
}

.hero-section-alt .hero-photo {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px -22px rgba(1, 60, 87, 0.30);
    aspect-ratio: 4 / 5;
    background: var(--blue-50);
}

.hero-section-alt .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-section-alt .hero-photo .photo-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px -8px rgba(1, 60, 87, 0.25);
    z-index: 1;
}

.hero-section-alt .hero-photo .photo-badge .stars {
    color: var(--star);
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1;
}

.hero-section-alt .hero-photo .photo-badge .rating {
    font-weight: 700;
    color: var(--blue-900);
    font-size: 15px;
    line-height: 1.2;
}

.hero-section-alt .hero-photo .photo-badge .rating-sub {
    color: var(--slate);
    font-size: 12.5px;
    line-height: 1.2;
}

.cta-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 26px;
    align-items: stretch;
}

.cta-col {
    display: flex;
    flex-direction: column;
}

.btn-cta {
    width: 100%;
    min-height: 76px;
    height: 76px;
    font-size: 16.5px;
    padding: 12px 20px;
    line-height: 1.25;
    box-sizing: border-box;
}

.btn-sage {
    background: var(--blue-500);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.btn-sage:hover {
    background: var(--blue-600);
    box-shadow: var(--shadow-lg);
}

.btn-cta .cta-label-strong {
    display: block;
    font-size: 16.5px;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
}

.btn-cta .cta-label-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 500;
    opacity: .88;
    margin-top: 4px;
    letter-spacing: .01em;
    line-height: 1.25;
    white-space: nowrap;
}

.btn-cta .cta-label-sub .sub-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ok);
    display: inline-block;
    flex: 0 0 8px;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .7);
    animation: pulse 1.8s infinite;
}

.cta-micro {
    margin-top: 10px;
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.4;
    text-align: center;
    min-height: calc(1.4em * 2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-phone:hover { text-decoration: none; transform: translateY(-1px); background: var(--blue-800); }
.header-phone .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--ok); box-shadow: 0 0 0 0 rgba(34,197,94,.7);
    animation: pulse 1.8s infinite;
}
  
.header-phone.offline .dot { background: #cbd5e1; animation: none; }
  
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.7); }
    70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
  }
  
.header-phone-num { white-space: nowrap; }
  
@media (max-width: 520px) {
    .header-phone-label { display: none; }
  }


.diff-strip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 8px 14px;
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: 999px;
    font-size: 13px;
    color: var(--blue-900);
    font-weight: 500;
}

/* ========= SCHEDULER ============ */
#paths {
    background: linear-gradient(180deg, var(--bg) 0%, var(--blue-50) 100%);
}

.section-head {
    text-align: center;
    margin-bottom: 44px;
}

.section-head .eyebrow {
    font-size: 12.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue-500);
    font-weight: 600;
}

.section-head p {
    max-width: 38em;
    margin: 0 auto;
}

.paths {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 28px;
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
	padding: 1.5rem;
}

.card-primary {
    border: 2px solid var(--blue-700);
}

.card-head {
    padding: 26px 28px 22px;
    border-bottom: 1px solid var(--line);
}

.card-head .tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue-700);
    background: var(--blue-50);
    padding: 5px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.card-primary .card-head .tag {
    background: var(--blue-700);
    color: #ffffff;
}

.card-head h3 {
    font-size: 1.45rem;
    margin-bottom: 6px;
}

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

.sched-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--blue-50);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 22px;
}

.sched-steps {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 20px;
}

.sched-step.active {
    display: block;
}

.sched-steps .pill {
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--bg-2);
    color: var(--ink-soft);
    font-weight: 500;
}

.sched-steps .pill.active {
    background: var(--blue-700);
    color: #ffffff;
}

/* ==== INSURANCE/LOGOS ===== */

#insurance {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

#insurance .ins-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 32px;
}

#insurance .ins-head p {
    color: var(--slate);
    margin: 0;
}

.ins-logos {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: center;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.ins-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.ins-logo img {
    max-width: 100%;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.72);
    transition: filter 200ms ease;
}

.ins-logo img:hover {
    filter: grayscale(0%) opacity(1);
}

@media (max-width: 980px) {
    .ins-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px 28px;
    }
}

@media (max-width: 600px) {
    .ins-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 28px;
    }
}

/* ======= IMAGE CTA SECTION ========== */
.connection-band {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    background: var(--bg);
}

.connection-band .band-content .wrap {
    width: 100%;
}

.connection-band .band-content {
    position: relative;
    z-index: 1;
    min-height: 480px;
    display: flex;
	justify-content: flex-start;
    align-items: center;
    padding: 80px 0;
}

.connection-band .band-inner {
    max-width: 520px;
	position: relative;
}

.connection-band .band-eyebrow {
    display: inline-block;
    color: var(--blue-700);
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.connection-band h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(30px, 3.8vw, 44px);
    line-height: 1.12;
    color: var(--blue-900);
    margin: 0 0 16px;
    letter-spacing: -0.015em;
}

.connection-band img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78% center;
    display: block;
}

connection-band .band-eyebrow {
    display: inline-block;
    color: var(--blue-700);
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.connection-band h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(30px, 3.8vw, 44px);
    line-height: 1.12;
    color: var(--blue-900);
    margin: 0 0 16px;
    letter-spacing: -0.015em;
}

.connection-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(247, 249, 251, 1) 0%, rgba(247, 249, 251, 0.98) 45%, rgba(247, 249, 251, 0.80) 60%, rgba(247, 249, 251, 0.20) 80%, rgba(247, 249, 251, 0) 92%);
}

@media (min-width: 1100px) {
    .connection-band .band-inner::before {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* ========= Three Column Cards ============== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue-50);
    color: var(--blue-700);
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 14px;
}

.step h3 {
    margin-bottom: 6px;
    color: var(--blue-900);
}

.step p {
    margin: 0;
    font-size: 15px;
}

@media (max-width: 800px) {
    .steps {
        grid-template-columns: 1fr;
    }
}

/* ========= CARD CTA ============ */
.text-cta {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.text-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 30%, rgba(255, 255, 255, .10), transparent 50%);
    pointer-events: none;
}

.text-cta h3 {
    color: #ffffff;
    margin-bottom: 6px;
}

.text-cta p {
    color: rgba(255, 255, 255, .88);
    margin-bottom: 18px;
}

.text-cta .btn-light {
    background: #ffffff;
    color: var(--blue-700);
	gap: 10px;
}

.text-cta .btn-light:hover {
    background: var(--blue-50);
}

/* ============= TESTIMONIALS ============== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.quote {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 32px 28px 28px 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 200ms ease, box-shadow 200ms ease;
}
.quote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--blue-500) 0%, var(--blue-700) 100%);
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}

.quote-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue-50);
    color: var(--blue-700);
    border: 1px solid var(--blue-100);
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
    width: fit-content;
}

.quote-mark {
    font-family: 'DM Serif Display', serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 0.6;
    color: var(--blue-200);
    margin-bottom: 4px;
    user-select: none;
}

.quote blockquote {
    margin: 0 0 22px;
    padding: 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.005em;
    color: var(--ink);
    line-height: 1.6;
    flex: 1;
}

.quote blockquote em.highlight {
    font-style: normal;
    font-weight: 500;
    color: var(--blue-900);
    background: linear-gradient(180deg, transparent 65%, rgba(42, 117, 185, 0.20) 65%);
    padding: 0 2px;
}

.quote-attribution {
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--slate);
    letter-spacing: 0.01em;
}

@media (max-width: 980px) {
    .testimonials {
        grid-template-columns: 1fr;
        gap: 20px;
    }
	
	 .quote {
        padding: 28px 24px 24px 28px;
    }
}

/* ============ ACCORDION SECTION ============= */
.accordion-section .faq-list {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
	gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 22px;
    cursor: pointer;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--blue-900);
    text-align: left;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding: 0 22px;
    color: var(--ink-soft);
    font-size: 15px;
}

.faq-a-inner {
    padding-bottom: 20px;
}

/* ========== CRISIS CALLOUT ========== */
.crisis {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
    color: var(--ink-soft);
}

.crisis .wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14.5px;
}

.crisis b,
.crisis strong {
    color: var(--blue-700);
}

/* ===== SERVICES ===== */
.cp3-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.cp3-card {
  width: 100%;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  transition: all 0.3s ease;
}
.cp3-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(7, 110, 161, 0.2);
}

.cp3-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}
.cp3-icon.svg { border-radius: 0.75rem; background: var(--secondary); }
.cp3-card:hover .cp3-icon.svg { background: var(--primary); }
.cp3-icon svg, .cp3-icon img { width: 1.75rem; height: 1.75rem; }
.cp3-icon svg { color: var(--primary); transition: color 0.3s; }
.cp3-card:hover .cp3-icon svg { color: var(--primary-foreground); }
.cp3-card h3 { font-size: 1.25rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.75rem; }
.cp3-card p { color: var(--muted-foreground); line-height: 1.7; }

/* ===== SECTION HEADERS ===== */
.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 0.5rem;
}

.section-subtitle {
  color: var(--muted-foreground);
  margin-top: 1rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* ===== WHY CHOOSE US ===== */
.cp1-grid { display: grid; gap: 3rem; align-items: center; }
.cp1-image-wrap { position: relative; }
.cp1-image { border-radius: 1rem; overflow: hidden; max-height: 600px; }
.cp1-image.includes-stats { aspect-ratio: 4/5; }
.cp1-image img { width: 100%; height: 100%; object-fit: cover; }

.stats-overlay {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--secondary);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  display: flex;
  gap: 2rem;
}

.stat-item { text-align: center; }
.stat-value { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 0.75rem; color: var(--secondary-foreground); margin-top: 0.25rem; }

.cp1-content .section-title { margin-bottom: 1.5rem; }
.cp1-description,
.cp1-description p { color: var(--muted-foreground); margin-bottom: 2rem; line-height: 1.7; }
.cp1-description p:last-child { margin-bottom: 0; }

.features-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item { display: flex; align-items: center; gap: 0.75rem; }
.feature-icon {
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  background: rgba(7, 110, 161, 0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 1rem; height: 1rem; color: var(--primary); }
.feature-item span { color: var(--foreground); font-weight: 500; }

/* ===== TEAM ===== */
.team-carousel-wrap { position: relative; }
.team-carousel { overflow: hidden; }
.team-track { display: flex; gap: 1.5rem; transition: transform 0.4s ease; }
.team-slide { flex: 0 0 100%; min-width: 0; }
.team-card {
  border-radius: 1rem; overflow: hidden;
  background: var(--card); border: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.team-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.team-card-image { aspect-ratio: 3/4; overflow: hidden; }
.team-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-card-image img { transform: scale(1.05); }
.team-card-info { padding: 1.5rem; text-align: center; }
.team-card-info h3 { font-size: 1.125rem; font-weight: 600; color: var(--foreground); }
.team-card-info p { font-size: 0.875rem; color: var(--primary); font-weight: 500; margin-top: 0.25rem; }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--background); box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background 0.2s;
}
.carousel-btn:hover { background: var(--muted); }
.carousel-btn svg { width: 1.25rem; height: 1.25rem; color: var(--foreground); }
.carousel-btn-prev { left: -1rem; }
.carousel-btn-next { right: -1rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-inner { max-width: 48rem; margin: 0 auto; }
.testimonial-stage {
  position: relative; min-height: 250px;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-slide {
  text-align: center; opacity: 0; position: absolute;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(20px); width: 100%; padding: 0 1rem;
}
.testimonial-slide.active { opacity: 1; position: relative; transform: translateY(0); }
.testimonial-quote-icon { width: 2.5rem; height: 2.5rem; color: rgba(7, 110, 161, 0.2); margin: 0 auto 1.5rem; }
.testimonial-text { font-size: 1.125rem; color: var(--foreground); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-stars { display: flex; justify-content: center; gap: 0.25rem; margin-bottom: 0.75rem; }
.testimonial-stars svg { width: 1.25rem; height: 1.25rem; fill: var(--primary); color: var(--primary); }
.testimonial-name { font-weight: 600; color: var(--foreground); }
.testimonial-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.testimonial-dot { width: 0.625rem; height: 0.625rem; border-radius: 9999px; background: var(--border); transition: all 0.3s ease; padding: 0; }
.testimonial-dot.active { background: var(--primary); width: 2rem; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 48rem; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 0.75rem; overflow: hidden; transition: box-shadow 0.3s; }
.faq-item.open { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; background: transparent; text-align: left;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-weight: 600; font-size: 1rem; color: var(--foreground); transition: color 0.2s;
}
.faq-trigger:hover { color: var(--primary); }
.faq-trigger svg { width: 1.25rem; height: 1.25rem; color: var(--muted-foreground); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-trigger svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; color: var(--muted-foreground); line-height: 1.7; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* ===== INSURANCE ===== */
.insurance-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.insurance-badge {
  display: flex; align-items: center; justify-content: center;
  padding: 1rem 1.5rem; border-radius: 0.75rem;
  background: var(--card); border: 1px solid var(--border);
  min-width: 160px; transition: box-shadow 0.2s;
}
.insurance-badge:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.insurance-badge span { font-size: 0.875rem; font-weight: 600; color: var(--muted-foreground); white-space: nowrap; }

/* ===== CTA / CONTACT FORM ===== */
.cta-section { position: relative; padding: 5rem 0 7rem; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg-overlay { position: absolute; inset: 0; background: var(--cta-overlay); }
.cta-content { position: relative; z-index: 10; max-width: 36rem; margin: 0 auto; text-align: center; }
.cta-title { font-size: 1.875rem; font-weight: 700; color: var(--primary-foreground); margin-bottom: 1rem; }
.cta-subtitle { color: var(--primary-foreground); margin-bottom: 2rem; }
.contact-form { background: rgba(255,255,255,0.5); backdrop-filter: blur(4px); border-radius: 1rem; padding: 2rem; }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-input, .form-textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.3);
  color: var(--foreground); font-family: inherit; font-size: 0.9375rem;
  outline: none; transition: border-color 0.2s;
}
.form-input { height: 3rem; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(29, 41, 48, 0.75); }
.form-input:focus, .form-textarea:focus { border-color: var(--primary); }
.form-textarea { min-height: 80px; resize: none; margin-bottom: 1rem; }

/* Gravaty form */
.contact-form .gform-theme--foundation .gform_fields{row-gap: 1rem;}
.contact-form .ginput_container input { width: 100%; padding: 0.75rem 1rem; border-radius: 0.5rem !important; border: 1px solid rgba(255, 255, 255, 0.65) !important; background: rgba(255, 255, 255, 0.3) !important; color: var(--foreground) !important; font-family: inherit; font-size: 0.9375rem !important; outline: none; transition: border-color 0.2s !important; height: 3rem !important; text-align: left;}
.contact-form .ginput_container_textarea textarea { min-height: 80px; resize: none; margin-bottom: 1rem; width: 100%; padding: 0.75rem 1rem; border-radius: 0.5rem; border: 1px solid rgba(255, 255, 255, 0.65); background: rgba(255, 255, 255, 0.3); color: var(--foreground); font-family: inherit; font-size: 0.9375rem; outline: none; transition: border-color 0.2s; text-align: left;}
.contact-form .gform_footer input { height: 3rem !important; padding: 0 2rem; background: var(--primary) !important; color: var(--primary-foreground); width: 100% !important; border-radius: 0.75rem !important; font-size: 1rem !important; font-weight: 600 !important; box-shadow: 0 4px 14px rgba(7, 110, 161, 0.3) !important; display: block !important; transition: all 0.3s ease !important; }
.contact-form .gform_footer { width: 100%; display: block; }
.contact-form .gform_footer input:hover { background: rgba(7, 110, 161, 0.9) !important; }


.cp1-grid.image-left { direction: rtl; }
.image-left .cp1-image.includes-stats { margin-right: auto; }

/* ===== FOOTER ===== */
.site-footer { background: var(--footer-bg); color: var(--primary-foreground); }
.footer-inner { padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.footer-grid, .footer-about { justify-items: center; }
.footer-about .logo { max-width: 350px; }
.footer-about .logo img { height: auto; max-width: 100%; max-height: 80px; width: 100%; padding-bottom: 10px; }
.footer-about p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; }
.footer-about svg { height: 2rem; max-width: 140px; max-height: 2rem; margin-bottom: 1rem; }
.footer-heading { font-weight: 600; font-size: 1.125rem; margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links span { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }
.footer-contact-item svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }
.footer-contact-item span { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; padding-top: 2rem; text-align: center; }
.footer-bottom p { font-size: 0.875rem; color: rgba(255,255,255,0.4); }



/* ===== RESPONSIVE ===== */
@media (min-width: 480px) { .header-right { margin-left: 0; } }

@media (min-width: 640px) {
  .header-inner { height: 5rem; }
  .header-phone { display: flex; }
  .hero-buttons { flex-direction: row; }
  .form-row-2col { grid-template-columns: 1fr 1fr; }
  .team-slide { flex: 0 0 calc(50% - 0.75rem); }
}

@media (min-width: 768px) {
  .section-padding { padding: 6rem 0; }
  .hero-title { font-size: 3rem; }
  .hero-description { font-size: 1.25rem; }
  .section-title { font-size: 2.25rem; }
  .cp3-card { width: calc(50% - 0.75rem); }
  .cta-title { font-size: 2.25rem; }
  .stat-value { font-size: 1.875rem; }
}

@media (min-width: 991px) {
  .btn { height: 3rem; padding: 0 2rem; gap:10px; }
  .btn-sm { height: 2.75rem; padding: 0 1.75rem; }
  .btn-lg { height: 3.5rem; padding: 0 2.5rem; }
  .btn-xl { height: 3.5rem; padding: 0 2.75rem; font-size: 1.25rem; }
}

@media (min-width: 1024px) {
  .header-logo { max-width: 300px; }
  .hero-title { font-size: 3.75rem; }
  .cp3-card { width: calc(33.333% - 1rem); }
  .cp1-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .team-slide { flex: 0 0 calc(33.333% - 1rem); }
}

@media (max-height: 700px) {
  .hero { min-height: auto; padding-top: 7rem; padding-bottom: 4rem; }
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.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; }




/* ==========================================================================
   DYNAMIC BUSINESS HOURS CUSTOM BUTTON STYLING
   ========================================================================== */

/* Keeps the button block and its micro text stacked nicely */
.cta-pair-layout {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  vertical-align: middle !important;
}

/* Force the theme button to behave like a vertical column flex box */
.btn.btn-cta-stack {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  height: auto !important;
  min-height: 76px !important;
  min-width: 300px !important;
  padding: 14px 24px !important;
  box-sizing: border-box !important;
  white-space: normal !important;
}


/* Main text line (Phone number or title) */
.btn-cta-stack .cta-label-strong {
	position: relative;
  display: block !important;
  width: 100% !important;
  font-size: 16.5px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  text-align: center !important;
  margin-bottom: 4px !important;
}

/* Sub-row live info wrapper */
.btn-cta-stack .cta-label-sub {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  opacity: 0.9 !important;
  letter-spacing: 0.01em !important;
  white-space: nowrap !important;
}

/* Pulsing Live Green Dot Element */
.btn-cta-stack .sub-dot {
  width: 8px !important;
  height: 8px !important;
  background-color: #2ed573 !important;
  border-radius: 50% !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
  box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.7);
  animation: dynamicPulseLoop 1.8s infinite;
}

/* Hide dot style automatically when script adds offline class */
.btn-cta-stack.offline .sub-dot {
  display: none !important;
}

.btn-cta-stack.offline .cta-label-strong:before {
	content:'';
	position: absolute;
	left: -24px;
	width: 20px;
	height: 20px;
	background-image: url('http://info.connectionswellnessgroup.com/wp-content/uploads/2026/06/calendar-icon-updated.svg');
	background-size: contain;
	background-repeat: no-repeat;
}

/* Small micro-copy text centered directly beneath the button block */
.cta-pair-layout .cta-micro {
  display: block !important;
  width: 100% !important;
  margin-top: 10px !important;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  text-align: center !important;
}

/* Keyframes loop configuration */
@keyframes dynamicPulseLoop {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(46, 213, 115, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 213, 115, 0);
  }
}


