/* =====================================================
   ACCURA HEALTH — CONVERSION-FOCUSED REDESIGN
   Font: Poppins (matches accura.health)
   Hero: FULL-WIDTH banner image, text left + form right on top
   Consolidated: includes all responsive fixes and section overrides
   ===================================================== */

:root {
    --brand-primary:      #db512d;
    --brand-primary-dark: #b8401f;
    --brand-deep:         #2a1f3e;
    --brand-deep-soft:    #3d2e5a;

    --ink:                #1a1512;
    --ink-soft:           #3d342e;
    --ink-muted:          #6f635b;
    --ink-faint:          #a89e95;

    --paper:              #ffffff;
    --paper-warm:         #fbf8f4;
    --paper-warmer:       #f5efe6;
    --line:               #e9e2d6;

    --accent-gold:        #c8943a;
    --success-green:      #2f7d4f;

    --ff-display: 'Poppins', -apple-system, system-ui, sans-serif;
    --ff-body:    'Poppins', -apple-system, system-ui, sans-serif;

    --shadow-sm:  0 1px 2px rgba(26, 21, 18, 0.04);
    --shadow-md:  0 4px 16px rgba(26, 21, 18, 0.06);
    --shadow-lg:  0 20px 50px -12px rgba(26, 21, 18, 0.18);
    --shadow-cta: 0 8px 24px -8px rgba(219, 81, 45, 0.45);

    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;

    --brand-gradient: linear-gradient(90deg, #392854 0%, #db512d 100%);
    --brand-gradient-rev: linear-gradient(90deg, #db512d 0%, #392854 100%);
}

/* ============ BASE ============ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--paper);
    margin: 0; padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 80px;
}

@media (min-width: 768px) { body { padding-bottom: 0; } }

h1, h2, h3, h4 {
    font-family: var(--ff-display);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 0;
}

p { margin: 0; }
a { color: var(--brand-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--brand-primary-dark); }
img { max-width: 100%; height: auto; display: block; }

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
    background: var(--brand-deep);
    color: #fff;
    padding: 10px 0;
    font-size: 13.5px;
    letter-spacing: 0.01em;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.announcement-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #7ed957;
    box-shadow: 0 0 0 0 rgba(126, 217, 87, 0.6);
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%   { box-shadow: 0 0 0 0 rgba(126, 217, 87, 0.6); }
    70%  { box-shadow: 0 0 0 10px rgba(126, 217, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(126, 217, 87, 0); }
}

.announcement-text strong { font-weight: 600; }

/* ============ HEADER ============ */
.site-header {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    position: relative;
    z-index: 10;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.logo { height: 52px; width: auto; }
.header-right { display: flex; align-items: center; gap: 24px; }
.header-trust { display: flex; align-items: center; }

.header-rating {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--ink-muted);
}

.stars-mini { color: var(--accent-gold); letter-spacing: 1px; font-size: 14px; }
.header-rating strong { color: var(--ink); font-weight: 600; }

.header-call {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px 10px 16px;
    background: var(--brand-deep);
    color: #fff;
    border-radius: 999px;
    font-family: var(--ff-body);
    transition: all 0.25s ease;
    text-decoration: none;
}

.header-call:hover {
    background: var(--brand-deep-soft);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px -4px rgba(42, 31, 62, 0.3);
}

.header-call-icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--brand-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
}

.header-call-text { display: flex; flex-direction: column; line-height: 1.1; }
.header-call-label { font-size: 11px; opacity: 0.75; letter-spacing: 0.05em; text-transform: uppercase;padding-bottom:8px; }
.header-call-number { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }

@media (max-width: 640px) {
    .header-call-label { display: none; }
    .header-call-number { font-size: 15px; }
    .header-call { padding: 8px 14px; }
    .logo { height: 42px; }
}

/* =====================================================
   HERO — FULL-WIDTH BANNER IMAGE BACKGROUND
   ===================================================== */
.hero {
    position: relative;
    padding: 70px 0 90px;
    overflow: hidden;
    isolation: isolate;
    background: var(--brand-deep);
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        95deg,
        rgba(26, 21, 18, 0.80) 0%,
        rgba(26, 21, 18, 0.62) 45%,
        rgba(26, 21, 18, 0.25) 100%
    );
}

.hero-container { position: relative; z-index: 2; }
.hero-row {
    position: relative;
    align-items: center;
}

/* HERO LEFT — TEXT ON BANNER */
.hero-left {
    color: #fff;
    padding-right: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.hero-title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 28px;
}

.hero-title-accent {
    display: inline;
    font-style: italic;
    font-weight: 500;
    color: var(--brand-primary);
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
    max-width: 560px;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.hero-benefits li i {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* HERO RIGHT — FORM CARD */
.hero-right { position: relative; }

.hero-form-card {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--r-lg);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-form-card .p-4 { padding: 28px !important; }

.hero-form-card h2.fw-bold.text-uppercase {
    font-family: var(--ff-display);
    font-size: 1.35rem;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin-bottom: 8px;
    color: var(--ink);
}

.hero-form-card > .p-4 > p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.45;
    margin-bottom: 18px;
}

/* ============ FORM LAYOUT ============ */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 12px;
}
.form-grid-2 .mb-3 { margin-bottom: 12px !important; }

@media (max-width: 480px) {
    .form-grid-2 { grid-template-columns: 1fr; }
}

#ConsultationForm .mb-3 { margin-bottom: 12px !important; }

/* ============ FORM FIELD STYLING ============ */
.form-control.input-grey-border {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--ff-body);
    font-size: 14.5px;
    color: var(--ink);
    background: var(--paper-warm);
    border: 1.5px solid var(--line);
    border-radius: var(--r-sm);
    transition: all 0.2s ease;
    outline: none;
    height: auto;
    line-height: 1.4;
}

.form-control.input-grey-border::placeholder { color: var(--ink-faint); }

.form-control.input-grey-border:focus {
    border-color: var(--brand-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(219, 81, 45, 0.12);
    color: var(--ink);
}

/* Consent checkbox */
.hero-form-card .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
    margin-bottom: 14px;
    margin-top: 8px;
}

.hero-form-card .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    margin-left: 0;
    border: 1.5px solid var(--line);
    border-radius: 4px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--brand-primary);
}

.hero-form-card .form-check-input:checked {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.hero-form-card .form-check-label {
    font-size: 11.5px;
    color: var(--ink-muted);
    line-height: 1.45;
    cursor: pointer;
}

/* Error states */
#ConsultationForm .text-danger,
#seniorcareForm .text-danger,
#seniorcareForm #scalt_error {
    font-size: 12.5px;
    color: #fecaca;
    margin-bottom: 0;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: none;
    display: none;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

#ConsultationForm .text-danger.show-error,
#seniorcareForm .text-danger.show-error,
#seniorcareForm #scalt_error.show-error {
    display: block;
    visibility: visible;
    height: auto;
    overflow: visible;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 12px;
    color: #fecaca;
}

/* ============ SUBMIT BUTTONS — gradient ============ */
button#submitbtn,
button#submitbtn2 {
    background: var(--brand-gradient);
    color: #fff;
    border: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

button#submitbtn:hover,
button#submitbtn2:hover {
    background: var(--brand-gradient-rev);
    color: #fff;
    transform: translateY(-2px);
}

button#submitbtn {
    width: 100%;
    padding: 14px 22px !important;
    font-size: 15px;
    letter-spacing: 0.04em;
    border-radius: var(--r-sm);
    box-shadow: 0 8px 24px -8px rgba(219, 81, 45, 0.55);
    margin-top: 4px;
}

button#submitbtn:hover {
    box-shadow: 0 14px 32px -8px rgba(219, 81, 45, 0.7);
}

.final-cta-wrapper button#submitbtn2 {
    width: 100%;
    max-width: 100%;
    padding: 14px 20px !important;
    font-size: 15px;
    letter-spacing: 0.05em;
    border-radius: var(--r-sm);
    box-shadow: 0 10px 30px -8px rgba(219, 81, 45, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.3;
    min-height: 50px;
}

.final-cta-wrapper button#submitbtn2:hover {
    box-shadow: 0 16px 40px -8px rgba(219, 81, 45, 0.7);
}

.final-cta-wrapper .col-md-4.text-center {
    display: flex;
    align-items: stretch;
}

/* ============ BUTTONS — gradient ============ */
.btn-primary-cta,
.btn-outline-cta,
.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: -0.005em;
    color: #fff;
    background: var(--brand-gradient);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px -8px rgba(219, 81, 45, 0.55);
    text-decoration: none;
}

.btn-primary-cta:hover,
.btn-outline-cta:hover,
.btn-secondary-cta:hover {
    background: var(--brand-gradient-rev);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -8px rgba(219, 81, 45, 0.7);
}

.btn-primary-cta i,
.btn-outline-cta i,
.btn-secondary-cta i { color: #fff; transition: transform 0.2s; }
.btn-primary-cta:hover i { transform: translateX(3px); }

.btn-outline-cta { padding: 12px 24px; font-size: 14.5px; }

/* ============ TRUST BAR — warm off-white background ============ */
.trust-bar {
    background: var(--paper-warm);
    color: var(--brand-deep);
    padding: 28px 0;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item { text-align: center; padding: 0 10px; }

.trust-number {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--brand-deep);
    margin-bottom: 4px;
}

.trust-number span {
    color: inherit;
    font-size: inherit;
    font-style: normal;
}

.trust-label {
    font-size: 13px;
    color: rgba(42, 31, 62, 0.7);
    letter-spacing: 0.02em;
}

.trust-divider {
    width: 1px;
    height: 42px;
    background: rgba(42, 31, 62, 0.15);
}

/* ============ SECTION DEFAULTS ============ */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 14px;
    padding: 4px 12px;
    background: rgba(219, 81, 45, 0.08);
    border-radius: 999px;
}

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(1.85rem, 3.5vw, 2.85rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.section-title-left { text-align: left; }
.accent-text { font-style: italic; color: var(--brand-primary); font-weight: 500; }

/* =====================================================
   SECTION BACKGROUND ALTERNATION
   Order: Trust(warm) → Treat(white) → Why(warm) → Expert(white)
          → Gallery(warm) → Insurance(white) → FAQ(warm) → Reviews(white)
   ===================================================== */
.treat-section      { padding: 90px 0 80px; background: var(--paper); }
.why-section        { padding: 90px 0; background: var(--paper-warm); }
.expert-section     { padding: 90px 0; background: var(--paper); }
.gallery-section    { padding: 90px 0; background: var(--paper-warm); }
.faq-section        { padding: 90px 0; background: var(--paper-warm); }
.reviews-section    { padding: 90px 0; background: var(--paper); }

/* ============ TREAT SECTION ============ */
.treat-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.treat-card.is-revealed { opacity: 1; transform: translateY(0); }

.treat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(219, 81, 45, 0.3);
}

.treat-card-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--paper-warm);
}

.treat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.treat-card:hover .treat-card-image img { transform: scale(1.06); }

.treat-card-content {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.treat-card-title {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 8px;
    color: var(--ink);
    line-height: 1.3;
}

.treat-card-desc {
    font-size: 0.93rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

.treat-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}

.treat-footer p { font-size: 0.97rem; color: var(--ink-muted); margin-bottom: 8px; }
.treat-footer-link { font-size: 0.97rem; font-weight: 600; color: var(--brand-primary); text-decoration: none; }
.treat-footer-link:hover { text-decoration: underline; }

/* ============ WHY SECTION ============ */
.why-image-wrap {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-image { width: 100%; height: 700px; display: block; object-fit: cover; }

.why-intro {
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 24px 0 28px;
    max-width: 520px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    opacity: 0;
    transform: translateX(-12px);
    transition: all 0.5s ease;
}

.why-list li.is-revealed { opacity: 1; transform: translateX(0); }

/* Clean icons — no card background, larger size */
.why-list-icon {
    width: 56px;
    height: 56px;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--brand-primary);
    font-size: 38px;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-list li strong {
    display: block;
    font-family: var(--ff-body);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
    white-space: nowrap;
}

.why-list li span {
    font-size: 0.93rem;
    color: var(--ink-muted);
    line-height: 1.5;
}

/* ============ EXPERT SECTION ============ */
.expert-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    background: var(--brand-deep);
}

.expert-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expert-desc {
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 24px 0 24px;
}

.expert-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.expert-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

.expert-list li i { color: var(--brand-primary); font-size: 18px; margin-top: 2px; flex-shrink: 0; }

/* ============ REVIEWS SECTION ============ */
.reviews-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.google-logo-wrap { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-muted); }
.google-logo-wrap img { height: 22px; width: auto; }

/* Rating pill — supports half-star + numeric rating */
.rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
}

.rating-pill .rating-stars i {
    color: #fbbf24;
    font-size: 16px;
    margin-right: 1px;
}

.rating-pill .rating-num {
    font-weight: 700;
    color: var(--ink);
    font-size: 16px;
    margin-right: 2px;
}

.rating-stars { color: var(--accent-gold); letter-spacing: 1px; }
.rating-count { font-size: 13.5px; color: var(--ink-muted); font-weight: 500; }

.review-card {
    height: 100%;
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.review-card.is-revealed { opacity: 1; transform: translateY(0); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.review-card-featured {
    background: var(--brand-deep);
    border-color: var(--brand-deep);
    color: #fff;
}

.review-card-featured .review-text { color: rgba(255, 255, 255, 0.95); }
.review-card-featured .review-name { color: #fff; }
.review-card-featured .review-source { color: rgba(255, 255, 255, 0.6); }
.review-card-featured .review-avatar { background: var(--brand-primary); color: #fff; }

.review-stars { color: var(--accent-gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }

.review-text {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 22px;
    font-style: italic;
    letter-spacing: -0.005em;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.review-card-featured .review-author { border-top-color: rgba(255, 255, 255, 0.1); }

.review-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--paper-warmer);
    color: var(--brand-primary);
    display: flex; align-items: center; justify-content: center;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--ff-display);
}

.review-name { font-weight: 600; font-size: 14.5px; color: var(--ink); }

/* "via Google" → Google icon row */
.review-source {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    color: var(--ink-muted);
}

.review-google-icon {
    height: 14px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.reviews-cta-row { text-align: center; margin-top: 44px; }

/* ============ GALLERY ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 350px);
    gap: 16px;
}

.gallery-item { overflow: hidden; border-radius: var(--r-lg); }

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-large { grid-row: span 2; }

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 220px); }
    .gallery-item-large { grid-row: auto; }
}

/* =====================================================
   FAQ SECTION V2 — centered heading, always-open 2-col grid
   ===================================================== */
.faq-section-v2 .section-header { margin-bottom: 50px; }

.faq-intro-center {
    font-size: 16px;
    color: var(--ink-muted);
    margin: 14px auto 0;
    max-width: 600px;
    line-height: 1.55;
}
.faq-intro-center a { color: var(--brand-primary); font-weight: 600; }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    max-width: 1080px;
    margin: 0 auto;
}

.faq-block {
    padding: 24px 26px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(57, 40, 84, 0.08);
    box-shadow: 0 4px 14px -8px rgba(57, 40, 84, 0.08);
    transition: all 0.3s ease;
}

.faq-block:hover {
    border-color: rgba(219, 81, 45, 0.4);
    box-shadow: 0 12px 28px -10px rgba(57, 40, 84, 0.18);
    transform: translateY(-2px);
}

.faq-q-static {
    font-family: var(--ff-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 10px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.faq-a-static {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   INSURANCE SECTION V2 — premium card
   ===================================================== */
.insurance-section-v2 {
    padding: 60px 0 70px;
    background: var(--paper);
}

.insurance-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 50px -20px rgba(57, 40, 84, 0.18);
    border: 1px solid rgba(57, 40, 84, 0.06);
}

.insurance-card-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(57,40,84,0.08), transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(219,81,45,0.10), transparent 45%);
    pointer-events: none;
}

.insurance-card-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 36px 44px;
    z-index: 1;
}

.insurance-icon-wrap {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 10px 24px -8px rgba(219,81,45,0.45);
}

.insurance-content { flex: 1; min-width: 0; }

.insurance-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 6px;
}

.insurance-headline {
    font-family: var(--ff-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0 0 6px;
}
.insurance-headline sup { color: var(--brand-primary); font-weight: 700; font-size: 0.55em; top: -0.7em; }

.insurance-sub {
    font-size: 14px;
    color: var(--ink-muted);
    margin: 0;
    line-height: 1.55;
}
.insurance-sub sup { color: var(--brand-primary); font-weight: 700; }

.insurance-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 26px;
    background: var(--brand-gradient);
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 12px 28px -10px rgba(219,81,45,0.5);
    transition: all 0.3s ease;
}

.insurance-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px -10px rgba(57,40,84,0.5);
}

.insurance-cta i { font-size: 22px; color: #fff; }

.insurance-cta small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    opacity: 0.85;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 3px;
}

.insurance-cta strong { display: block; font-size: 18px; font-weight: 700; line-height: 1; }

/* ============ FINAL CTA WRAPPER ============ */
.final-cta-wrapper {
    background: linear-gradient(135deg, var(--brand-deep) 0%, #3d2e5a 100%);
    position: relative;
    overflow: hidden;
    padding: 70px 0 !important;
}

.final-cta-wrapper > .container { max-width: 950px; }
.final-cta-wrapper .location-wrap { width: 100%; max-width: 400px; margin-left: auto; margin-right: auto; }

.final-cta-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 600px 300px at 100% 0%, rgba(219, 81, 45, 0.25), transparent 60%),
        radial-gradient(ellipse 400px 300px at 0% 100%, rgba(219, 81, 45, 0.12), transparent 60%);
    pointer-events: none;
}

.final-cta-wrapper > .container { position: relative; z-index: 2; }

.final-cta-wrapper h2.fw-bold {
    font-family: var(--ff-display);
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    font-weight: 600 !important;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #fff;
}

.final-cta-wrapper p.text-muted {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.55;
}

.final-cta-wrapper .form-control.input-grey-border {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    color: #fff !important;
    min-height: 50px;
    padding: 12px 18px;
    font-size: 15px;
    caret-color: #fff;
}

.final-cta-wrapper .form-control.input-grey-border::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.final-cta-wrapper .form-control.input-grey-border:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(219, 81, 45, 0.25);
    color: #fff !important;
    caret-color: #fff;
}

/* Chrome / Safari autofill fix */
.final-cta-wrapper .form-control.input-grey-border:-webkit-autofill,
.final-cta-wrapper .form-control.input-grey-border:-webkit-autofill:hover,
.final-cta-wrapper .form-control.input-grey-border:-webkit-autofill:focus,
.final-cta-wrapper .form-control.input-grey-border:-webkit-autofill:active {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0 1000px #3d2e5a inset !important;
    box-shadow: 0 0 0 1000px #3d2e5a inset !important;
    caret-color: #fff !important;
    transition: background-color 9999s ease-in-out 0s;
    border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
}

.final-cta-wrapper .form-control.input-grey-border:-webkit-autofill:focus {
    border-color: var(--brand-primary) !important;
}

.final-cta-wrapper .form-control.input-grey-border:autofill {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #fff !important;
}

/* Flatpickr on top */
.flatpickr-calendar { z-index: 9999 !important; }

/* ============ FOOTER ============ */
.site-footer {
    background: var(--paper-warmer);
    padding: 60px 0 24px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo { height: 48px; margin-bottom: 16px; }

.footer-tagline {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.55;
    max-width: 300px;
}

.footer-heading {
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 12px;
}

.footer-text, .footer-address {
    font-style: normal;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.65;
}

.footer-link {
    color: var(--ink-soft);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.footer-link:hover { color: var(--brand-primary); }
.footer-link i { color: var(--brand-primary); font-size: 12px; }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--line);
    text-align: center;
    font-size: 13px;
    color: var(--ink-muted);
}

/* ============ FLOATING CALL BUTTON ============ */
.floating-call-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 99;
    box-shadow: 0 8px 24px -4px rgba(219, 81, 45, 0.5), 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
}

.floating-call-btn:hover {
    background: var(--brand-primary-dark);
    color: #fff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 32px -4px rgba(219, 81, 45, 0.6), 0 6px 16px rgba(0, 0, 0, 0.18);
}

.floating-call-icon {
    font-size: 22px;
    position: relative;
    z-index: 2;
    animation: floating-call-shake 2.5s ease-in-out infinite;
}

@keyframes floating-call-shake {
    0%, 90%, 100% { transform: rotate(0); }
    92% { transform: rotate(-12deg); }
    94% { transform: rotate(12deg); }
    96% { transform: rotate(-8deg); }
    98% { transform: rotate(8deg); }
}

.floating-call-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--brand-primary);
    opacity: 0.5;
    animation: floating-call-pulse-ring 2s ease-out infinite;
    z-index: 1;
}

@keyframes floating-call-pulse-ring {
    0%   { transform: scale(1);   opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ============ STICKY MOBILE CTA ============ */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 12px;
    display: flex;
    gap: 10px;
    z-index: 100;
}

@media (min-width: 768px) { .sticky-mobile-cta { display: none; } }

.sticky-mobile-btn {
    flex: 1;
    padding: 13px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sticky-mobile-btn-call { background: var(--brand-deep); color: #fff; }
.sticky-mobile-btn-book {
    background: var(--brand-primary);
    color: #fff;
    box-shadow: 0 6px 16px -4px rgba(219, 81, 45, 0.5);
}

/* =====================================================
   RESPONSIVE — perfect alignment on all resolutions
   ===================================================== */

/* Large tablets / small desktops (992 – 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero { padding: 56px 0 70px; }
    .hero-left { padding-right: 18px; }
    .hero-title { font-size: 2.4rem; }
    .hero-benefits { gap: 12px 22px; }
    .why-list-icon { width: 48px; height: 48px; font-size: 32px; }
    .why-list li strong { white-space: normal; }
    .insurance-card-inner { padding: 30px 32px; gap: 22px; }
    .insurance-headline { font-size: 21px; }
}

/* Tablets (768 – 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero { padding: 48px 0 56px; }
    .hero-left {
        padding-right: 0;
        margin-bottom: 28px;
        text-align: center;
        min-height: auto;
    }
    .hero-title { font-size: 2rem; }
    .hero-benefits {
        grid-template-columns: repeat(2, 1fr);
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        gap: 10px 20px;
    }
    .hero-ctas { justify-content: center; }
    .hero-form-card { max-width: 560px; margin: 0 auto; }

    .why-section { padding: 60px 0; }
    .why-section .row { row-gap: 36px !important; }
    .why-image-wrap { max-width: 520px; margin: 0 auto; }
    .why-image { max-height: 480px; object-fit: cover; }
    .why-list-icon { width: 50px; height: 50px; font-size: 32px; }
    .why-list li strong { white-space: normal; font-size: 1rem; }
    .why-intro { max-width: 100%; font-size: 1rem; }

    .expert-section { padding: 60px 0; }
    .expert-section .row { row-gap: 36px !important; }
    .expert-video-wrap { max-width: 520px; margin: 0 auto; }

    .treat-section { padding: 60px 0; }
    .treat-card-image { aspect-ratio: 4 / 3; }

    .reviews-section { padding: 60px 0; }
    .review-card { padding: 24px 22px; }

    .faq-section { padding: 60px 0; }
    .faq-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .insurance-card-inner {
        flex-direction: column;
        text-align: center;
        padding: 32px 28px;
        gap: 18px;
    }
    .insurance-cta { width: 100%; max-width: 320px; justify-content: center; }

    .trust-bar { padding: 24px 0; }
    .trust-number { font-size: 1.7rem; }
    .trust-label { font-size: 12px; }

    .section-title { font-size: 2rem; }
}

/* Mobile (≤ 767px) */
@media (max-width: 767px) {
    .hero { padding: 36px 0 44px; }
    .hero-left {
        padding-right: 0;
        margin-bottom: 28px;
        text-align: center;
        min-height: auto;
    }
    .hero-title { font-size: 1.7rem; line-height: 1.18; margin-bottom: 20px; }
    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 100%;
        margin-bottom: 24px;
    }
    .hero-benefits li { justify-content: flex-start; font-size: 0.95rem; }
    .hero-ctas { justify-content: center; }
    .hero-ctas .btn-primary-cta { width: 100%; justify-content: center; }
    .hero-form-card { max-width: 100%; }
    .hero-form-card .p-4 { padding: 22px !important; }
    .hero-form-card h2.fw-bold.text-uppercase { font-size: 1.2rem; }

    .trust-bar { padding: 22px 0; }
    .trust-bar-inner { gap: 14px 0; }
    .trust-item { flex: 1 1 45%; padding: 6px 4px; }
    .trust-number { font-size: 1.55rem; }
    .trust-label { font-size: 11.5px; }
    .trust-divider { display: none; }

    .treat-section { padding: 50px 0; }
    .section-header { margin-bottom: 30px; }
    .section-title { font-size: 1.6rem; }
    .treat-card-image { aspect-ratio: 4 / 3; }
    .treat-card-content { padding: 18px 18px 20px; }
    .treat-card-title { font-size: 1.05rem; }
    .treat-card-desc { font-size: 0.88rem; }
    .treat-footer { margin-top: 32px; padding-top: 28px; }

    .why-section { padding: 50px 0; }
    .why-section .row { row-gap: 28px !important; }
    .why-image-wrap { max-width: 100%; margin: 0 auto; border-radius: var(--r-md); }
    .why-image { max-height: 380px; object-fit: cover; }
    .why-intro { font-size: 0.95rem; margin: 18px 0 22px; }
    .why-list { gap: 16px; margin-bottom: 24px; }
    .why-list li { gap: 12px; }
    .why-list-icon {
        width: 42px; height: 42px;
        font-size: 26px;
        margin-top: 0;
    }
    .why-list li strong { font-size: 0.97rem; line-height: 1.3; white-space: normal; }
    .why-list li span { font-size: 0.88rem; line-height: 1.5; }
    .section-title-left { text-align: left; }

    .expert-section { padding: 50px 0; }
    .expert-section .row { row-gap: 28px !important; }
    .expert-video-wrap { max-width: 100%; }
    .expert-desc { font-size: 0.95rem; margin: 18px 0 20px; }
    .expert-list li { font-size: 0.92rem; }

    .gallery-section { padding: 50px 0; }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 300px);
        gap: 12px;
    }
    .gallery-item-large { grid-row: auto; }

    .insurance-section-v2 { padding: 44px 0 50px; }
    .insurance-card { border-radius: 16px; }
    .insurance-card-inner {
        flex-direction: column;
        text-align: center;
        padding: 26px 20px;
        gap: 14px;
    }
    .insurance-icon-wrap { width: 56px; height: 56px; font-size: 22px; }
    .insurance-eyebrow { font-size: 11px; }
    .insurance-headline { font-size: 16px; }
    .insurance-sub { font-size: 12.5px; }
    .insurance-cta { width: 100%; max-width: 280px; padding: 14px 22px; }
    .insurance-cta strong { font-size: 16px; }

    .faq-section { padding: 50px 0; }
    .faq-grid { grid-template-columns: 1fr; gap: 12px; max-width: 100%; }
    .faq-block { padding: 18px 20px; }
    .faq-q-static { font-size: 14.5px; }
    .faq-a-static { font-size: 13px; }
    .faq-intro-center { font-size: 14px; }

    .reviews-section { padding: 50px 0; }
    .reviews-rating-summary { gap: 12px; flex-direction: column; }
    .review-card { padding: 22px 20px; }
    .review-text { font-size: 0.95rem; }
    .review-stars { font-size: 16px; margin-bottom: 12px; }

    .final-cta-wrapper { padding: 50px 0 !important; }
    .final-cta-wrapper h2.fw-bold { font-size: 1.55rem; }
    .final-cta-wrapper p.text-muted { font-size: 0.95rem; }

    .site-footer { padding: 44px 0 80px; }
    .footer-grid { gap: 24px; }
    .footer-tagline { max-width: 100%; }

    .sticky-mobile-cta { padding: 10px 10px; }
    .sticky-mobile-btn { padding: 12px 8px; font-size: 13.5px; }

    /* Bottom form mobile alignment */
    #seniorcareForm #scalt_error.show-error {
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }
    .final-cta-wrapper form .row.mb-3 { margin-bottom: 0 !important; }
    .final-cta-wrapper form .col-md-4 { margin-bottom: 12px; }
    .final-cta-wrapper form .col-md-4 > .mx-auto[style*="max-width"] {
        max-width: 100% !important;
        width: 100% !important;
    }
    .final-cta-wrapper .col-md-4.text-center {
        display: block;
        text-align: left;
        margin-top: 6px;
    }
    .final-cta-wrapper button#submitbtn2 {
        width: 100%;
        max-width: 100%;
        padding: 15px 20px !important;
    }

    /* Floating call button — adjusted on mobile */
    .floating-call-btn {
        bottom: 80px;
        right: 14px;
        width: 54px;
        height: 54px;
    }
    .floating-call-icon { font-size: 19px; }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
    .hero-title { font-size: 1.55rem; }
    .section-title { font-size: 1.4rem; }
    .hero-form-card .p-4 { padding: 18px !important; }
    .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
    .trust-number { font-size: 1.4rem; }
    .insurance-headline { font-size: 15px; }
    .floating-call-btn { width: 50px; height: 50px; bottom: 76px; right: 12px; }
    .floating-call-icon { font-size: 17px; }
}

/* ============ ACCESSIBILITY ============ */
.btn-primary-cta:focus-visible,
.btn-secondary-cta:focus-visible,
.form-control:focus-visible,
button#submitbtn:focus-visible,
button#submitbtn2:focus-visible {
    outline: 3px solid rgba(219, 81, 45, 0.4);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}


.final-cta-wrapper > .container { max-width: 950px; }

.final-cta-wrapper .location-wrap {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-wrapper p.text-muted {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.final-cta-wrapper button#submitbtn2 {
    background: var(--brand-primary);
}
.final-cta-wrapper button#submitbtn2:hover {
    background: var(--brand-primary-dark);
}