@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
    --green: #0F5132;
    --green-mid: #1a7a4e;
    --green-light: #d1f5e0;
    --black: #1B1B1B;
    --black-soft: #2c2c2c;
    --gold: #D4A017;
    --gold-light: #f0c84d;
    --off-white: #F8F9FA;
    --white: #ffffff;
    --gray-100: #f1f3f4;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-600: #6b7280;
    --gray-800: #374151;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .07);
    --shadow-md: 0 8px 28px rgba(0, 0, 0, .10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .14);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    line-height: 1.18;
    color: var(--black);
    font-weight: 700;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

h4 {
    font-size: 1.2rem;
}

p {
    font-size: 1rem;
    color: var(--gray-800);
}

/* ── Utility ── */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad {
    padding: 90px 0;
}

.section-pad-sm {
    padding: 60px 0;
}

.text-green {
    color: var(--green);
}

.text-gold {
    color: var(--gold);
}

.text-white {
    color: var(--white);
}

.bg-green {
    background: var(--green);
}

.bg-black {
    background: var(--black);
}

.bg-off {
    background: var(--off-white);
}

.bg-white {
    background: var(--white);
}

.fw-800 {
    font-weight: 800;
}

.text-center {
    text-align: center;
}

.badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.badge-gold {
    background: rgba(212, 160, 23, .12);
    color: var(--gold);
}

.badge-white {
    background: rgba(255, 255, 255, .15);
    color: var(--white);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .02em;
    padding: 15px 32px;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .08);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 20px rgba(212, 160, 23, .35);
}

.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 8px 28px rgba(212, 160, 23, .45);
    transform: translateY(-2px);
}

.btn-green {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(15, 81, 50, .25);
}

.btn-green:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(15, 81, 50, .35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--green);
}

.btn-outline-green {
    background: transparent;
    border: 2px solid var(--green);
    color: var(--green);
}

.btn-outline-green:hover {
    background: var(--green);
    color: var(--white);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: .85rem;
}

/* ── Section Labels ── */
.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.section-label span {
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green);
}

.section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.top-bar {
    background: var(--black);
    color: var(--gray-400);
    font-size: .82rem;
    padding: 9px 0;
}

.top-bar a {
    color: var(--gray-400);
    transition: color .2s;
}

.top-bar a:hover {
    color: var(--gold);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-links i {
    color: var(--gold);
    margin-right: 5px;
}

.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow .3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, .12);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 26px;
    height: 26px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 16px;
    color: var(--black);
    letter-spacing: -.01em;
}

.logo-name span {
    color: var(--green);
}

.logo-tag {
    font-size: .68rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray-800);
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
    background: var(--green-light);
}

.nav-links a .chevron {
    font-size: .6rem;
    transition: transform .2s;
}

.nav-links li:hover>a .chevron {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .14);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all .2s;
    pointer-events: none;
    border: 1px solid var(--gray-200);
}

.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    top: calc(100% + 2px);
}

.dropdown a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: .87rem;
    color: var(--gray-800);
}

.dropdown a:hover {
    background: var(--off-white);
    color: var(--green);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 2000;
    padding: 28px 24px;
    overflow-y: auto;
    flex-direction: column;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.mobile-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    border-bottom: 1px solid var(--gray-200);
}

.mobile-nav a:hover {
    color: var(--green);
}

.mobile-cta {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Sticky Mobile CTA Bar */
.sticky-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black);
    z-index: 900;
    padding: 12px 16px;
    gap: 10px;
}

.sticky-cta-bar a {
    flex: 1;
    text-align: center;
    padding: 13px;
    border-radius: 10px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .85rem;
}

.scb-call {
    background: var(--green);
    color: var(--white);
}

.scb-quote {
    background: var(--gold);
    color: var(--black);
}

/* Floating Buttons */
.float-buttons {
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 800;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
    transition: var(--transition);
    color: var(--white);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-phone {
    background: var(--green);
}

.float-wa {
    background: #25D366;
}

.float-top {
    background: var(--black);
    font-size: 1rem;
}

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0a3d26 0%, #0F5132 50%, #1a5c38 100%);
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(212, 160, 23, .1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, .04) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0 100px;
}

.hero-content {}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, .15);
    border: 1px solid rgba(212, 160, 23, .3);
    color: var(--gold);
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 1.6s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 22px;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
    position: relative;
}

.hero h1 em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    opacity: .5;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.75;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .65);
}

.hero-trust-item i {
    color: var(--gold);
    font-size: .9rem;
}

/* Hero Quote Card */
.hero-quote-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .3);
    position: relative;
}

.hero-quote-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.hqc-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--black);
}

.hqc-sub {
    font-size: .85rem;
    color: var(--gray-600);
    margin-bottom: 22px;
}

.hqc-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hqc-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hqc-field label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.hqc-field input,
.hqc-field select {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: .92rem;
    color: var(--black);
    background: var(--off-white);
    transition: border-color .2s;
    width: 100%;
}

.hqc-field input:focus,
.hqc-field select:focus {
    outline: none;
    border-color: var(--green);
    background: var(--white);
}

.hqc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hqc-submit {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--black);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    padding: 16px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 4px;
}

.hqc-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 160, 23, .4);
}

.hqc-note {
    font-size: .75rem;
    color: var(--gray-400);
    text-align: center;
    margin-top: 8px;
}

.hqc-note i {
    color: var(--green);
    margin-right: 4px;
}

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
.trust-bar {
    background: var(--black);
    padding: 22px 0;
}

.trust-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 180px;
}

.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 160, 23, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.trust-text .t-num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
}

.trust-text .t-lbl {
    font-size: .75rem;
    color: var(--gray-400);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .08);
}

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.how-it-works {
    background: var(--white);
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 52px;
}

.hiw-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    background: var(--off-white);
    border: 1.5px solid var(--gray-200);
    position: relative;
    transition: var(--transition);
}

.hiw-card:hover {
    border-color: var(--green-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.hiw-card::after {
    content: attr(data-step);
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(15, 81, 50, .06);
    line-height: 1;
}

.hiw-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(15, 81, 50, .25);
}

.hiw-card h4 {
    margin-bottom: 10px;
}

.hiw-card p {
    font-size: .88rem;
}

.hiw-connector {
    position: absolute;
    top: 50px;
    right: -28px;
    width: 56px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--green) 0, var(--green) 6px, transparent 6px, transparent 12px);
    z-index: 1;
    display: none;
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services-section {
    background: var(--off-white);
}

.services-header {
    max-width: 600px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1.5px solid transparent;
}

.service-card:hover {
    border-color: var(--green-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-img {
    height: 210px;
    overflow: hidden;
    position: relative;
    background: var(--gray-100);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 81, 50, .7));
}

.service-body {
    padding: 26px 24px;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--green);
    margin-bottom: 16px;
}

.service-body h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.service-body p {
    font-size: .87rem;
    color: var(--gray-600);
    line-height: 1.65;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 700;
    color: var(--green);
    margin-top: 16px;
    transition: gap .2s;
}

.service-link:hover {
    gap: 10px;
}

/* ═══════════════════════════════════════
   STATS COUNTER
═══════════════════════════════════════ */
.stats-section {
    background: linear-gradient(135deg, var(--green) 0%, #0a3d26 100%);
    padding: 72px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    text-align: center;
}

.stat-item {}

.stat-num {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: .88rem;
    color: rgba(255, 255, 255, .75);
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, .12);
}

/* ═══════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════ */
.why-us {
    background: var(--white);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.why-img-block {
    position: relative;
}

.why-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}

.why-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-badge-floating {
    position: absolute;
    bottom: -22px;
    right: -22px;
    background: var(--gold);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.why-badge-floating .big {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.why-badge-floating .small {
    font-size: .72rem;
    font-weight: 600;
    color: var(--black-soft);
}

.why-acc-img-secondary {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.why-acc-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--green);
    flex-shrink: 0;
}

.why-feat-text h5 {
    font-size: .98rem;
    margin-bottom: 4px;
}

.why-feat-text p {
    font-size: .85rem;
    color: var(--gray-600);
}

/* ═══════════════════════════════════════
   AREAS WE SERVE
═══════════════════════════════════════ */
.areas-section {
    background: var(--off-white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.area-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    border: 1.5px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform .3s;
}

.area-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.area-card:hover::before {
    transform: scaleX(1);
}

.area-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.area-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.area-card p {
    font-size: .8rem;
    color: var(--gray-600);
}

.area-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    background: var(--green-light);
    color: var(--green);
    padding: 3px 10px;
    border-radius: 50px;
    margin-top: 10px;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.testi-slider-wrap {
    position: relative;
    margin-top: 52px;
}

.testi-slider {
    display: flex;
    gap: 24px;
    overflow: hidden;
}

.testi-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-200);
    transition: var(--transition);
}

.testi-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--green-light);
}

.testi-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: .9rem;
    color: var(--gray-800);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 22px;
}

.testi-text::before {
    content: '"';
    color: var(--gold);
    font-size: 2rem;
    line-height: 0;
    vertical-align: -0.6rem;
    margin-right: 4px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .95rem;
    color: var(--green);
    flex-shrink: 0;
}

.testi-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .92rem;
    color: var(--black);
}

.testi-city {
    font-size: .75rem;
    color: var(--gray-400);
}

.testi-nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 32px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
    cursor: pointer;
    transition: .2s;
}

.testi-dot.active {
    background: var(--green);
    width: 28px;
    border-radius: 5px;
}

/* Google Review Bar */
.google-bar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    border: 1.5px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-logo span {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
}

.g-divider {
    width: 1px;
    height: 36px;
    background: var(--gray-200);
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gr-score {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 2rem;
    color: var(--black);
}

.gr-stars {
    color: #fbbc04;
    font-size: 1.1rem;
}

.gr-count {
    font-size: .82rem;
    color: var(--gray-600);
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-section {
    background: var(--white);
}

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.faq-sidebar {}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
}

.faq-item {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color .2s;
}

.faq-item.open {
    border-color: var(--green);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 700;
    color: var(--black);
    gap: 16px;
    user-select: none;
}

.faq-chevron {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.open .faq-chevron {
    background: var(--green);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-a {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    font-size: .88rem;
    color: var(--gray-600);
    line-height: 1.75;
    transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 22px 18px;
}

/* ═══════════════════════════════════════
   BLOG SECTION
═══════════════════════════════════════ */
.blog-section {
    background: var(--off-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1.5px solid transparent;
}

.blog-card:hover {
    border-color: var(--green-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.blog-img {
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-body {
    padding: 24px 22px;
}

.blog-cat {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--green);
    background: var(--green-light);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.blog-body h4 {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.blog-body p {
    font-size: .83rem;
    color: var(--gray-600);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    font-size: .75rem;
    color: var(--gray-400);
}

/* ═══════════════════════════════════════
   FULL-WIDTH CTA BAND
═══════════════════════════════════════ */
.cta-band {
    background: var(--gold);
    padding: 64px 0;
}

.cta-band-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-band h2 {
    color: var(--black);
    max-width: 600px;
}

.cta-band p {
    color: rgba(27, 27, 27, .75);
    margin-top: 6px;
}

.cta-band-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, .65);
}

.footer-top {
    padding: 80px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
    gap: 48px;
}

.footer-brand {}

.footer-brand .logo {
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: .87rem;
    line-height: 1.75;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
    transition: var(--transition);
    text-decoration: none;
}

.footer-social:hover {
    background: var(--green);
    color: var(--white);
}

.footer-col h5 {
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: .85rem;
    color: rgba(255, 255, 255, .55);
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: .9rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item span {
    font-size: .85rem;
    line-height: 1.5;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, .55);
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: .8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .4);
    transition: color .2s;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

.footer-newsletter {
    margin-top: 18px;
}

.fn-input-wrap {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.fn-input-wrap input {
    flex: 1;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: .85rem;
}

.fn-input-wrap input::placeholder {
    color: rgba(255, 255, 255, .3);
}

.fn-input-wrap input:focus {
    outline: none;
    border-color: var(--green);
}

.fn-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .82rem;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.fn-btn:hover {
    background: var(--gold-light);
}

/* ═══════════════════════════════════════
   INTERIOR PAGE HERO
═══════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, #0a3d26, var(--green));
    padding: 72px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 50%, rgba(212, 160, 23, .1) 0%, transparent 60%);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 18px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .55);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb-sep {
    font-size: .6rem;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255, 255, 255, .7);
    max-width: 600px;
    font-size: 1.05rem;
}

/* ═══════════════════════════════════════
   CONTACT / FORM SECTIONS
═══════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px 40px;
    box-shadow: var(--shadow-md);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ci-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.ci-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--green);
    flex-shrink: 0;
}

.ci-text .label {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.ci-text .value {
    font-size: .98rem;
    color: var(--black);
    font-weight: 600;
}

.ci-text a {
    color: var(--black);
}

.ci-text a:hover {
    color: var(--green);
}

/* Form Elements */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: .93rem;
    color: var(--black);
    background: var(--off-white);
    transition: border-color .2s, background .2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--green);
    background: var(--white);
}

.form-control::placeholder {
    color: var(--gray-400);
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-img-stack {
    position: relative;
    height: 500px;
}

.ais-main {
    position: absolute;
    width: 80%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow-lg);
}

.ais-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ais-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 220px;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.ais-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ais-award {
    position: absolute;
    top: 30px;
    right: -10px;
    background: var(--gold);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.ais-award .big {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
}

.ais-award .sml {
    font-size: .7rem;
    font-weight: 600;
}

/* ═══════════════════════════════════════
   PROCESS TIMELINE
═══════════════════════════════════════ */
.timeline-section {}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 52px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--green-light);
}

.timeline-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.timeline-dot {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(15, 81, 50, .3);
}

.timeline-content {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-200);
}

.timeline-content h4 {
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: .88rem;
    color: var(--gray-600);
}

/* ═══════════════════════════════════════
   AREAS PAGE CARDS
═══════════════════════════════════════ */
.area-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.area-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1.5px solid transparent;
}

.area-detail-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.area-img {
    height: 180px;
    overflow: hidden;
    background: var(--gray-100);
    position: relative;
}

.area-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 81, 50, .65));
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.area-img-overlay h3 {
    color: var(--white);
    font-size: 1.1rem;
}

.area-detail-body {
    padding: 22px 20px;
}

.area-detail-body p {
    font-size: .85rem;
    color: var(--gray-600);
    line-height: 1.65;
}

.area-detail-body .area-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .83rem;
    color: var(--green);
    margin-top: 14px;
}

/* ═══════════════════════════════════════
   QUOTE LANDING PAGE
═══════════════════════════════════════ */
.quote-hero {
    background: linear-gradient(135deg, #0a3d26 0%, var(--green) 100%);
    padding: 60px 0;
}

.quote-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.quote-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px 40px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .25);
}

.quote-form-card .title {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.quote-perks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}

.qp-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.qp-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.qp-text h5 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--white);
    font-size: .95rem;
}

.qp-text p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .6);
}

/* ═══════════════════════════════════════
   ANIMATIONS / SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: none;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: none;
}

.delay-1 {
    transition-delay: .1s;
}

.delay-2 {
    transition-delay: .2s;
}

.delay-3 {
    transition-delay: .3s;
}

.delay-4 {
    transition-delay: .4s;
}

.delay-5 {
    transition-delay: .5s;
}

/* Map placeholder */
.map-embed {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: var(--gray-400);
    font-family: var(--font-head);
}

.map-embed i {
    font-size: 3rem;
    color: var(--green);
}

.map-embed span {
    font-size: .85rem;
}

/* ═══════════════════════════════════════
   SCHEMA / SEO hidden helpers
═══════════════════════════════════════ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hiw-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0 80px;
    }

    .hero-quote-card {
        max-width: 520px;
    }

    .why-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-story {
        grid-template-columns: 1fr;
    }

    .area-detail-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quote-page-grid {
        grid-template-columns: 1fr;
    }

    .testi-card {
        flex: 0 0 calc(50% - 12px);
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .top-bar-links {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .nav-cta .btn:not(.btn-primary) {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .why-badge-floating {
        right: 10px;
        bottom: -10px;
    }

    .why-acc-img-secondary {
        display: none;
    }
}

@media (max-width: 640px) {
    .section-pad {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hiw-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .area-detail-grid {
        grid-template-columns: 1fr;
    }

    .testi-card {
        flex: 0 0 100%;
    }

    .trust-bar-inner {
        gap: 12px;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        min-width: 140px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .cta-band-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-band-actions {
        justify-content: center;
    }

    .sticky-cta-bar {
        display: flex;
    }

    .float-buttons {
        bottom: 80px;
        right: 14px;
    }

    body {
        padding-bottom: 64px;
    }

    .hqc-row {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 28px 22px;
    }

    .quote-form-card {
        padding: 28px 22px;
    }

    .google-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .g-divider {
        display: none;
    }
}

/* ═══════════════════════════════════════
   MISSING VARIABLES & UTILITY ADDITIONS
═══════════════════════════════════════ */

/* Missing CSS variables */
:root {
    --green-dark: #0a3d22;
    --bg-light: #F8F9FA;
    --gray-mid: #6b7280;
}

/* .section — generic section wrapper (alias for section-pad) */
.section {
    padding: 90px 0;
}

/* .section-header — centred section intro block */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 52px;
}

.section-header h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--black);
}

.section-header p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.75;
}

/* .section-tag — small pill label above headings */
.section-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

/* .btn-gold — gold filled button */
.btn-gold {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 20px rgba(212, 160, 23, .35);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 160, 23, .5);
}

/* ─── How-It-Works generic alias (used in inner pages) ─── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-top: 52px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-200);
    position: relative;
    transition: var(--transition);
    text-align: center;
}

.step-card:hover {
    border-color: var(--green-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-number {
    font-family: var(--font-head);
    font-size: 3.2rem;
    font-weight: 800;
    color: rgba(15, 81, 50, .07);
    line-height: 1;
    position: absolute;
    top: 12px;
    right: 18px;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 18px;
    box-shadow: 0 8px 24px rgba(15, 81, 50, .25);
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-card p {
    font-size: .87rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ─── Mobile overlay backdrop ─── */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1999;
    backdrop-filter: blur(2px);
}

.mobile-overlay.active {
    display: block;
}

/* ─── FAQ aliases for inner pages (faq-question / faq-answer) ─── */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 700;
    color: var(--black);
    gap: 16px;
    user-select: none;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
}

.faq-question i {
    flex-shrink: 0;
    transition: transform .3s;
    color: var(--gray-400);
    font-size: .75rem;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--green);
}

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    font-size: .88rem;
    color: var(--gray-600);
    line-height: 1.75;
    transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 22px 18px;
}

.faq-item.open {
    border-color: var(--green);
}

/* ─── Ensure float-top starts hidden (JS controls visibility) ─── */
.float-top {
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s;
}

/* ─── Responsive adjustments for new .section class ─── */
@media (max-width: 900px) {
    .section {
        padding: 70px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 56px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        margin-bottom: 36px;
    }
}


/* PREVIEW-ONLY: native font fallback so text doesn't look stretched when Google Fonts fails to load */
:root {
    --font-head: 'Syne', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif !important;
    --font-body: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif !important;
}

html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Counter synthetic-bold stretching: give heavy headings tighter tracking */
h1,
h2,
h3,
h4,
.logo-name,
.section-tag {
    letter-spacing: -0.015em;
    font-feature-settings: 'ss01', 'cv01';
}

.section-tag {
    letter-spacing: 0.08em;
}
