/* =========================
   1) DESIGN TOKENS
========================= */
:root {
    /* Brand */
    --primary-color: #2B5219;
    --dark-text: #000000;
    --border-color: #2B5219;

    /* Typography */
    --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --font-heading: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

    /* Back-compat / header usage */
    --font-main: var(--font-heading);

    /* Layout */
    --container: 1320px;

    /* Header (set by JS) */
    --header-h: 0px;
}

/* =========================
   2) RESET / BASE
========================= */
html {
    scroll-padding-top: var(--header-h);
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
}

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

img,
svg {
    max-width: 100%;
    height: auto;
}

/* Prevent accidental overflow from sections using 100vw etc. */
body {
    overflow-x: clip;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.1px;
    color: var(--dark-text);
}

/* =========================
   3) HEADER
========================= */

/* ── Accent top bar ───────────────────────────────────── */
.site-header::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, #163314 0%, #2B5219 40%, #C9961A 100%);
}

/* ── Sticky shell ──────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .08), 0 1px 3px rgba(0, 0, 0, .06);
}

/* ── Inner row ─────────────────────────────────────────── */
.header-inner,
.header-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}

.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 10px 48px;
    width: 100%;
    min-height: 82px;
    overflow: hidden;
}

/* ── Remove old diagonal panel ────────────────────────── */
.header-v2::before {
    display: none;
}

/* ── LOGO ──────────────────────────────────────────────── */
.header-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

.header-logo img {
    height: 58px;
    width: auto;
    display: block;
}

/* ── CENTER: credential badges ────────────────────────── */
.header-badges {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-heading);
    font-size: 12.5px;
    font-weight: 700;
    color: #2B5219;
    background: #EFF7E8;
    border: 1px solid #c8e0b8;
    border-radius: 999px;
    padding: 5px 12px 5px 8px;
    white-space: nowrap;
}

.header-badge svg {
    color: #2B5219;
    flex-shrink: 0;
}

.header-badge-sep {
    color: #bbb;
    font-size: 16px;
    font-weight: 300;
    flex-shrink: 0;
}

/* ── RIGHT: CTA ────────────────────────────────────────── */
.header-cta {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    position: relative;
    z-index: 1;
    min-width: 0;
}

.call-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* Header CTA: desktop shows "Get A Free Quote", mobile shows "CALL ..." */
.header-cta-desktop { display: flex; }
.header-cta-mobile { display: none; }

@media (max-width: 768px) {
    .header-cta-desktop { display: none; }
    .header-cta-mobile { display: flex; }
}

/* Two-line call button (used by lp-mobile-call.js conversions)
   Layout: phone number on top (big focal point), title-case subtitle below.
   Title case avoids the multi-line wrap problem caused by wide uppercase tracking. */
.lp-mc-call-label,
.lp-mc-call-number {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 1.2;
}

.lp-mc-call-label {
    order: 1;
    font-size: 14px;
    font-weight: 700;
    opacity: 0.95;
    letter-spacing: 1.4px;
    margin: 0 0 6px;
    text-transform: uppercase;
    line-height: 1.25;
}

.lp-mc-call-number {
    order: 2;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.3px;
    text-transform: none;
    margin: 0;
    line-height: 1.1;
}

/* Bigger, premium button — flex column with serious breathing room */
a[data-lp-mc-text="1"] {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 88px !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    line-height: 1.2 !important;
    gap: 0 !important;
    border-radius: 12px !important;
}

@media (max-width: 480px) {
    a[data-lp-mc-text="1"] {
        min-height: 78px !important;
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }
    .lp-mc-call-label {
        font-size: 13px;
        letter-spacing: 1.2px;
    }
    .lp-mc-call-number {
        font-size: 25px;
    }
}

@media (max-width: 380px) {
    a[data-lp-mc-text="1"] {
        min-height: 72px !important;
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }
    .lp-mc-call-label {
        font-size: 12px;
        letter-spacing: 1px;
    }
    .lp-mc-call-number {
        font-size: 22px;
    }
}

/* ── Main call button ──────────────────────────────────── */
.btn-solid {
    font-family: var(--font-heading);
    font-weight: 800;
    background: #C9961A;
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(201, 150, 26, .30);

    display: inline-flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    gap: 10px;

    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1.15;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-solid:hover {
    background: #b8870e;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201, 150, 26, .45);
}

.btn-solid:active {
    transform: translateY(0);
}

.header-btn-line1 {
    display: block;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.header-btn-line2 {
    display: block;
    font-size: 29px;
    font-weight: 900;
    letter-spacing: 2.9px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* ── Sub-label below button ────────────────────────────── */
.call-sub {
    margin: 0;
    font-size: 20px;
    color: #374151;
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1160px) {
    .header-badges {
        gap: 6px;
    }

    .header-badge {
        font-size: 11.5px;
        padding: 4px 10px 4px 7px;
    }

    .header-inner {
        padding: 0 28px;
    }

    .header-btn-line2 {
        font-size: 22px;
    }
}

@media (max-width: 960px) {
    .header-badges {
        display: none;
    }

    .header-logo {
        padding-right: 0;
    }

    .header-inner {
        padding: 0 20px;
        min-height: 72px;
    }

    .header-btn-line2 {
        font-size: 18px;
    }

    .call-sub {
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    body {
        padding-top: var(--header-h);
    }
}

@media (max-width: 600px) {
    .site-header::before {
        height: 3px;
    }

    .header-inner {
        padding: 5px 10px;
        min-height: 62px;
        gap: 8px;
    }

    .header-logo img {
        height: 32px;
    }

    .btn-solid {
        padding: 8px 12px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(201, 150, 26, .35);
        flex-direction: column;
        align-items: center;
        gap: 1px;
        white-space: nowrap;
    }

    .header-btn-line1 {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .header-btn-line2 {
        font-size: 18px;
        letter-spacing: 0;
    }

    .call-sub {
        display: block;
        font-size: 13px;
        text-align: center;
        white-space: normal;
    }
}

@media (max-width: 400px) {
    .header-logo img {
        height: 28px;
    }

    .header-btn-line1 {
        font-size: 9px;
        letter-spacing: 0.8px;
    }

    .header-btn-line2 {
        font-size: 18px;
    }

    .btn-solid {
        padding: 7px 10px;
    }

    .call-sub {
        font-size: 13px;
    }
}

/* ── Keep new hdr-* classes inert if referenced ──────── */
.hdr-top,
.hdr-main,
.hdr-trust,
.hdr-phone,
.hdr-btn {
    display: none;
}


/* =========================================================
   4) HERO (from hero.css)
========================================================= */

.hero {
    position: relative;
    background: #EFF7E8;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
    height: auto;
}

/* LEFT */
.hero-left {
    position: relative;
    overflow: hidden;
    background: url("../images/hero-city.webp") center / cover no-repeat;
}

.hero-left::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(22, 51, 20, 0.85) 0%, rgba(22, 51, 20, 0.65) 40%, rgba(22, 51, 20, 0.45) 100%);
}

/* RIGHT */
.hero-right {
    display: block;
    position: relative;
    overflow: hidden;
    
}

.hero-right::after {
    content: "";
    position: absolute;
    inset: 0;
    /* subtle right-edge fade so images blend naturally */
    background: linear-gradient(270deg, rgba(22, 51, 20, 0.30) 0%, rgba(22, 51, 20, 0.08) 60%, transparent 100%);
    pointer-events: none;
}

.hero-left-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 48px 48px 56px clamp(48px, 8vw, 150px);
    max-width: 900px;
}

/* Mobile-only location pill (hidden on desktop) */
.hero-loc {
    display: none;
    justify-content: center;
    margin-bottom: 16px;
}

.hero-loc-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 12px;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.hero-loc-icon {
    width: 14px;
    height: 14px;
    display: block;
    filter: brightness(0) invert(1);
}

.hero-copy {
    width: 100%;
    max-width: 920px;
    text-align: left;
    color: #fff;
}

.hero-kicker {
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 3.4px;
    line-height: 1.5;
    text-transform: uppercase;
    opacity: 1;
    margin-bottom: 0;
    padding-bottom: 18px;
    color: #E0B341;
    position: relative;
}

.hero-kicker::after {
    content: "";
    display: block;
    width: 72px;
    height: 2px;
    margin: 14px 0 0;
    background: linear-gradient(90deg, #C9961A, rgba(201, 150, 26, 0));
    border-radius: 2px;
}

.hero-title {
    margin: 0 0 22px;
    font-weight: 900;
    line-height: 1.06;
    font-size: 44px;
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
    text-wrap: balance;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}

/* Secondary CTA under hero title */
.hero-trust-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    padding: 10px 22px;
    margin: 0 0 18px;
    border-radius: 999px;
    text-decoration: none;
    cursor: default;

    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.4px;
    white-space: nowrap;

    color: #fff;
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(8px);
    transition: transform 0.15s ease, background 0.15s ease;
}


.hero-trust-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
}

.hero-trust-btn:active {
    transform: translateY(0);
}

@media (min-width: 769px) {
    .hero-trust-btn {
        width: auto;
        padding: 8px 24px;
        justify-content: center;
    }
}

/* =========================
   HERO ICON LIST (under title)
========================= */
.hero-points {
    list-style: none;
    padding: 18px 20px;
    margin: 0 0 28px;
    display: grid;
    gap: 6px;
    max-width: 650px;
    position: relative;
    border-radius: 14px;
    background: rgba(22, 51, 20, 0.78);
    border: 1px solid rgba(201, 150, 26, 0.22);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-points::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: radial-gradient(120% 90% at 50% 0%,
            rgba(201, 150, 26, 0.06) 0%,
            rgba(255, 255, 255, 0) 55%);
    opacity: .85;
}

.hero-point {
    position: relative;
    z-index: 1;
    padding-left: 40px;
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    margin-top: 5px;
}

.hero-point::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 999px;

    background: rgba(201, 150, 26, 0.2);
    border: 1px solid rgba(201, 150, 26, 0.35);
}

.hero-point>.icon-list__icon {
    position: absolute !important;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Structured (title + description) bullet variant — desktop */
.hero-points--structured .hero-point {
    padding-left: 36px;
    margin: 0;
    padding-top: 4px;
    padding-bottom: 4px;
}

.hero-points--structured .hero-point::before {
    width: 24px;
    height: 24px;
    top: 6px;
    transform: none;
}

.hero-points--structured .hero-point > .icon-list__icon {
    width: 13px !important;
    height: 13px !important;
    left: 5px;
    top: 11px;
    transform: none;
}

.hero-points--structured .hero-point > .icon-list__text {
    display: block;
}

.hero-points--structured .hero-point .icon-list__title {
    display: block;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 1px;
}

.hero-points--structured .hero-point .icon-list__desc {
    display: block;
    font-weight: 400;
    font-size: 12.5px;
    line-height: 1.3;
    opacity: .85;
}

@media (max-width: 768px) {
    .hero-points--structured {
        padding: 18px 16px;
        gap: 14px;
    }

    .hero-points--structured .hero-point {
        align-items: flex-start !important;
        padding-left: 44px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-points--structured .hero-point::before {
        width: 30px;
        height: 30px;
        top: 0;
        transform: none;
    }

    .hero-points--structured .hero-point > .icon-list__icon {
        width: 15px !important;
        height: 15px !important;
        left: 8px;
        top: 8px;
        transform: none;
    }

    .hero-points--structured .hero-point .icon-list__title {
        font-size: 15px;
        line-height: 1.25;
        margin-bottom: 3px;
    }

    .hero-points--structured .hero-point .icon-list__desc {
        font-size: 13.5px;
        line-height: 1.4;
        opacity: .9;
    }
}

.hero-call {
    display: inline-block;
    text-decoration: none;
    background: #C9961A;
    color: #fff;
    border-radius: 10px;
    padding: 16px 28px;
    box-shadow: 0 4px 16px rgba(201, 150, 26, .35);
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.hero-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 150, 26, .45);
    background: #b8870e;
}

.hero-call-top {
    display: block;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 15px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin-bottom: 4px;
    text-align: center;
    opacity: 0.9;
}

.hero-call-main {
    display: block;
    font-weight: 900;
    font-size: 28px;
    font-family: var(--font-heading);
    line-height: 1;
}



/* =========================
   Floating Form (desktop)
========================= */
.hero-form-wrap {
    position: relative;
    margin: -20px 0 0;
    padding: 0 24px 48px;
    width: 100%;
    background: #f4f9ff;
    z-index: 5;
}

.hero-form-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow:
        0 18px 50px rgba(22, 51, 20, 0.14),
        0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding: 26px 32px 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

/* Subtle gold top accent bar */
.hero-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E0B341, #C9961A, #A57A14);
}

.hero-form-head {
    text-align: center;
    margin-bottom: 14px;
}

.hero-form-title {
    font-weight: 900;
    font-size: 26px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    color: #163314;
    line-height: 1.15;
    text-transform: uppercase;
}

/* subtitle like your 2nd reference (not spaced-out) */
.hero-form-sub {
    letter-spacing: 0.3px !important;
    font-weight: 600;
    color: #6b7280;
    margin-top: 6px;
    font-size: 14px;
    font-family: var(--font-heading);
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================
   FORM FIELDS BASE
========================= */
.field {
    min-width: 0;
}

.field label {
    display: block;
    font-size: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #374151;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.field input,
.field select {
    width: 100%;
    height: 52px;
    border: 1.5px solid #e5e7eb;
    outline: 0;
    background: #f9fafb;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 15px;
    font-family: var(--font-heading);
    color: #1b1b1b;
    box-sizing: border-box;
    transition: border-color 0.2s, background 0.2s;
}

.field input:focus,
.field select:focus {
    border-color: #2B5219;
    background: #fff;
}

/* bootstrap floating select support */
.hero-form-card .form-floating {
    width: 100%;
}

.hero-form-card .form-select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 1.5px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 8px;
    height: 52px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: border-color 0.2s, background 0.2s;
}

.hero-form-card .form-select:focus {
    border-color: #2B5219;
    background: #fff;
}

.hero-form-card .form-floating>label {
    padding: 10px 14px;
    font-size: 13px;
    opacity: 0.7;
}

/* ==========================================================
   ✅ 3-STEP WIZARD LAYOUT (DESKTOP)
========================================================== */

/* grid container: left = fields, right = button */
.hero-steps {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: end;
}

/* steps hidden by default */
.hero-step {
    display: none;
}

/* active step goes to LEFT column */
.hero-step.is-active {
    display: block;
    grid-column: 1;
    grid-row: 1;
}

/* controls go to RIGHT column (same row) */
.hero-step-controls {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}

/* fields grid (Step 1 + Step 2) */
.hero-fields--step {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: end;
}

/* ✅ STEP 2: email + service in ONE ROW */
.hero-step[data-step="2"] .hero-fields--step {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: end;
}

/* Buttons */
.hero-step-btn {
    height: 58px;
    min-width: 220px;
    padding: 0 24px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    background: #C9961A;
    color: #fff;
    font-size: 16px;
    transition: background 0.2s, transform 0.15s;
}

.hero-step-btn:hover {
    background: #b8870e;
    transform: translateY(-1px);
}

/* ✅ remove/hide any "back" button */
.hero-step-btn.is-ghost,
.hero-step-btn.back-btn,
#heroBackBtn {
    display: none !important;
}

/* =============================================================
   SINGLE-STEP HERO FORM (revamped)
   - Row 1: name | phone | email
   - Row 2: address | service | submit button
============================================================= */
.hero-form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 16px;
    align-items: end;
}

.hero-form-grid .hero-submit-wrap {
    display: block;
}

/* Refined input + select feel */
.hero-form-grid .field input,
.hero-form-grid .field select,
.hero-form-grid .form-select {
    height: 50px;
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
    background: #fafafa;
    font-size: 14px;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.hero-form-grid .field label {
    font-size: 11px;
    letter-spacing: 1.4px;
    margin-bottom: 6px;
}

.hero-form-grid .field input:focus,
.hero-form-grid .field select:focus,
.hero-form-grid .form-select:focus {
    border-color: #2B5219;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(43, 82, 25, .10);
}

/* Eye-catchy submit button */
.hero-submit-btn {
    position: relative;
    overflow: hidden;
    border: 0;
    cursor: pointer;
    width: 100%;
    max-width: none;
    height: 50px;
    padding: 0 22px;
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    white-space: nowrap;
    background: linear-gradient(135deg, #E0B341 0%, #C9961A 50%, #A57A14 100%);
    box-shadow:
        0 10px 24px rgba(201, 150, 26, 0.38),
        0 2px 4px rgba(0, 0, 0, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.30);
    transition: transform .18s ease, box-shadow .25s ease, filter .25s ease;
}

.hero-submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.28) 50%,
        transparent 70%);
    transform: translateX(-110%);
    transition: transform .65s ease;
}

.hero-submit-btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.08);
    box-shadow:
        0 16px 34px rgba(201, 150, 26, 0.48),
        0 3px 6px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.40);
}

.hero-submit-btn:hover::before {
    transform: translateX(110%);
}

.hero-submit-btn:active {
    transform: translateY(0);
}

.hero-submit-btn .hero-submit-arrow {
    display: inline-block;
    transition: transform .25s ease;
    font-size: 14px;
}

.hero-submit-btn:hover .hero-submit-arrow {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .hero-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px 14px;
    }
}

@media (max-width: 600px) {
    .hero-form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .hero-submit-btn {
        width: 100%;
        min-width: 0;
    }
}

/* Note text */
.hero-form-note {
    text-align: center;
    font-size: 12px;
    color: #7a7a7a;
    margin-top: 8px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
    .hero {
        margin-bottom: 0;
    }

    .hero-form-wrap {
        position: static;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
        background: transparent;
    }

    .hero-form-card {
        width: 100%;
        box-sizing: border-box;
        border-radius: 0;
        box-shadow: none;
        border: none;
        padding: 22px 16px 18px;
    }

    .hero-form-card::before {
        display: none;
    }

    .hero-steps {
        grid-template-columns: 1fr;
        gap: 14px;
        align-items: stretch;
    }

    .hero-step.is-active {
        grid-column: 1;
        grid-row: auto;
    }

    .hero-step-controls {
        grid-column: 1;
        grid-row: auto;
        justify-content: center;
    }

    .hero-fields--step {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Step 2: force single-column on mobile to match Step 1 layout */
    .hero-step[data-step="2"] .hero-fields--step {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-step-btn {
        width: 100%;
        min-width: 0;
    }
}

/* =========================================
   FIX: Browser Zoom (133%–150%) floating bug
   Trigger when viewport height is short
========================================= */
@media (max-height: 820px) {
    .hero {
        margin-bottom: 0;
    }

    .hero-form-wrap {
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
        width: 100%;
    }

    .hero-form-card {
        border-radius: 0;
        box-shadow: none;
        border: none;
        padding: 22px 16px 18px;
    }
}

/* ============================
   HERO IMAGE (premium card)
============================ */
.hero-loc-media {
    display: none;
    width: 100%;
    max-width: 960px;
    margin: 0 auto 30px;
    position: relative;
    isolation: isolate;
    transform: translateZ(0);

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.38),
        0 2px 0 rgba(255, 255, 255, 0.06) inset;
}

.hero-loc-media img {
    width: 100%;
    height: auto;
    /* max-height removed to prevent cropping */
    object-fit: contain;
    display: block;
    filter: contrast(1.06) saturate(1.04);
    transform: scale(1.02);
}

.hero-loc-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 55%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.28) 100%);
    opacity: 0.95;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.10) inset;
}


/* ============================
   Form Bottom Image (spicy)
============================ */
.hero-form-bottom-media {
    display: none;
    margin-top: 14px;
    height: 240px;
    border-radius: 1px;
    overflow: hidden;
    position: relative;
    isolation: isolate;

    background: url("../images/hero-ac.webp") center / cover no-repeat;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.28),
        0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

@media (max-width: 768px) {
    .hero-form-bottom-media {
        height: auto;
        aspect-ratio: auto;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        padding-top: 56%;
    }

    .hero-loc-media {
        display: block;
        width: 100vw;
        max-width: none;
        margin: 0 0 18px;
        margin-top: -25px;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 0;
        box-shadow: none;
    }

    .hero-loc-media img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        transform: none;
    }

    .hero-trust-btn {
        display: flex;
        width: 100%;
        max-width: 100%;
        padding: 10px 16px;
        margin: 16px auto 9px;
        font-size: clamp(14px, 4vw, 18px);
        white-space: normal;
        text-align: center;
    }

    .hero-loc-media {
        display: block;
    }

    .hero::after {
        content: none !important;
        display: none !important;
    }

    .hero-loc-media img {
        max-height: 100%;
    }

    .hero {
        padding-bottom: 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    /* Stronger, brand-consistent overlay on mobile */
    .hero-left::after {
        background: linear-gradient(180deg, rgba(22, 51, 20, 0.88) 0%, rgba(22, 51, 20, 0.72) 35%, rgba(22, 51, 20, 0.50) 100%);
    }

    .hero-left-inner {
        padding: 26px 16px 30px;
        display: block;
    }

    .hero-loc {
        display: none;
    }

    .hero-copy {
        text-align: center;
        max-width: 520px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }

    .hero-kicker {
        font-size: 11px;
        letter-spacing: 2.2px;
        line-height: 1.45;
        margin: 0 0 18px;
        padding-top: 14px;
        padding-bottom: 0;
        opacity: 1;
        color: #E0B341;
        order: 1;
        position: relative;
    }

    .hero-kicker::after {
        content: none;
    }

    .hero-kicker::before {
        content: "";
        display: block;
        width: 44px;
        height: 2px;
        margin: 0 auto 12px;
        background: linear-gradient(90deg, transparent, #C9961A, transparent);
        border-radius: 2px;
    }

    .hero-title {
        font-size: clamp(22px, 6.2vw, 28px);
        line-height: 1.15;
        letter-spacing: -0.2px;
        margin: 4px 0 14px;
        text-wrap: balance;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
        order: 0;
    }

    .hero-trust-btn { order: 2; }
    .hero-points { order: 3; }
    .hero-call { order: 4; }

    .hero-points {
        position: relative;
        padding: 18px 14px;
        border-radius: 16px;

        background: rgba(22, 51, 20, 0.88);
        border: 1px solid rgba(201, 150, 26, 0.20);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);

        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);

        overflow: hidden;
        width: min(100%, 560px);
        margin: 10px auto 18px;
    }

    .hero-points li {
        margin-top: 5px;
    }

    .hero-points::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(120% 90% at 50% 0%,
                rgba(201, 150, 26, 0.06) 0%,
                rgba(255, 255, 255, 0) 55%);
        opacity: .85;
        border-radius: inherit;
    }

    .hero-point {
        position: relative;
        display: flex !important;
        align-items: center;
        gap: 12px;
        padding-left: 46px;
        text-align: left;
    }

    .hero-point::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);

        width: 36px;
        height: 36px;
        border-radius: 999px;

        background: rgba(201, 150, 26, 0.18);
        border: 1px solid rgba(201, 150, 26, 0.35);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
        backdrop-filter: blur(6px);
    }

    .hero-point>.icon-list__icon {
        position: absolute !important;
        left: 9px;
        top: 50%;
        transform: translateY(-50%);

        width: 18px !important;
        height: 18px !important;
        margin: 0 !important;

        display: block;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    .hero-point>.icon-list__text {
        display: inline-block;
        font-weight: 600;
        font-size: clamp(13px, 3.5vw, 15px);
        line-height: 1.3;
    }

    .hero-call {
        display: block;
        width: min(92%, 460px);
        margin: 0 auto;
        border-radius: 12px;
        padding: 14px 18px;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
        text-align: center;
    }

    .hero-call-top {
        font-size: clamp(12px, 3.2vw, 14px);
        letter-spacing: 1.6px;
        opacity: 0.95;
    }

    .hero-call-main {
        font-size: clamp(20px, 5.5vw, 26px);
        line-height: 1.05;
    }

    .hero-form-title {
        font-size: 24px;
    }

    .hero-form-sub {
        font-size: 14px;
    }

    .field label {
        font-size: 11px;
        letter-spacing: 1.6px;
        margin-bottom: 8px;
    }

    .field input,
    .field select {
        height: 52px;
        border-radius: 6px;
        background: #f9fafb;
        border: 1.5px solid #e5e7eb;
        padding: 0 14px;
        font-size: 15px;
    }

    .hero-right {
        display: none;
    }

    .hero-form-bottom-media {
        display: block;
    }

    .hero::after {
        content: none !important;
        display: none !important;
    }
}

/* =========================================================
   WHY TRUST US 
   ========================================================= */

.why-trust {
    position: relative;
    padding: 80px 0 110px;
    background-color: #EFF7E8;

    /* KEEP background image (your swoosh) */
    background-image: url("../images/why-trust-bg.webp");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 2020px auto;
}

.why-inner {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}

.why-title {
    font-family: var(--font-heading);
    margin: 0 0 18px;
    font-weight: 900;
    letter-spacing: 0.5px;
    font-size: 40px;
    color: #1a1a1a;
}

/* Optional subtitle (still safe if you un-comment HTML) */
.why-sub {
    margin: 0 auto 46px;
    max-width: 920px;
    font-size: 20px;
    line-height: 1.5;
    color: rgba(12, 30, 8, 0.8);
    font-family: var(--font-heading);
}

.why-grid {
    counter-reset: reason;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
    margin: 36px auto 40px;
}

.why-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
    border-radius: 18px;
    padding: 60px 32px 36px;
    border: 1px solid rgba(22, 51, 20, 0.08);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 14px 36px rgba(15, 38, 12, 0.08),
        0 4px 12px rgba(15, 38, 12, 0.04);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;

    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
}

.why-card::before {
    counter-increment: reason;
    content: "0" counter(reason);
    position: absolute;
    top: 18px;
    left: 30px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 64px;
    line-height: 1;
    color: #C9961A;
    opacity: 0.18;
    letter-spacing: -2px;
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease;
}

.why-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #E0B341 30%, #C9961A 50%, #E0B341 70%, transparent 100%);
    opacity: 0.55;
    transition: opacity .35s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 150, 26, 0.30);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 30px 64px rgba(15, 38, 12, 0.16),
        0 8px 18px rgba(15, 38, 12, 0.08);
}

.why-card:hover::after {
    opacity: 1;
}

.why-card:hover::before {
    opacity: 0.32;
    transform: translateY(-2px);
}

.why-corner {
    display: none;
}

.why-corner svg {
    width: 100%;
    height: 100%;
    display: block;
}

.why-big {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 85px;
    line-height: 1;
    color: var(--primary-color);
    margin: 0;
    word-break: keep-all;
    white-space: nowrap;
}

.why-card:nth-child(3) .why-big {
    white-space: normal;
    line-height: 0.95;
}

.why-mid {
    position: relative;
    padding-top: 12px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 22px;
    line-height: 1.22;
    letter-spacing: -0.2px;
    color: #163314;
    margin: 0 0 6px;
}

.why-mid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #E0B341, #C9961A);
    border-radius: 2px;
}

.why-small {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15.5px;
    line-height: 1.6;
    letter-spacing: 0.1px;
    color: #4a4a4a;
    margin: 0;
}

.why-card .why-divider {
    height: 1px;
    background: rgba(22, 51, 20, 0.10);
    width: 88%;
    margin: 18px auto 0;
}

.why-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-size: 14px;
    color: rgba(22, 51, 20, 0.75);
    padding: 0 2px;
}

.why-foot strong {
    color: #163314;
    font-weight: 800;
}

.why-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #E0B341 0%, #C9961A 50%, #A57A14 100%);
    color: #fff;
    text-decoration: none;
    height: 60px;
    padding: 0 40px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 15px;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(201, 150, 26, 0.35);
    cursor: pointer;
    transition: transform .2s ease, filter .25s ease, box-shadow .25s ease;
}

.why-btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.08);
    box-shadow: 0 16px 34px rgba(201, 150, 26, 0.45);
}

/* Tablet */
@media (max-width: 980px) {
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-card {
        min-height: 0;
        padding: 52px 22px 26px;
    }

    .why-card::before {
        font-size: 50px;
        top: 14px;
        left: 22px;
    }

    .why-big {
        font-size: 68px;
    }

    .why-mid {
        font-size: 20px;
    }

    .why-small {
        font-size: 15px;
    }
}

@media (max-height: 820px) {
    .why-trust {
        padding: 100px 0 110px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .why-trust {
        padding-top: 24px !important;
        padding-bottom: 70px !important;
        background-color: #f4f9ff;
        background-position: center bottom;
        background-size: 820px auto;
    }

    .why-inner {
        width: min(340px, calc(100% - 28px));
    }

    .why-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .why-sub {
        font-size: 16px;
        margin-bottom: 26px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-card {
        min-height: 0;
        padding: 48px 20px 22px;
    }

    .why-card::before {
        font-size: 44px;
    }

    .why-big {
        font-size: 60px;
        white-space: normal;
    }

    .why-mid {
        font-size: 20px;
    }

    .why-small {
        font-size: 16px;
    }

    .why-card .why-divider {
        width: 92%;
        margin-top: 16px;
    }
}

/* =========================
   BRAND MARQUEE (Deals top)
   - stable on mobile
   - no breaking after load
========================= */

.why-marquee {
    --marquee-speed: 18s;
    --logo-h: clamp(36px, 4.2vw, 58px);
    --gap: clamp(20px, 3vw, 44px);

    width: 100%;
    max-width: 1200px;
    margin: 0 auto 18px;
    position: relative;
}

.why-marquee__label {
    font-family: var(--font-heading);
    margin: 0 0 10px;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: rgba(15, 38, 12, 0.75);
    font-size: 18px;
}

.why-marquee__viewport {
    overflow: hidden;
    border-radius: 16px;
    padding: 14px 0;

    /* iOS stability */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.why-marquee__fade {
    pointer-events: none;
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(90deg,
            rgba(239, 247, 232, 1) 0%,
            rgba(239, 247, 232, 0) 10%,
            rgba(239, 247, 232, 0) 90%,
            rgba(239, 247, 232, 1) 100%);
    z-index: 3;
}

.why-marquee__centerline {
    position: absolute;
    left: 50%;
    top: 10px;
    bottom: 10px;
    width: 1px;
    transform: translateX(-50%);
    background: rgba(15, 38, 12, 0.06);
    z-index: 2;
    pointer-events: none;
    display: none;
}

.why-marquee__track {
    display: flex;
    align-items: center;
    gap: var(--gap);
    width: max-content;
    will-change: transform;

    /* IMPORTANT: paused until window load */
    animation: why-marquee-move var(--marquee-speed) linear infinite;
    animation-play-state: paused;

    /* iOS GPU */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

body.is-ready .why-marquee__track {
    animation-play-state: running;
}

/* item card */
.why-marquee__item {
    flex: 0 0 auto;
    height: calc(var(--logo-h) + 24px);
    padding: 10px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 26px rgba(15, 38, 12, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;

    /* DO NOT use margin here (breaks loop) */
    transform: scale(1);
    transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.why-marquee__item img {
    height: var(--logo-h);
    width: auto;
    max-width: 190px;
    object-fit: contain;
    display: block;
}

/* Desktop center highlight only (JS toggles .is-center) */
.why-marquee__item.is-center {
    transform: scale(1.18);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 34px rgba(15, 38, 12, 0.14);
    z-index: 5;
}

@keyframes why-marquee-move {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (hover:hover) {
    .why-marquee__viewport:hover .why-marquee__track {
        animation-play-state: paused;
    }
}

/* Mobile: keep it stable (no center scaling) */
@media (max-width: 768px) {

    .why-marquee__item,
    .why-marquee__item.is-center {
        transform: none !important;
    }

    .why-marquee__centerline {
        display: none;
    }
}

@media (max-width: 600px) {
    .why-marquee {
        --marquee-speed: 22s;
        --logo-h: clamp(32px, 6vw, 50px);
        margin: 0 auto 12px;
    }

    .why-marquee__viewport {
        padding: 12px 0;
    }

    .why-marquee__item {
        height: calc(var(--logo-h) + 20px);
        padding: 9px 14px;
        border-radius: 13px;
    }

    .why-marquee__item img {
        max-width: 160px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .why-marquee__track {
        animation: none;
        transform: none;
    }

    .why-marquee__item {
        transition: none;
    }
}

/* =========================================================
   SERVICES 
   ========================================================= */

.services {
    position: relative;
    padding: 86px 0 90px;
    background: #ffffff;
}

.services-inner {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

/* =========================
   Header
========================= */
.services-head {
    text-align: center;
    margin-bottom: 34px;
}

.services-kicker {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 6px;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.services-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 44px;
    text-transform: uppercase;
    line-height: 1.05;
    color: #0b0b0b;
    margin: 0;
}

/* checklist line under title */
.services-checks {
    margin-top: 14px;
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: #1b1b1b;
}

.services-check-ico {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    line-height: 1;
    font-weight: 900;
    font-size: 14px;
}

/* =========================
   Grid
========================= */
.services-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 26px;
    align-items: stretch;
}

/* =========================
   Card (with hover-fill animation)
========================= */
.svc-card {
    position: relative;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid #e6eaf0;
    border-radius: 14px;
    padding: 22px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 168px;

    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

/* blue fill layer */
.svc-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background: var(--primary-color);
    transform: translateY(100%);
    transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.2, 1);
    z-index: 0;
}

/* subtle sheen sweep */
.svc-card::after {
    content: "";
    position: absolute;
    inset: -40% -60%;

    background: linear-gradient(120deg,
            transparent 40%,
            var(--border-color) 50%,
            transparent 60%);

    transform: translateX(-60%) rotate(0deg);
    transition: transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
}

/* keep content above the fill layers */
.svc-card>* {
    position: relative;
    z-index: 1;
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(43, 82, 25, 0.25);
    border-color: var(--border-color);
}

.svc-card:hover::before {
    transform: translateY(0%);
}

.svc-card:hover::after {
    opacity: 1;
    transform: translateX(30%) rotate(0deg);
}

/* =========================
   Card head
========================= */
.svc-card-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* Icon box */
.svc-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;

    background: var(--primary-color);
    color: #ffffff;

    display: grid;
    place-items: center;
    flex-shrink: 0;

    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

/* If you paste SVG inside .svc-icon */
.svc-icon svg {
    width: 30px;
    height: 30px;
    display: block;
}

/* Text */
.svc-text {
    text-align: left;
}

.svc-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #0b0b0b;
    margin: 0 0 6px;
    transition: color 0.25s ease;
}

.svc-desc {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0;
    transition: color 0.25s ease;
}

/* =========================
   CTA Button (turns white on hover)
========================= */
.svc-btn {
    margin-top: 16px;
    height: 44px;
    border-radius: 10px;
    text-transform: uppercase;
    background: var(--border-color);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.3px;

    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

/* arrow micro-motion */
.svc-arrow {
    display: inline-block;
    transform: translateX(0);
    transition: transform 0.22s ease;
}

.svc-btn:active {
    transform: translateY(1px);
}

/* Keyboard focus */
.svc-btn:focus-visible {
    outline: 3px solid rgba(43, 82, 25, 0.35);
    outline-offset: 3px;
}

.svc-card:hover .svc-title,
.svc-card:hover .svc-desc {
    color: #ffffff;
}

.svc-card:hover .svc-icon {
    background: #ffffff;
    color: var(--primary-color);
    transform: translateY(-1px);
}

.svc-card:hover .svc-btn {
    background: #ffffff;
    color: var(--primary-color);
}

.svc-card:hover .svc-btn .svc-arrow {
    transform: translateX(4px);
}

.svc-card:hover .svc-btn:hover {
    transform: translateY(-1px);
}

.svc-card:nth-child(odd):last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 13px);
    margin: 0 auto;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

@media (max-width: 640px) {
    .services {
        padding: 62px 0 70px;
    }

    .services-inner {
        width: min(1200px, calc(100% - 28px));
    }

    .services-title {
        font-size: 38px;
    }

    .services-check {
        font-size: 15px;
    }

    .services-grid {
        margin-top: 30px;
        gap: 18px;
    }

    .svc-card {
        padding: 18px;
    }

    .svc-title {
        font-size: 20px;
    }

    .svc-desc {
        font-size: 18px;
    }

    .svc-btn {
        height: 46px;
        font-size: 14px;
    }
}

/* =========================
   Respect reduced motion
========================= */
@media (prefers-reduced-motion: reduce) {

    .svc-card,
    .svc-card::before,
    .svc-card::after,
    .svc-icon,
    .svc-title,
    .svc-desc,
    .svc-btn,
    .svc-arrow {
        transition: none !important;
    }
}

/* =========================================================
   PROS
   ========================================================= */

/* =========================================================
   PROS / WHY CHOOSE US - Professional Redesign
   ========================================================= */

.pros {
    padding: 96px 0;
    background: #f8faf6;
}

.pros-inner {
    width: min(1250px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(380px, 500px) 1fr;
    gap: 72px;
    align-items: center;
}

/* ---- LEFT: Collage ---- */
.pros-collage {
    position: relative;
}

.pros-collage__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    border-radius: 20px;
    overflow: hidden;
}

.pros-collage__item {
    overflow: hidden;
    background: #d1e8c4;
}

.pros-collage__item--tall {
    grid-row: span 2;
}

.pros-collage__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pros-collage__item--tall img {
    aspect-ratio: 3/4;
}

.pros-collage__item:not(.pros-collage__item--tall) img {
    aspect-ratio: 4/3;
}

.pros-collage__item:hover img {
    transform: scale(1.04);
}

/* Credential badge overlay */
.pros-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: var(--primary-color, #2d6a2d);
    color: #fff;
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.22);
    z-index: 2;
}

.pros-badge__icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #f5c842;
}

.pros-badge__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pros-badge__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 1;
}

.pros-badge__sub {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 12px;
    opacity: 0.85;
    letter-spacing: 0.3px;
}

/* ---- RIGHT: Content ---- */
.pros-content {
    max-width: 680px;
}

.pros-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color, #2d6a2d);
    background: #d8edcc;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.pros-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 40px;
    line-height: 1.1;
    color: #121212;
    margin: 0 0 14px;
}

.pros-intro {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 500;
    color: #4b5563;
    line-height: 1.65;
    margin: 0 0 32px;
    max-width: 560px;
}

/* ---- Feature cards grid ---- */
.pros-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 34px;
}

.pros-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid #e5ede0;
    border-radius: 14px;
    padding: 18px 18px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pros-card:hover {
    box-shadow: 0 8px 24px rgba(45,106,45,0.10);
    transform: translateY(-2px);
}

.pros-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #d8edcc;
    color: var(--primary-color, #2d6a2d);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pros-card__body {
    flex: 1;
}

.pros-card h3 {
    margin: 0 0 5px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    color: #121212;
    line-height: 1.25;
}

.pros-card p {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.55;
    color: #4b5563;
}

/* ---- CTA ---- */
.pros-cta {
    margin-top: 6px;
}

.pros-btn {
    background: var(--primary-color, #2d6a2d);
    color: #fff;
    border-radius: 10px;
    padding: 16px 28px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .18s ease, filter .18s ease;
    cursor: pointer;
    border: none;
}

.pros-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .pros {
        padding: 80px 0;
    }

    .pros-inner {
        grid-template-columns: 1fr;
        gap: 56px;
        align-items: start;
    }

    .pros-collage {
        max-width: 560px;
        margin: 0 auto;
    }

    .pros-badge {
        bottom: -14px;
        right: -8px;
    }

    .pros-content {
        max-width: 820px;
    }

    .pros-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .pros {
        padding: 56px 0;
    }

    .pros-inner {
        width: min(1250px, calc(100% - 32px));
        gap: 48px;
    }

    .pros-title {
        font-size: 30px;
    }

    .pros-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pros-btn {
        width: 100%;
        font-size: 14px;
        padding: 14px 20px;
    }

    .pros-badge {
        right: 0;
        bottom: -14px;
    }
}


/* =========================================================
   FINANCING CTA
   ========================================================= */

.financing-cta {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: grid;
    align-items: center;
    overflow: hidden;
   
}

.financing-cta__bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/financing-banner.webp");
    background-size: cover;
    background-position: center right;
    opacity: 0.18;
    transform: scale(1.04);
}



.financing-cta__inner {
    position: relative;
    z-index: 2;
    width: min(860px, calc(100% - 48px));
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
}

.financing-cta__eyebrow {
    display: inline-block;
    margin: 0 0 20px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cta-orange);
    background: rgba(244, 166, 35, 0.15);
    border: 1px solid rgba(244, 166, 35, 0.4);
    border-radius: 999px;
    padding: 7px 20px;
}

.financing-cta__content {
    max-width: 100%;
}

.financing-cta__title {
    margin: 0 0 20px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 52px;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.financing-cta__text {
    margin: 0 auto 36px;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    max-width: 690px;
}

.financing-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 48px;
    border-radius: 12px;
    color: #fff;
    background: var(--cta-orange);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 17px;
    text-transform: uppercase;
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.financing-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(244, 166, 35, 0.55);
    filter: brightness(1.06);
}

.financing-cta__btn:active {
    transform: translateY(0px);
}

.financing-cta__arrow {
    font-size: 15px;
    transition: transform 0.18s ease;
}

.financing-cta__btn:hover .financing-cta__arrow {
    transform: translateX(4px);
}

.financing-cta__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.financing-cta__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.3px;
}

.financing-cta__trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--cta-orange);
    flex-shrink: 0;
}

.financing-cta__trust-divider {
    color: rgba(255,255,255,0.3);
    font-size: 16px;
}

@media (max-width: 992px) {
    .financing-cta {
        min-height: 420px;
    }
    .financing-cta__inner {
        width: min(860px, calc(100% - 32px));
        padding: 72px 0;
    }
    .financing-cta__title {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .financing-cta {
        min-height: 0;
    }
    .financing-cta__inner {
        padding: 60px 0;
    }
    .financing-cta__title {
        font-size: 32px;
        letter-spacing: -0.2px;
    }
    .financing-cta__text {
        font-size: 16px;
        margin-bottom: 28px;
    }
    .financing-cta__btn {
        width: 100%;
        padding: 18px 24px;
        font-size: 15px;
    }
    .financing-cta__trust {
        gap: 8px;
    }
    .financing-cta__trust-divider {
        display: none;
    }
}
/* =========================================================
   SERVICE GUARANTEE
   ========================================================= */

.ga-guarantee {
    position: relative;
    background: var(--dark-text);
    padding: 52px 0;
    overflow: visible;
}

/* green bars */
.ga-guarantee::before,
.ga-guarantee::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 7px;
    background: var(--border-color);
    opacity: .95;
    z-index: 1;
}

.ga-guarantee::before {
    top: 0;
}

.ga-guarantee::after {
    bottom: 0;
}

/* main layout */
.ga-guarantee__bar {
    width: min(1500px, calc(100% - 120px));
    margin: 0 auto;
    padding: 0 10px;

    display: grid;
    grid-template-columns: clamp(320px, 34vw, 520px) clamp(240px, 22vw, 320px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(18px, 3vw, 44px);

    position: relative;
    z-index: 2;
}

/* title */
.ga-guarantee__title {
    margin: 0 0 0 90px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 48px;
    line-height: 1.03;
    color: #fff;
}

/* badge */
.ga-guarantee__badge {
    display: grid;
    place-items: center;
    overflow: visible;
    z-index: 2;
}

.ga-guarantee__badge img {
    width: 340px;
    height: auto;
    display: block;
    margin-top: -90px;
    margin-bottom: -90px;
    transform: translateX(-20px);
    shape-rendering: geometricPrecision;
    image-rendering: auto;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .35));
}

.ga-guarantee__text {
    display: block;
    max-width: 280px;
    /* keeps columns consistent */
    word-break: normal;
    overflow-wrap: anywhere;
    /* prevents overflow at zoom */
}

.ga-guarantee__list {
    margin: 0;
    padding-left: clamp(0px, 2.2vw, 34px);
    list-style: none;
    margin-left: -50px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(18px, 3.2vw, 70px);
    row-gap: clamp(18px, 2.2vw, 28px);
    grid-auto-flow: start;
}

/* item style */
.ga-guarantee__item {
    display: flex;
    align-items: center;
    gap: 16px;

    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.2;
    color: #fff;
}

.ga-guarantee__ico {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 16px;
    background: #fff;
    display: grid;
    place-items: center;
}

/* svg sizing */
.ga-guarantee__ico svg {
    width: 26px;
    height: 26px;
}

.go-left,
.go-right {
    margin-left: 0 !important;
}

/* force icon blue */
.ga-guarantee__ico svg path,
.ga-guarantee__ico svg rect,
.ga-guarantee__ico svg circle,
.ga-guarantee__ico svg line,
.ga-guarantee__ico svg polygon {
    fill: var(--dark-text) !important;
    stroke: var(--dark-text) !important;
}

/* ✅ FORCE EXACT POSITIONS (NO MORE WRONG ORDER) */
.ga-guarantee__item--emergency {
    grid-column: 1;
    grid-row: 1;
}

.ga-guarantee__item--pricing {
    grid-column: 2;
    grid-row: 1;
}

.ga-guarantee__item--experience {
    grid-column: 1;
    grid-row: 2;
}

.ga-guarantee__item--servicearea {
    grid-column: 2;
    grid-row: 2;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {
    .ga-guarantee__bar {
        width: min(1200px, calc(100% - 60px));
        grid-template-columns: 1fr 320px;
        grid-template-rows: auto auto;
        gap: 30px;
    }

    .ga-guarantee__badge img {
        transform: translateX(0);
        margin-bottom: -90px;
    }

    .ga-guarantee__list {
        grid-column: 1 / -1;
        padding-left: 0 !important;
        justify-self: center;
        transform: translateX(0);
    }
}

@media (max-width: 860px) {
    .ga-guarantee {
        padding: 46px 0;
    }

    /* order: BADGE → TITLE → LIST */
    .ga-guarantee__bar {
        width: calc(100% - 40px);
        margin: 0 auto;

        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "badge"
            "title"
            "list";
        gap: 18px;

        text-align: left;
        justify-items: stretch;
    }

    .ga-guarantee__badge {
        grid-area: badge;
        display: grid;
        place-items: center;
    }

    .ga-guarantee__badge img {
        width: 300px;
        height: auto;
        margin-top: -78px;
        margin-bottom: -6px;
        transform: none;
    }

    .ga-guarantee__left {
        grid-area: title;
    }

    .ga-guarantee__title {
        margin: 0;
        font-size: 38px;
        line-height: 1.05;
        font-weight: 900;
        padding-left: 6px;
        text-align: center;
    }

    .ga-guarantee__list {
        grid-area: list;
        margin: 0;
        padding: 0;
        list-style: none;

        display: grid;
        grid-template-columns: 1fr;
        row-gap: 22px;

        margin-left: 0;
        justify-items: stretch;
    }

    /* remove desktop nudges on mobile */
    .go-left,
    .go-right {
        margin-left: 0 !important;
    }

    .ga-guarantee__item {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 16px;
        justify-content: flex-start;
        text-align: left;

        padding-left: 6px;
        font-size: 18px;
        line-height: 1.15;
    }

    .ga-guarantee__ico {
        width: 56px;
        height: 56px;
        flex: 0 0 56px;
        border-radius: 16px;
        background: #fff;
        display: grid;
        place-items: center;
    }

    .ga-guarantee__ico svg {
        width: 26px;
        height: 26px;
    }
}

/* =========================================================
   REVIEWS
   ========================================================= */

.reviews-split {
    padding: 88px 0;
    background: #F2F8EC;
}

.reviews-split__inner {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 56px;
    align-items: center;
}

/* LEFT */
.reviews-split__left {
    display: block;
}

.reviews-split__title {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 900;
    color: #121417;
    font-size: 50px;
    line-height: 1.05;
    letter-spacing: -0.5px;
}

/* RIGHT */
.reviews-split__right {
    min-width: 0;
}

/* Track: show 2-ish cards, allow scroll */
.reviews-split__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 1fr);
    gap: 22px;

    overflow-x: auto;
    padding: 6px 4px 12px;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 4px;
    -webkit-overflow-scrolling: touch;
}

/* Scrollbar (desktop) */
.reviews-split__track::-webkit-scrollbar {
    height: 10px;
}

.reviews-split__track::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .18);
    border-radius: 999px;
}

.reviews-split__track::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .06);
    border-radius: 999px;
}

/* Review card */
.review2-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 22px 18px;

    box-shadow: 0 10px 26px rgba(0, 0, 0, .10);
    border: 1px solid rgba(10, 12, 14, .06);

    min-height: 210px;

    display: flex;
    flex-direction: column;

    scroll-snap-align: start;
}

.review2-stars {
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.review2-text {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-weight: 500;
    color: #1c1f23;
    font-size: 14.5px;
    line-height: 1.65;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.review2-link {
    margin-top: auto;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;

    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: #2B5219;
    text-align: left;
}

.review2-link:hover {
    text-decoration: underline;
}

.review2-meta {
    margin-top: 14px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    color: #121417;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .reviews-split__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }

    .reviews-split__title {
        font-size: 44px;
    }

    .reviews-split__track {
        grid-auto-columns: minmax(300px, 1fr);
    }
}

@media (max-width: 640px) {
    .reviews-split {
        padding: 64px 0;
    }

    .reviews-split__inner {
        width: min(1200px, calc(100% - 28px));
    }

    .reviews-split__title {
        font-size: 38px;
        line-height: 1.05;
        text-align: center;
    }

    .reviews-split__track {
        grid-auto-columns: 88%;
        gap: 16px;
        padding-bottom: 10px;
    }

    .review2-card {
        padding: 18px 18px 16px;
        border-radius: 16px;
        min-height: 200px;
    }

    .review2-text {
        -webkit-line-clamp: 5;
    }
}

/* =========================
   REVIEW MODAL
========================= */

.review-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(10, 12, 16, 0.65);
    backdrop-filter: blur(4px);
}

.review-modal.is-open {
    display: flex;
}

.review-modal__box {
    position: relative;
    width: min(640px, calc(100% - 32px));
    max-height: 86vh;

    background: #ffffff;
    border-radius: 18px;
    padding: 28px 28px 26px;

    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.22),
        0 10px 20px rgba(0, 0, 0, 0.10);

    display: flex;
    flex-direction: column;
    gap: 18px;

    animation: modalFadeUp 220ms ease;
}

.review-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;

    width: 36px;
    height: 36px;
    border-radius: 50%;

    border: none;
    background: #f2f4f7;
    color: #111;

    font-size: 20px;
    font-weight: 700;
    cursor: pointer;

    display: grid;
    place-items: center;
}

.review-modal__close:hover {
    background: #e6e9ee;
}

.review-modal__stars {
    font-size: 20px;
    letter-spacing: 3px;
    color: var(--primary-color);
}

.review-modal__text {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
    color: #1c1f23;

    overflow-y: auto;
    padding-right: 6px;
}

.review-modal__name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    color: #2B5219;
}

/* animation */
@keyframes modalFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 640px) {
    .review-modal__box {
        padding: 22px 20px 20px;
        border-radius: 16px;
    }

    .review-modal__text {
        font-size: 15px;
    }
}

/* =========================================================
   GALLERY
   ========================================================= */

.gallery {
    padding: 80px 0 90px;
    background: #ffffff;
}

.gallery-inner {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
}

.gallery-head {
    text-align: center;
    margin-bottom: 26px;
}

.gallery-kicker {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-size: 18px;
    color: #2B5219;
}

.gallery-title {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.8px;
    line-height: 1.05;
    font-size: clamp(28px, 3.6vw, 52px);
    color: #0b0f19;
}

/* Slider shell */
.gallery-slider {
    position: relative;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 46px 1fr 46px;
    align-items: center;
    gap: 14px;
}

.gallery-viewport {
    overflow: hidden;
    border-radius: 22px;
    outline: none;
    touch-action: pan-y;
}

.gallery-track {
    display: grid;
    grid-auto-flow: column;
    gap: 24px;
    transform: translate3d(0, 0, 0);
    transition: transform 420ms ease;
    will-change: transform;
    padding: 6px;
}

/* Desktop (3 cards) */
.gallery-track {
    grid-auto-columns: calc((100% - 48px) / 3);
}

/* Card */
.gallery-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15, 38, 12, 0.10);
    border: 1px solid rgba(15, 38, 12, 0.06);
}

.gallery-media {
    margin: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f3f6fb;
    position: relative;
}

.gallery-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gallery-cap {
    padding: 14px 16px 16px;
}

.gallery-cap-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 16px;
    color: #0b0f19;
    margin: 0 0 4px;
}

.gallery-cap-sub {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: rgba(11, 15, 25, 0.65);
}

/* Nav buttons */
.gallery-nav {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(15, 38, 12, 0.12);
    background: #ffffff;
    box-shadow: 0 10px 18px rgba(15, 38, 12, 0.10);
    display: inline-grid;
    place-items: center;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    user-select: none;
}

.gallery-nav:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}

/* Dots */
.gallery-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.gallery-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 0;
    background: rgba(11, 15, 25, 0.25);
    cursor: pointer;
}

.gallery-dot.is-active {
    background: #2B5219;
    width: 22px;
}

/* Tablet: 2 cards */
@media (max-width: 1024px) {
    .gallery {
        padding: 70px 0 80px;
    }

    .gallery-slider {
        grid-template-columns: 44px 1fr 44px;
    }

    .gallery-track {
        grid-auto-columns: calc((100% - 24px) / 2);
    }
}

/* Mobile: Stack 2-3 cards vertically, NO scroll */
@media (max-width: 640px) {
    .gallery {
        padding: 70px 0 50px;
    }

    .gallery-inner {
        width: min(1200px, calc(100% - 32px));
    }

    .gallery-slider {
        display: block;
    }

    .gallery-nav {
        display: none;
    }

    .gallery-dots {
        display: none;
    }

    .gallery-viewport {
        border-radius: 18px;
        overflow: visible;
    }

    .gallery-track {
        display: flex;
        flex-direction: column;
        gap: 18px;
        transform: none !important;
        transition: none !important;
    }

    .gallery-card {
        border-radius: 16px;
        width: 100%;
    }

    /* Show only first 3 cards on mobile */
    .gallery-card:nth-child(n+6) {
        display: none;
    }

    .gallery-zoom {
        left: 10px;
        top: 10px;
        width: 40px;
        height: 40px;
    }
}

/* =========================
   GALLERY ZOOM ICON
========================= */
.gallery-zoom {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 999px;

    background: transparent;
    border: 1px solid rgba(255, 255, 255, .75);
    box-shadow: 0 10px 18px rgba(15, 38, 12, 0.16);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    display: grid;
    place-items: center;
    cursor: pointer;
    user-select: none;

    transition: transform 160ms ease;
}

.gallery-zoom:hover {
    transform: translateY(-1px);
}

.gallery-zoom span {
    font-size: 18px;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .25));
}

/* =========================
   GALLERY MODAL (LIGHTBOX)
========================= */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.gallery-modal.is-open {
    display: block;
}

.gallery-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.68);
}

.gallery-modal__dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(1000px, calc(100% - 28px));
    max-height: calc(100% - 28px);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.gallery-modal__close {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(15, 38, 12, 0.12);
    background: rgba(255, 255, 255, 0.95);
    cursor: pointer;
}

.gallery-modal__figure {
    margin: 0;
}

.gallery-modal__img {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 210px);
    display: block;
    object-fit: contain;
    background: #0b0f19;
}

.gallery-modal__cap {
    padding: 14px 16px 16px;
    background: #ffffff;
}

.gallery-modal__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 18px;
    color: #0b0f19;
    margin-bottom: 4px;
}

.gallery-modal__sub {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: rgba(11, 15, 25, 0.65);
}

/* modal arrows */
.gallery-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(11, 15, 25, 0.55);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 26px;
    z-index: 5;
}

.gallery-modal__prev {
    left: 10px;
}

.gallery-modal__next {
    right: 10px;
}

@media (max-width: 640px) {
    .gallery-zoom {
        left: 10px;
        top: 10px;
        width: 40px;
        height: 40px;
    }

    .gallery-modal__img {
        max-height: calc(100vh - 190px);
    }
}

/* =========================================================
   SERVICE AREAS
   ========================================================= */

.service-areas {
    position: relative;
    padding: 96px 0 120px;
    background: #ffffff;
    overflow: hidden;
}

/* background image layer */
.service-areas::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/service-areas.webp");
    /* change path if needed */
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

.sa2-inner {
    position: relative;
    z-index: 1;
}

.sa2-inner {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.sa2-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
}

.sa2-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* top row = 2 cards */
.sa2-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

/* cards */
.sa2-card {
    border: 2px solid var(--primary-color);
    /* green border like reference */
    border-radius: 16px;
    background: #ffffff;
    padding: 18px 20px;
}

.sa2-card--wide {
    width: 100%;
}

.sa2-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.sa2-pin {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
    flex: 0 0 auto;
    display: inline-block;
}

.sa2-pin svg {
    width: 100%;
    height: 100%;
    display: block;
}

.sa2-card-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: #111827;
}

/* lists */
.sa2-list {
    margin: 0;
    padding: 0;
    list-style: none;

    display: grid;
    gap: 10px 34px;

    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

/* columns */
.sa2-list--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sa2-list--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* airy / prevent overlap */
.sa2-list li {
    white-space: normal;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
    line-height: 1.35;
}

/* ✅ FIX: prevent overlap at high zoom (125–200%) */
.sa2-list {
    grid-auto-rows: minmax(0, auto);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .service-areas {
        padding: 0 0 50px;
    }

    .sa2-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .sa2-row {
        grid-template-columns: 1fr;
    }

    .sa2-card-title {
        font-size: 20px;
        text-align: center;
    }

    .sa2-list--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {

    .sa2-list--2,
    .sa2-list--3 {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   FOOTER / FINAL CTA (append from footer.css)
   ========================================================= */

.final-cta {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* IMPORTANT:
   Remove the 100vw breakout (it causes horizontal scrollbar).
   The section is already full width by default. */
.final-cta-bg-wrap {
    width: 100%;
    margin: 0;
}

/* BLUE BACKGROUND CARD */
.final-cta-bg-card {
    position: relative;
    width: 100%;

    /* TOP corners rounded, BOTTOM corners square */
    border-radius: 40px 50px 0 0;

    overflow: hidden;
    background-image: url("../images/footer-bg.webp");
    background-size: cover;
    background-position: center;

    /* No extra space outside blue */
    padding: 64px 0 64px;
}

/* If you use overlays/pseudo elements, match the SAME radius */
.final-cta-bg-card::before,
.final-cta-bg-card::after {
    border-radius: 52px 52px 0 0;
}

.final-cta-bg,
.final-cta-overlay {
    border-radius: 52px 52px 0 0;
}

/* ==========================================================
   CENTERED CONTENT
========================================================== */

.final-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* MAIN GRID */
.final-cta-content {
    display: grid;
    grid-template-columns: 1.05fr 1.35fr;
    gap: 56px;
    align-items: center;
}

/* ==========================================================
   LEFT SIDE
========================================================== */

.final-left {
    color: #fff;
}

.final-logo-box {
    width: 228px;
    height: 122px;
    background: #f4f5f4;
    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
    margin-bottom: 22px;
}

.final-logo-box img {
    width: 210px;
}

.final-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 42px;
    line-height: 1.05;
    margin: 0 0 12px;
}

.final-desc {
    font-family: var(--font-heading);
    max-width: 520px;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 24px;
}

/* CALL BUTTON */
.final-call {
    display: inline-block;
    background: var(--primary-color);
    border-radius: 12px;
    padding: 16px 22px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.final-call-top {
    font-family: var(--font-heading);
    display: block;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.final-call-main {
    font-family: var(--font-heading);
    display: block;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
}

/* ==========================================================
   RIGHT SIDE
========================================================== */

.final-right {
    text-align: center;
    color: #fff;
}

/* Offer heading */
.final-offer {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.final-offer-pill {
    background: linear-gradient(90deg, #C9961A, #A67C10);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 28px;
    font-weight: 900;
    font-family: var(--font-heading);
}

.final-offer-text {
    font-size: 34px;
    font-weight: 900;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.final-offer-sub {
    font-size: 20px;
    letter-spacing: 6px;
    margin-bottom: 16px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

/* FORM */
.final-form {
    max-width: 760px;
    margin: 0 auto;
}

.final-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.final-field label {
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 1.6px;
    margin-bottom: 6px;
    display: block;
    text-align: left;
}

.final-field input,
.final-field select {
    width: 100%;
    height: 44px;
    border-radius: 7px;
    border: none;
    padding: 0 14px;
    font-size: 16px;
    font-family: var(--font-heading);
    box-sizing: border-box;
}

/* SUBMIT */
.final-submit {
    font-family: var(--font-heading);
    margin-top: 16px;
    width: 100%;
    height: 54px;
    border-radius: 12px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    cursor: pointer;
    text-transform: uppercase;
}

/* NOTE */
.final-note {
    font-family: var(--font-heading);
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.75;
}

/* ==========================================================
   BOTTOM FOOTER TEXT (INSIDE BLUE)
========================================================== */

.final-bottom {
    font-family: var(--font-heading);
    margin-top: 48px;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.credits {
    font-family: var(--font-heading);
    margin-top: 8px;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.fw-semibold {
    color: rgb(229, 229, 229);
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

/* ==========================================================
   BACK TO TOP BUTTON
========================================================== */

.final-top-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border: none;
    font-weight: 900;
    cursor: pointer;
}

@media (max-width: 992px) {
    .final-cta {
        padding: 0;
        background: #fff;
    }

    .final-cta-bg-wrap {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .final-cta-bg-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 26px 0 26px;
        border-radius: 40px 40px 0 0;
        background-position: center top;
    }

    .final-cta-bg-card::before,
    .final-cta-bg-card::after,
    .final-cta-bg,
    .final-cta-overlay {
        border-radius: 0;
    }

    .final-cta-container {
        max-width: 100%;
        padding: 0 14px;
        overflow-x: clip;
    }

    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .final-cta-content>* {
        min-width: 0;
    }

    .final-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .final-logo-box {
        width: 200px;
        height: 110px;
        margin: 0 auto 14px;
        border-radius: 14px;
    }

    .final-logo-box img {
        width: 200px;
        height: auto;
    }

    .final-title {
        font-family: var(--font-heading);
        font-size: 30px;
        line-height: 1.12;
        margin: 0 0 10px;
    }

    .final-desc {
        max-width: 520px;
        font-weight: 600;
        margin: 0 auto 16px;
        font-size: 16px;
        line-height: 1.65;
        color: rgba(255, 255, 255, .86);
    }

    .final-call {
        width: 100%;
        max-width: 460px;
        margin: 0 auto;
        padding: 16px 14px;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        overflow: hidden;
    }

    .final-call-top {
        font-size: 16px;
        margin-bottom: 4px;
        white-space: normal;
    }

    .final-call-main {
        font-size: 26px;
        white-space: normal;
    }

    .final-right {
        width: 100%;
    }

    .final-offer {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 12px 0 8px;
        align-items: center;
        justify-content: center;
    }

    .final-offer-pill {
        font-size: 22px;
        padding: 10px 18px;
        border-radius: 10px;
    }

    .final-offer-text {
        font-size: 28px;
        line-height: 1.05;
    }

    .final-offer-sub {
        font-size: 14px;
        letter-spacing: 6px;
        margin-bottom: 12px;
    }

    .final-form {
        width: 100%;
    }

    .final-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 10px;
    }

    .final-field label {
        display: none;
    }

    .final-field input,
    .final-field select {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: 56px;
        border-radius: 10px;
        padding: 0 16px;
        font-size: 15px;
        box-sizing: border-box;
    }

    .final-submit {
        width: 100%;
        height: 56px;
        border-radius: 12px;
        font-size: 16px;
        margin-top: 14px;
    }

    .final-note {
        font-size: 12px;
        line-height: 1.6;
        margin-top: 10px;
    }

    .final-bottom {
        margin-top: 18px;
        padding-bottom: 6px;
        font-size: 12px;
        line-height: 1.8;
        text-align: center;
    }

    .final-field input::placeholder {
        opacity: 0.85;
    }
}

/* Placeholders OFF on desktop */
@media (min-width: 993px) {
    .final-field input::placeholder {
        opacity: 0;
    }
}

/* ===== reCAPTCHA (desktop) ===== */
.final-recaptcha {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 0 0 0 35px;
}

.final-recaptcha .recaptcha-scale {
    display: inline-block;
    transform: scale(0.88);
    transform-origin: left center;
    width: calc(304px * 0.88);
    height: calc(78px * 0.88);
}

/* ===== mobile ===== */
@media (max-width: 992px) {
    .final-recaptcha {
        grid-column: 1 / -1;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 12px 0 6px;
    }
}

/* =========================================================
   UI MODAL + reCAPTCHA
   ========================================================= */

.ui-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.ui-modal.is-open {
    display: block;
}

.ui-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(4px);
}

.ui-modal__card {
    position: relative;
    width: min(520px, calc(100% - 32px));
    margin: 0 auto;
    top: 18vh;

    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
    backdrop-filter: blur(10px);

    color: #fff;
    overflow: hidden;
    transform: translateY(10px);
    opacity: 0;
    animation: uiModalIn .18s ease-out forwards;
}

@keyframes uiModalIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ui-modal__header {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ui-modal__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 24px;
    font-family: var(--font-heading);
    background: rgba(255, 74, 74, .18);
    border: 1px solid rgba(255, 74, 74, .35);
}

.ui-modal__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
}

.ui-modal__subtitle {
    font-family: var(--font-heading);
    font-size: 18px;
    opacity: .85;
}

.ui-modal__body {
    padding: 14px 18px 18px;
    font-family: var(--font-heading);
    font-size: 16px;
    line-height: 1.4;
}

.ui-modal__footer {
    padding: 14px 18px 18px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.ui-modal__btn {
    border: 0;
    border-radius: 12px;
    padding: 10px 16px;
    font-family: var(--font-heading);
    font-weight: 800;
    cursor: pointer;
    background: #12b055;
    color: #fff;
    box-shadow: 0 12px 22px rgba(18, 176, 85, .25);
}

.ui-modal__btn:hover {
    filter: brightness(1.05);
}

@media (max-width: 480px) {
    .ui-modal__card {
        top: 14vh;
    }
}


.ty-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 16px;
    background: #fcfaf8;
}

.ty-hero__bg {
    position: absolute;
    inset: 0;
    background: url("../images/hero-city.webp") center/cover no-repeat;
    transform: scale(1.02);
    z-index: 0;
}

.ty-hero__overlay {
    position: absolute;
    inset: 0;

    z-index: 1;
}

.ty-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.ty-card {
    text-align: center;
    border-radius: 26px;
    padding: 44px 34px;
    background: rgba(44, 43, 43, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.ty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 211, 90, 0.16);
    border: 1px solid rgba(255, 211, 90, 0.35);
}

.ty-icon svg {
    width: 38px;
    height: 38px;
    fill: var(--primary-color);
}

.ty-title {
    color: #fff;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 800;
    font-size: 44px;
    letter-spacing: -0.8px;
    margin: 0 0 10px;
    line-height: 1.05;
}

.ty-sub {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: rgba(255, 255, 255, 0.90);
    max-width: 880px;
    margin: 0 auto 24px;
    font-size: 15px;
    line-height: 1.6;
}

.ty-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.ty-btn {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.6px;
    border: 0;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

.ty-btn:active {
    transform: translateY(1px);
}

.ty-btn--primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 1px 2px var(--border-color);
}

.ty-btn--primary:hover {
    opacity: 0.95;
}

.ty-btn--secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(209, 202, 202, 0.18);
}

.ty-btn--secondary:hover {
    opacity: 0.95;
}

.ty-call {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 14px;
}

.ty-call a {
    color: white;
    text-decoration: none;
    font-weight: 900;
}

.ty-call a:hover,
.ty-call a:focus,
.split-hero__call:hover,
.split-hero__call:focus,
.split-hero__call a:hover,
.split-hero__call a:focus {
    text-decoration: none !important;
}

.ty-foot {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .ty-card {
        padding: 34px 18px;
        border-radius: 20px;
    }

    .ty-title {
        font-size: 32px;
    }

    .ty-sub {
        font-size: 14px;
    }

    .ty-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }
}

@media (max-width: 420px) {
    .ty-title {
        font-size: 28px;
    }

    .ty-btn {
        width: 100%;
    }
}


.fe-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 16px;
    background: #0F2204;
}

.fe-hero__bg {
    position: absolute;
    inset: 0;
    background: url("../images/hero-city.webp") center/cover no-repeat;
    transform: scale(1.02);
    z-index: 0;
}

.fe-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.fe-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.fe-card {
    text-align: center;
    border-radius: 26px;
    padding: 44px 34px;
    background: rgba(44, 43, 43, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.fe-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 211, 90, 0.16);
    border: 1px solid rgba(255, 211, 90, 0.35);
}

.fe-icon svg {
    width: 38px;
    height: 38px;
    fill: var(--primary-color);
}

.fe-title {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 44px;
    letter-spacing: -0.8px;
    margin: 0 0 10px;
    line-height: 1.05;
}

.fe-sub {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: rgba(255, 255, 255, 0.90);
    max-width: 700px;
    margin: 0 auto 24px;
    font-size: 15px;
    line-height: 1.6;
}

.fe-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.fe-btn {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.6px;
    border: 0;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

.fe-btn:active {
    transform: translateY(1px);
}

.fe-btn--primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 2px 2px var(--primary-color);
}

.fe-btn--primary:hover {
    opacity: 0.95;
}

.fe-btn--secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.fe-btn--secondary:hover {
    opacity: 0.95;
}

.fe-call {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 14px;
}

.fe-call a {
    color: var(--fe-yellow);
    font-weight: 900;
    text-decoration: none;
    /* remove underline */
}

.fe-call a:hover,
.fe-call a:focus {
    text-decoration: none;
    /* keep underline removed */
}

.fe-foot {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .fe-card {
        padding: 34px 18px;
        border-radius: 20px;
    }

    .fe-title {
        font-size: 32px;
    }

    .fe-sub {
        font-size: 14px;
    }

    .fe-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }
}

@media (max-width: 420px) {
    .fe-title {
        font-size: 28px;
    }

    .fe-btn {
        width: 100%;
    }
}

/* ==========================================================
   SERVICE ESTIMATE POP-UP MODAL
   ========================================================== */
.svc-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
}

.svc-modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.svc-modal__card {
    position: relative;
    width: min(560px, calc(100% - 32px));
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    margin: 0 auto;

    background: #fff;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);

    color: #1b1b1b;
    transform: translateY(16px);
    opacity: 0;
    animation: svcModalIn 0.25s ease-out forwards;
}

@keyframes svcModalIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.svc-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: grid;
    place-items: center;
    color: #555;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}

.svc-modal__close:hover {
    background: rgba(0, 0, 0, 0.12);
    color: #1b1b1b;
}

.svc-modal__header {
    padding: 28px 28px 0;
    text-align: center;
}

.svc-modal__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: #1b1b1b;
}

.svc-modal__subtitle {
    font-family: var(--font-heading);
    font-size: 14px;
    color: #666;
    margin-top: 6px;
}

/* ── Form Fields ───────────────────────────────────────────── */
.svc-modal__form {
    padding: 24px 28px 28px;
}

.svc-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.svc-modal__field {
    min-width: 0;
}

.svc-modal__field label {
    display: block;
    font-size: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    color: #1b1b1b;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.svc-modal__field input,
.svc-modal__field select {
    width: 100%;
    height: 48px;
    border: 1.5px solid #e0e0e0;
    outline: 0;
    background: #fafafa;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 15px;
    font-family: var(--font-heading);
    color: #1b1b1b;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.svc-modal__field input:focus,
.svc-modal__field select:focus {
    border-color: var(--primary-darkred);
    background: #fff;
}

.svc-modal__field input::placeholder {
    color: #aaa;
}

.svc-modal__recaptcha {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.svc-modal__recaptcha .recaptcha-scale {
    display: inline-block;
    transform: scale(0.85);
    transform-origin: left bottom;
}

/* ── Submit Button ─────────────────────────────────────────── */
.svc-modal__submit {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 16px;
    border: 0;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #f0f0ef;
    background: linear-gradient(135deg, #163314, #2B5219);
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
}

.svc-modal__submit:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.svc-modal__submit:active {
    transform: translateY(0);
}

.svc-modal__note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 12px;
    font-family: var(--font-heading);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 600px) {
    .svc-modal__card {
        width: calc(100% - 24px);
        border-radius: 14px;
    }

    .svc-modal__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .svc-modal__header {
        padding: 24px 20px 0;
    }

    .svc-modal__form {
        padding: 20px 20px 24px;
    }

    .svc-modal__title {
        font-size: 19px;
    }
}

/* ==========================================================
   RECAPTCHA CONFIRMATION MODAL
   ========================================================== */
.recaptcha-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: none;
}

.recaptcha-modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.recaptcha-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
}

.recaptcha-modal__card {
    position: relative;
    width: min(440px, calc(100% - 32px));
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    padding: 32px 28px 28px;
    color: #1b1b1b;
    transform: translateY(16px);
    opacity: 0;
    animation: rcModalIn 0.25s ease-out forwards;
}

@keyframes rcModalIn {
    to { transform: translateY(0); opacity: 1; }
}

.recaptcha-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: grid;
    place-items: center;
    color: #555;
    transition: background 0.2s;
    z-index: 2;
}

.recaptcha-modal__close:hover {
    background: rgba(0, 0, 0, 0.12);
    color: #1b1b1b;
}

.recaptcha-modal__header {
    text-align: center;
    margin-bottom: 22px;
}

.recaptcha-modal__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: #163314;
}

.recaptcha-modal__subtitle {
    font-family: var(--font-heading);
    font-size: 14px;
    color: #666;
    margin-top: 6px;
    line-height: 1.4;
}

.recaptcha-modal__body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recaptcha-modal__widget {
    margin-bottom: 18px;
}

.recaptcha-modal__submit {
    display: block;
    width: 100%;
    padding: 16px;
    border: 0;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    background: #C9961A;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 3px 12px rgba(201, 150, 26, 0.35);
}

.recaptcha-modal__submit:hover {
    background: #b8870e;
    transform: translateY(-1px);
}

.recaptcha-modal__submit .arrow {
    margin-left: 6px;
}

@media (max-width: 600px) {
    .recaptcha-modal__card {
        width: calc(100% - 24px);
        border-radius: 14px;
        padding: 28px 20px 24px;
    }
    .recaptcha-modal__title { font-size: 20px; }
    .recaptcha-modal__widget {
        transform: scale(0.9);
        transform-origin: center;
    }
}

/* ============================================================
   ARBORCENTRIC BRAND OVERRIDES
   Primary call buttons use gold to match the website's CTA style
   ============================================================ */

/* Header CTA button – gold */
.btn-solid {
    background: #C9961A !important;
    border-color: #C9961A !important;
    box-shadow: 0 3px 12px rgba(201, 150, 26, 0.40) !important;
}

/* Hero call block – gold */
.hero-call {
    background: #C9961A !important;
    box-shadow: 0 4px 16px rgba(201, 150, 26, 0.35) !important;
}

/* Why-trust section CTA button – gold */
.why-btn {
    background: #C9961A !important;
    box-shadow: 0 10px 22px rgba(201, 150, 26, 0.30) !important;
}

/* Financing/CTA banner button – gold */
.financing-cta__btn {
    background: #C9961A !important;
    border-color: #C9961A !important;
}

/* Final form submit – gold */
.final-submit {
    background: #C9961A !important;
}

/* Modal submit button – gold */
.svc-modal__submit {
    background: linear-gradient(135deg, #A67C10, #C9961A) !important;
}

/* Step button (form wizard next/submit) – gold */
.hero-step-btn {
    background: #C9961A !important;
    color: #fff !important;
}

/* Why trust "Why Trust Us?" badge – gold accent */
.hero-trust-btn {
    background: rgba(201, 150, 26, 0.9) !important;
    border-color: rgba(201, 150, 26, 0.5) !important;
}

/* Service card hover fill stays green (brand primary) */
.svc-card::before {
    background: #2B5219 !important;
}

/* svc-btn (Get a Quote on service cards) – forest green */
.svc-btn {
    background: #2B5219 !important;
    border: none;
}

.svc-card:hover .svc-btn {
    background: #ffffff !important;
    color: #2B5219 !important;
}

.svc-card:hover .svc-icon {
    background: #ffffff !important;
    color: #2B5219 !important;
}

/* pros section CTA */
.pros-btn {
    background: #C9961A !important;
}

/* Review stars – gold */
.review2-stars,
.review-modal__stars {
    color: #C9961A !important;
}

/* Certification marquee label */
.why-marquee__label {
    color: #2B5219 !important;
}

/* Services kicker */
.services-kicker {
    color: #2B5219 !important;
}

/* SA2 pin icon color */
.sa2-pin svg {
    color: #2B5219 !important;
}

/* financing-cta section background */
.financing-cta {
    background: #163314 !important;
}

/* final-cta bg card background color (footer) */
.final-cta-bg-card {
    background-color: #163314;
}


/* ============================
   TRIPLE WORRY FREE GUARANTEE
============================ */
.guarantee-badges {
    background: linear-gradient(160deg, #f8f6f0 0%, #edeae0 50%, #f2f0e8 100%);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.guarantee-badges::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 15% 50%, rgba(26,74,71,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 85% 50%, rgba(161,136,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.guarantee-badges__inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.guarantee-badges__header {
    text-align: center;
    margin-bottom: 56px;
}

.guarantee-badges__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a4a47;
    background: rgba(26,74,71,0.1);
    border: 1px solid rgba(26,74,71,0.2);
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.guarantee-badges__title {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-body);
    color: #1a1a1a;
    margin: 0 0 14px;
    line-height: 1.15;
}

.guarantee-badges__sub {
    font-size: 16px;
    color: #555;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.guarantee-badges__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.guarantee-badge {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 36px 24px 32px;
    text-align: center;
    box-shadow:
        0 4px 6px rgba(0,0,0,0.04),
        0 12px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.9);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.guarantee-badge:hover {
    transform: translateY(-6px);
    box-shadow:
        0 8px 12px rgba(0,0,0,0.06),
        0 24px 48px rgba(0,0,0,0.14);
}

.guarantee-badge--featured {
    background: #f9fafa;
    border-color: rgba(255,255,255,0.1);
    transform: scale(1.04);
}

.guarantee-badge--featured:hover {
    transform: scale(1.04) translateY(-6px);
}



.guarantee-badge--featured .guarantee-badge__desc {
    color: rgba(255,255,255,0.65);
}

.guarantee-badge__glow {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.5;
    filter: blur(40px);
}

.guarantee-badge__glow--gold {
    background: radial-gradient(circle, rgba(161,136,76,0.6) 0%, transparent 70%);
}

.guarantee-badge__glow--dark {
    background: radial-gradient(circle, rgba(26,74,71,0.8) 0%, transparent 70%);
}

.guarantee-badge__glow--olive {
    background: radial-gradient(circle, rgba(143,149,30,0.6) 0%, transparent 70%);
}

.guarantee-badge__img-wrap {
    width: 140px;
    height: 140px;
    margin: 0 auto 22px;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.guarantee-badge__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
    border-radius: 20px;
}

.guarantee-badge:hover .guarantee-badge__img-wrap img {
    transform: scale(1.08) rotate(-2deg);
}

.guarantee-badge__label {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.guarantee-badge__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .guarantee-badges {
        padding: 56px 16px;
    }

    .guarantee-badges__title {
        font-size: 26px;
    }

    .guarantee-badges__sub {
        font-size: 15px;
    }

    .guarantee-badges__header {
        margin-bottom: 36px;
    }

    .guarantee-badges__row {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 360px;
        margin: 0 auto;
    }

    .guarantee-badge--featured {
        transform: none;
    }

    .guarantee-badge--featured:hover {
        transform: translateY(-6px);
    }

    .guarantee-badge__img-wrap {
        width: 110px;
        height: 110px;
        margin-bottom: 16px;
    }
}


/* =========================================================
   CUSTOM INFO & FAQ SECTIONS (From Image References)
========================================================= */

/* --- Detailed Services Section --- */
.info-services-section {
  background-color: #f8f9fa; /* Light off-white background */
  padding: 80px 0;
}

.info-services-inner {
  width: min(900px, calc(100% - 48px)); /* Keeps text from stretching too wide */
  margin: 0 auto;
}

.info-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
  color: #0b1528; /* Dark navy/black */
  margin-bottom: 24px;
}

.info-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.info-subtitle {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #0b1528;
  margin: 36px 0 20px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  border-top: 1px solid #e0e4e8;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #e0e4e8;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.info-check {
  color: #1161B1; /* Blue checkmark */
  font-weight: 800;
  margin-right: 14px;
  font-size: 16px;
  flex-shrink: 0;
}

.info-footer {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.info-footer a {
  color: #1161B1;
  font-weight: 700;
  text-decoration: underline;
}

/* --- FAQ Section --- */
.faq-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.faq-inner {
  width: min(850px, calc(100% - 48px));
  margin: 0 auto;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
  color: #0b1528;
  margin-bottom: 40px;
}

.faq-accordion {
  border-top: 1px solid #e0e4e8;
}

.faq-item {
  border-bottom: 1px solid #e0e4e8;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #0b1528;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  color: #1161B1;
  font-size: 24px;
  font-weight: 500;
  transition: transform 0.3s ease;
  line-height: 1;
}

/* --- Smooth FAQ Accordion --- */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease-in-out;
}

.faq-answer-content {
  overflow: hidden;
}

.faq-answer p {
  padding-bottom: 24px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* Active state toggled by JS */
.faq-item.is-open .faq-icon {
  transform: rotate(45deg); /* Turns the + into an x */
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr; /* Perfectly smooth opening */
}

/* --- Reusable Elements --- */
.text-center {
  text-align: center;
}

.cta-spacing {
  margin-top: 40px;
}

.btn-yellow-pill {
  display: inline-block;
  background-color: #C9961A; /* Your ArborCentric Gold */
  color: #ffffff; /* White text for contrast */
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(201, 150, 26, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-yellow-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 150, 26, 0.6);
  background-color: #b8870e; /* Darker gold for hover state */
  color: #ffffff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .info-title, .faq-title { font-size: 28px; }
  .btn-yellow-pill { font-size: 18px; padding: 16px 36px; width: 100%; box-sizing: border-box; }
}