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

        :root {
            --green-darkest: #0D1F0D;
            --green-dark:    #1B3A1B;
            --green-mid:     #2A5C2A;
            --green-accent:  #4A8C2A;
            --green-light:   #76B947;
            --green-pale:    #9DD968;
            --white:         #FFFFFF;
            --off-white:     #F5F8F2;
            --gray-light:    #E6EDE2;
            --gray:          #7A8F72;
            --text-dark:     #111812;
            --text-body:     #2E3C2A;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background: var(--white);
            overflow-x: hidden;
        }

        /* ─── NAV ─────────────────────────────── */
        #nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            height: 72px;
            display: flex; align-items: center; justify-content: space-between;
            padding: 0 2.5rem;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(27,58,27,0.08);
            transition: box-shadow 0.3s;
        }
        #nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.09); }

        .nav-logo { display: flex; align-items: center; text-decoration: none; }
        .nav-logo img { height: 48px; width: auto; }

        .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
        .nav-links a {
            text-decoration: none; color: var(--text-dark);
            font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em;
            transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--green-mid); }

        .nav-phone {
            background: var(--green-mid); color: #fff !important;
            padding: 0.55rem 1.4rem; border-radius: 50px;
            font-weight: 600 !important; font-size: 0.88rem !important;
            white-space: nowrap;
            transition: background 0.2s, transform 0.2s !important;
            box-shadow: 0 2px 12px rgba(42,92,42,0.25);
        }
        .nav-phone:hover { background: var(--green-dark) !important; transform: translateY(-1px); color: #fff !important; }

        .nav-request {
            background: transparent; color: var(--green-mid) !important;
            padding: 0.5rem 1.2rem; border-radius: 50px;
            font-weight: 600; font-size: 0.88rem;
            border: 1.5px solid var(--green-mid); cursor: pointer;
            white-space: nowrap; font-family: inherit;
            transition: all 0.2s;
        }
        .nav-request:hover { background: var(--green-mid); color: #fff !important; transform: translateY(-1px); }

        .hamburger {
            display: none; flex-direction: column; gap: 5px;
            cursor: pointer; background: none; border: none; padding: 4px;
        }
        .hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s; }

        @media (max-width: 820px) {
            .hamburger { display: flex; }
            .nav-links {
                display: none; position: fixed; top: 72px; left: 0; right: 0;
                background: #fff; flex-direction: column; padding: 1.5rem 2rem;
                gap: 1.2rem; border-bottom: 1px solid var(--gray-light);
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
            .nav-links.open { display: flex; }
        }

        /* ─── HERO ────────────────────────────── */
        #hero {
            position: relative; height: 100vh; min-height: 620px;
            display: flex; align-items: center; justify-content: center;
            text-align: center; overflow: hidden;
        }

        .hero-bg {
            position: absolute; inset: 0;
            background: url('images/nice-lawn.jpg') center/cover no-repeat;
            transform: scale(1.04);
            transition: transform 10s ease;
            will-change: transform;
        }
        #hero:hover .hero-bg { transform: scale(1.0); }

        .hero-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(160deg, rgba(10,25,10,0.55) 0%, rgba(10,25,10,0.72) 100%);
        }

        .hero-content {
            position: relative; z-index: 2;
            color: #fff; max-width: 820px; padding: 2rem;
        }

        .hero-logo {
            width: 130px; height: auto; margin-bottom: 1.5rem;
            filter:
                drop-shadow(0 0 14px rgba(255,255,255,0.95))
                drop-shadow(0 0 30px rgba(255,255,255,0.6))
                drop-shadow(0 6px 24px rgba(0,0,0,0.35));
            animation: fadeInDown 0.7s ease both;
        }

        .hero-badge {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: rgba(118,185,71,0.18); border: 1px solid rgba(118,185,71,0.45);
            color: var(--green-pale); padding: 0.38rem 1rem; border-radius: 50px;
            font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
            text-transform: uppercase; margin-bottom: 1.1rem;
            animation: fadeIn 0.7s ease 0.15s both;
        }

        .hero-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2.6rem, 6.5vw, 4.8rem);
            font-weight: 900; line-height: 1.04; margin-bottom: 0.9rem;
            animation: fadeInUp 0.7s ease 0.25s both;
        }
        .hero-title span { color: var(--green-light); }

        .hero-sub {
            font-size: clamp(1rem, 2.2vw, 1.2rem);
            color: rgba(255,255,255,0.82); margin-bottom: 0.5rem;
            animation: fadeInUp 0.7s ease 0.35s both;
        }

        .hero-location {
            display: inline-flex; align-items: center; gap: 0.4rem;
            font-size: 0.88rem; color: rgba(255,255,255,0.55);
            margin-bottom: 2.2rem;
            animation: fadeInUp 0.7s ease 0.42s both;
        }

        .fb-review-badge {
            display: inline-flex; align-items: center; gap: 0.55rem;
            background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
            border-radius: 999px; padding: 0.4rem 1rem 0.4rem 0.45rem;
            text-decoration: none; color: #fff; font-weight: 500;
            margin-top: 1rem; backdrop-filter: blur(6px);
            transition: background 0.2s, transform 0.2s;
            animation: fadeInUp 0.7s ease 0.65s both;
            white-space: nowrap;
        }
        .fb-review-badge:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
        .fb-review-badge .fb-icon {
            width: 24px; height: 24px; background: #1877F2; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; flex-shrink: 0;
        }
        .fb-review-badge .fb-stars { color: #FFD700; font-size: 0.68rem; letter-spacing: 1px; }
        .fb-review-badge .fb-text { font-size: 0.76rem; opacity: 0.92; }

        .hero-actions {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 0.9rem; max-width: 520px; margin: 0 auto;
            animation: fadeInUp 0.7s ease 0.5s both;
        }
        .btn-hero-primary, .btn-hero-outline { justify-content: center; }

        .btn-hero-primary {
            display: inline-flex; align-items: center; gap: 0.55rem;
            background: var(--green-light); color: var(--green-dark);
            padding: 0.95rem 2.4rem; border-radius: 50px;
            font-weight: 700; font-size: 1rem; text-decoration: none;
            box-shadow: 0 4px 24px rgba(118,185,71,0.45);
            transition: all 0.25s;
        }
        .btn-hero-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(118,185,71,0.5); }

        .btn-hero-outline {
            display: inline-flex; align-items: center; gap: 0.55rem;
            background: rgba(255,255,255,0.08); color: #fff;
            padding: 0.95rem 2.4rem; border-radius: 50px;
            font-weight: 600; font-size: 1rem; text-decoration: none;
            border: 2px solid rgba(255,255,255,0.4);
            transition: all 0.25s;
        }
        .btn-hero-outline:hover { background: rgba(255,255,255,0.14); border-color: #fff; transform: translateY(-2px); }
        button.btn-hero-outline { font-family: inherit; cursor: pointer; }

        @media (max-width: 560px) {
            .hero-content { padding-top: 5rem; }
            .hero-actions { gap: 0.6rem; max-width: 300px; }
            .hero-scroll { display: none; }
            .btn-hero-primary, .btn-hero-outline {
                padding: 0.75rem 0.5rem; font-size: 0.76rem;
                gap: 0.3rem; border-radius: 12px; box-shadow: none;
            }
            .btn-hero-primary svg, .btn-hero-outline svg { display: none; }
        }

        .hero-scroll {
            position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
            z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
            color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
            animation: scrollBounce 2.5s ease-in-out infinite;
        }
        .hero-scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); }

        /* ─── TRUST BAR ───────────────────────── */
        .trust-bar {
            background: var(--green-dark); color: #fff;
            display: flex; align-items: center; justify-content: center;
            gap: 2.5rem; padding: 1.1rem 2rem; flex-wrap: wrap;
        }
        .trust-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.88rem; font-weight: 500; }
        .trust-item svg { color: var(--green-light); flex-shrink: 0; }

        /* ─── LAYOUT HELPERS ──────────────────── */
        section { padding: 5.5rem 2rem; }
        .container { max-width: 1180px; margin: 0 auto; }

        .section-eyebrow {
            display: inline-block; font-size: 0.75rem; font-weight: 700;
            letter-spacing: 0.12em; text-transform: uppercase;
            color: var(--green-accent); margin-bottom: 0.7rem;
        }
        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.85rem, 4vw, 2.9rem);
            font-weight: 800; line-height: 1.12;
            color: var(--green-dark); margin-bottom: 0.9rem;
        }
        .section-desc {
            font-size: 1.02rem; color: var(--gray); line-height: 1.75; max-width: 560px;
        }
        .section-head { margin-bottom: 3rem; }

        /* ─── SERVICES ────────────────────────── */
        #services { background: var(--off-white); }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.25rem;
        }

        .service-card {
            border-radius: 20px; perspective: 1200px; cursor: pointer;
        }
        .card-inner {
            display: grid;
            transform-style: preserve-3d;
            transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s;
            border-radius: 20px;
        }
        .service-card:hover:not(.flipped) .card-inner {
            transform: translateY(-10px);
            box-shadow: 0 28px 64px rgba(27,58,27,0.28);
        }
        .service-card.flipped .card-inner { transform: rotateY(180deg); }

        .card-front, .card-back {
            grid-area: 1 / 1;
            backface-visibility: hidden; -webkit-backface-visibility: hidden;
            border-radius: 20px; padding: 2.2rem 1.8rem;
        }
        .card-front {
            position: relative;
            background: #fff; border: 1px solid var(--gray-light);
            transition: background 0.45s, border-color 0.45s;
            display: flex; flex-direction: column;
        }
        .service-card:hover:not(.flipped) .card-front {
            background: var(--green-dark); border-color: transparent;
        }
        .card-back {
            position: relative;
            background: var(--green-dark); transform: rotateY(180deg);
            display: flex; flex-direction: column; color: #fff;
        }

        .service-num {
            position: absolute; top: 1.1rem; right: 1.4rem;
            font-family: 'Montserrat', sans-serif; font-size: 4.2rem; font-weight: 900;
            color: rgba(0,0,0,0.045); line-height: 1; user-select: none; pointer-events: none;
            transition: color 0.45s;
        }
        .service-card:hover:not(.flipped) .service-num { color: rgba(255,255,255,0.07); }

        .service-icon {
            width: 58px; height: 58px; border-radius: 16px;
            background: linear-gradient(135deg, var(--green-mid), var(--green-accent));
            display: flex; align-items: center; justify-content: center;
            font-size: 1.6rem; margin-bottom: 1.3rem;
            box-shadow: 0 4px 18px rgba(42,92,42,0.28);
            transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .service-card:hover:not(.flipped) .service-icon {
            background: linear-gradient(135deg, var(--green-light), var(--green-pale));
            transform: scale(1.18) rotate(-8deg);
            box-shadow: 0 10px 28px rgba(118,185,71,0.45);
        }

        .service-card h3 {
            font-family: 'Montserrat', sans-serif; font-size: 1.05rem;
            font-weight: 700; color: var(--green-dark); margin-bottom: 0.45rem;
            transition: color 0.45s;
        }
        .service-card:hover:not(.flipped) .card-front h3 { color: #fff; }
        .card-back h3 { color: #fff; font-size: 1rem; margin-bottom: 0.9rem; }

        .card-front p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; transition: color 0.45s; }
        .service-card:hover:not(.flipped) .card-front p { color: rgba(255,255,255,0.65); }

        .service-arrow {
            display: inline-flex; align-items: center; gap: 0.35rem;
            font-size: 0.78rem; font-weight: 600; color: var(--green-accent);
            margin-top: auto; padding-top: 1.1rem;
            opacity: 0; transform: translateX(-10px); pointer-events: none;
            transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s, color 0.45s;
        }
        .service-arrow svg { transition: transform 0.3s; }
        .service-card:hover:not(.flipped) .service-arrow { opacity: 1; transform: translateX(0); color: var(--green-pale); }
        .service-card:hover:not(.flipped) .service-arrow svg { transform: translateX(5px); }

        .card-back ul { list-style: none; padding: 0; margin: 0 0 1rem; flex: 1; }
        .card-back ul li {
            display: flex; align-items: flex-start; gap: 0.45rem;
            font-size: 0.83rem; color: rgba(255,255,255,0.88);
            padding: 0.28rem 0; line-height: 1.4;
        }
        .card-back ul li::before {
            content: '✓'; color: var(--green-light);
            font-weight: 700; flex-shrink: 0;
        }
        .card-back-close {
            position: absolute; top: 0.8rem; right: 0.8rem;
            background: rgba(255,255,255,0.15); border: none; color: #fff;
            width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
            font-size: 0.85rem; display: flex; align-items: center; justify-content: center;
            transition: background 0.2s;
        }
        .card-back-close:hover { background: rgba(255,255,255,0.28); }
        .card-back-cta {
            background: rgba(255,255,255,0.14); color: #fff;
            border: 1px solid rgba(255,255,255,0.3); border-radius: 10px;
            padding: 0.6rem 1rem; font-family: 'Montserrat', sans-serif;
            font-size: 0.78rem; font-weight: 700; cursor: pointer;
            transition: background 0.2s; width: 100%; text-align: center;
        }
        .card-back-cta:hover { background: rgba(255,255,255,0.26); }

        @media (max-width: 640px) {
            .services-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
            .card-front, .card-back { padding: 1.3rem 1.1rem; border-radius: 14px; }
            .service-num { font-size: 2.8rem; top: 0.7rem; right: 0.9rem; }
            .service-icon { width: 42px; height: 42px; font-size: 1.15rem; border-radius: 10px; margin-bottom: 0.8rem; }
            .service-card h3 { font-size: 0.88rem; margin-bottom: 0.3rem; }
            .card-front p { font-size: 0.78rem; line-height: 1.55; }
            .service-arrow { font-size: 0.7rem; padding-top: 0.7rem; }
            .card-back h3 { font-size: 0.85rem; margin-bottom: 0.6rem; }
            .card-back ul li { font-size: 0.72rem; }
            .card-back-cta { font-size: 0.72rem; padding: 0.5rem; }
        }

        /* ─── ABOUT ───────────────────────────── */
        #about { background: #fff; }

        .about-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 5rem; align-items: center;
        }
        @media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

        .about-img-wrap { position: relative; }
        .about-img-wrap img {
            width: 100%; height: 500px; object-fit: cover; object-position: center 72%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(27,58,27,0.15);
        }
        .about-img-accent {
            position: absolute; bottom: -18px; right: -18px;
            width: 55%; height: 55%; background: var(--green-light);
            border-radius: 20px; z-index: -1; opacity: 0.18;
        }
        .about-img-badge {
            position: absolute; bottom: 1.5rem; left: 1.5rem;
            background: var(--green-dark); color: #fff;
            padding: 0.75rem 1.2rem; border-radius: 12px;
            font-size: 0.82rem; font-weight: 600;
            display: flex; align-items: center; gap: 0.5rem;
            box-shadow: 0 4px 16px rgba(0,0,0,0.25);
        }

        .about-text .section-desc { max-width: 100%; margin-bottom: 1rem; }
        .about-text p { font-size: 1rem; color: var(--text-body); line-height: 1.8; margin-bottom: 1rem; }

        .about-stats {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 1rem; margin: 1.8rem 0;
        }
        .stat-box {
            background: var(--off-white); border-radius: 12px; padding: 1.1rem 1.2rem;
            border-left: 3px solid var(--green-light);
        }
        .stat-box .stat-val {
            font-family: 'Montserrat', sans-serif; font-size: 1.5rem;
            font-weight: 800; color: var(--green-mid);
        }
        .stat-box .stat-lbl { font-size: 0.82rem; color: var(--gray); margin-top: 0.2rem; }

        .about-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 1.5rem; }

        .btn-solid {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: var(--green-mid); color: #fff;
            padding: 0.85rem 2rem; border-radius: 50px;
            font-weight: 600; font-size: 0.95rem; text-decoration: none;
            transition: all 0.25s;
        }
        .btn-solid:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(27,58,27,0.22); }

        .link-text {
            color: var(--green-mid); font-weight: 600; font-size: 0.9rem;
            text-decoration: none; transition: color 0.2s;
        }
        .link-text:hover { color: var(--green-dark); }

        /* ─── GALLERY ─────────────────────────── */
        #gallery { background: var(--off-white); }
        #gallery .section-head { text-align: center; }
        #gallery .section-desc { margin: 0 auto; }

        .gallery-grid { columns: 3; column-gap: 1rem; }
        @media (max-width: 900px) { .gallery-grid { columns: 2; } }

        .gal-item {
            break-inside: avoid; margin-bottom: 1rem;
            border-radius: 14px; overflow: hidden;
            cursor: pointer; position: relative;
        }
        .gal-item img { width: 100%; display: block; transition: transform 0.45s ease; }
        .gal-item:hover img { transform: scale(1.05); }

        /* Mobile carousel */
        .gallery-counter {
            display: none; text-align: center;
            font-size: 0.82rem; color: var(--gray);
            margin-top: 0.9rem; letter-spacing: 0.06em;
        }
        @media (max-width: 768px) {
            .gallery-grid {
                columns: unset;
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                gap: 0.75rem;
                margin: 0 -2rem;
                padding: 0 1.25rem 0.5rem;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .gallery-grid::-webkit-scrollbar { display: none; }
            .gal-item {
                flex: 0 0 82%;
                scroll-snap-align: start;
                margin-bottom: 0;
                height: 300px;
                border-radius: 16px;
            }
            .gal-item img { height: 100%; object-fit: cover; }
            .gallery-counter { display: block; }
        }

        .gal-overlay {
            position: absolute; inset: 0;
            background: rgba(11,28,11,0);
            display: flex; align-items: center; justify-content: center;
            transition: background 0.35s;
        }
        .gal-overlay svg { color: #fff; opacity: 0; transform: scale(0.7); transition: all 0.3s; }
        .gal-item:hover .gal-overlay { background: rgba(11,28,11,0.35); }
        .gal-item:hover .gal-overlay svg { opacity: 1; transform: scale(1); }

        /* ─── LIGHTBOX ────────────────────────── */
        .lightbox {
            display: none; position: fixed; inset: 0; z-index: 9999;
            background: rgba(5,12,5,0.94);
            align-items: center; justify-content: center; padding: 2rem;
        }
        .lightbox.open { display: flex; }
        .lightbox img { max-width: 90vw; max-height: 86vh; object-fit: contain; border-radius: 10px; }

        .lb-close {
            position: absolute; top: 1.2rem; right: 1.2rem;
            background: rgba(255,255,255,0.1); border: none; color: #fff;
            width: 46px; height: 46px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem; cursor: pointer; transition: background 0.2s;
        }
        .lb-close:hover { background: rgba(255,255,255,0.2); }

        .lb-nav {
            position: absolute; top: 50%; transform: translateY(-50%);
            background: rgba(255,255,255,0.1); border: none; color: #fff;
            width: 52px; height: 52px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.6rem; cursor: pointer; transition: background 0.2s;
        }
        .lb-nav:hover { background: rgba(255,255,255,0.22); }
        .lb-prev { left: 1.2rem; }
        .lb-next { right: 1.2rem; }

        /* ─── CONTACT / CTA ───────────────────── */
        #contact {
            background: var(--green-dark); color: #fff;
            text-align: center; padding: 7rem 2rem;
        }
        #contact .section-eyebrow { color: var(--green-pale); }
        #contact .section-title { color: #fff; }
        #contact .section-desc { color: rgba(255,255,255,0.65); margin: 0 auto 1rem; }

        .contact-phone {
            display: inline-flex; align-items: center; gap: 0.75rem;
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2.2rem, 5.5vw, 3.8rem);
            font-weight: 900; color: var(--green-light);
            text-decoration: none; margin: 1.8rem 0;
            transition: color 0.2s;
        }
        .contact-phone:hover { color: #fff; }

        .contact-or { font-size: 0.85rem; color: rgba(255,255,255,0.35); margin: 0.5rem 0 1.5rem; }

        .social-row { display: flex; align-items: center; justify-content: center; gap: 0.9rem; flex-wrap: wrap; }

        .social-btn {
            display: inline-flex; align-items: center; gap: 0.6rem;
            color: rgba(255,255,255,0.75); text-decoration: none;
            font-size: 0.92rem; font-weight: 500;
            padding: 0.7rem 1.5rem; border-radius: 50px;
            border: 1.5px solid rgba(255,255,255,0.2);
            transition: all 0.25s;
        }
        .social-btn:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.45); }

        .trust-row {
            display: flex; align-items: center; justify-content: center;
            gap: 2rem; flex-wrap: wrap; margin-top: 3rem;
            padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1);
        }
        .trust-pill { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
        .trust-pill svg { color: var(--green-light); }

        /* ─── FORM MODAL ─────────────────────── */
        .form-modal {
            display: none; position: fixed; inset: 0; z-index: 10000;
            background: rgba(5,15,5,0.85); backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            align-items: center; justify-content: center; padding: 1.5rem;
        }
        .form-modal.open { display: flex; }

        .form-modal-inner {
            background: #fff; border-radius: 20px;
            width: 100%; max-width: 580px; max-height: 90vh;
            overflow-y: auto; padding: 2.5rem 2rem 2rem;
            position: relative;
            box-shadow: 0 32px 80px rgba(0,0,0,0.4);
            animation: modalIn 0.35s cubic-bezier(0.16,1,0.3,1);
        }

        @keyframes modalIn {
            from { opacity: 0; transform: scale(0.94) translateY(16px); }
            to   { opacity: 1; transform: scale(1) translateY(0); }
        }

        .form-modal-close {
            position: absolute; top: 1rem; right: 1rem;
            background: var(--gray-light); border: none; color: var(--text-dark);
            width: 36px; height: 36px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem; cursor: pointer; transition: background 0.2s;
        }
        .form-modal-close:hover { background: var(--gray); color: #fff; }

        .form-modal-title {
            font-family: 'Montserrat', sans-serif; font-size: 1.5rem;
            font-weight: 800; color: var(--green-dark); margin-bottom: 0.3rem;
        }
        .form-modal-sub { font-size: 0.88rem; color: var(--gray); margin-bottom: 1.5rem; }

        .btn-request-service {
            display: inline-flex; align-items: center; gap: 0.55rem;
            background: var(--green-light); color: var(--green-dark);
            padding: 0.9rem 2.2rem; border-radius: 50px;
            font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
            font-family: inherit;
            box-shadow: 0 4px 20px rgba(118,185,71,0.4);
            transition: all 0.25s; margin: 1rem 0;
        }
        .btn-request-service:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(118,185,71,0.45); }

        /* ─── FOOTER ──────────────────────────── */
        footer {
            background: var(--green-darkest); color: rgba(255,255,255,0.4);
            text-align: center; padding: 1.4rem 2rem; font-size: 0.82rem;
        }

        /* ─── ANIMATIONS ──────────────────────── */
        @keyframes fadeIn      { from { opacity: 0; } to { opacity: 1; } }
        @keyframes fadeInUp    { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes fadeInDown  { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes scrollBounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50%       { transform: translateX(-50%) translateY(-8px); }
        }

        .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        .stagger > * { opacity: 0; transform: translateY(32px) scale(0.96); transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1); }
        .stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0.05s; }
        .stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.15s; }
        .stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.25s; }
        .stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.35s; }
        .stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.45s; }
        .stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:0.55s; }

        /* ─── HERO SUB-TAGLINE (faith line above H1) ────── */
        .hero-tagline {
            font-size: 0.95rem; font-weight: 600; letter-spacing: 0.03em;
            color: var(--green-pale); margin-bottom: 0.6rem;
            animation: fadeInUp 0.7s ease 0.2s both;
        }

        /* ─── AREAS WE SERVE ──────────────────────────── */
        #areas { background: #fff; }
        #areas .section-head { text-align: center; }
        #areas .section-desc { margin: 0 auto; }

        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem; margin-top: 2.5rem;
        }
        .area-chip {
            display: flex; align-items: center; gap: 0.6rem;
            background: var(--off-white); border: 1px solid var(--gray-light);
            border-radius: 14px; padding: 1rem 1.2rem;
            font-weight: 600; font-size: 0.95rem; color: var(--green-dark);
            transition: background 0.25s, border-color 0.25s, transform 0.25s;
        }
        .area-chip:hover { background: var(--green-dark); border-color: transparent; color: #fff; transform: translateY(-3px); }
        .area-chip svg { color: var(--green-accent); flex-shrink: 0; transition: color 0.25s; }
        .area-chip:hover svg { color: var(--green-light); }

        /* ─── TESTIMONIALS ────────────────────────────── */
        #testimonials { background: var(--off-white); }
        #testimonials .section-head { text-align: center; }
        #testimonials .section-desc { margin: 0 auto; }

        .rating-badge {
            display: inline-flex; align-items: center; gap: 0.7rem;
            background: #fff; border: 1px solid var(--gray-light);
            border-radius: 50px; padding: 0.65rem 1.4rem;
            margin-bottom: 2.5rem; box-shadow: 0 4px 18px rgba(27,58,27,0.08);
        }
        .rating-badge .rating-stars { color: #FFB800; font-size: 1.1rem; letter-spacing: 2px; }
        .rating-badge .rating-num { font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--green-dark); font-size: 1.05rem; }
        .rating-badge .rating-count { font-size: 0.85rem; color: var(--gray); }
        .rating-badge a { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 0.7rem; }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .testimonial-card {
            background: #fff; border: 1px solid var(--gray-light); border-radius: 20px;
            padding: 2rem 1.8rem; display: flex; flex-direction: column;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(27,58,27,0.14); }
        .testimonial-stars { color: #FFB800; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 0.9rem; }
        .testimonial-text { font-size: 0.95rem; color: var(--text-body); line-height: 1.7; margin-bottom: 1.3rem; flex: 1; }
        .testimonial-author { display: flex; align-items: center; gap: 0.7rem; }
        .testimonial-avatar {
            width: 40px; height: 40px; border-radius: 50%;
            background: linear-gradient(135deg, var(--green-mid), var(--green-accent));
            color: #fff; display: flex; align-items: center; justify-content: center;
            font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; flex-shrink: 0;
        }
        .testimonial-name { font-weight: 700; font-size: 0.88rem; color: var(--green-dark); }
        .testimonial-source { font-size: 0.76rem; color: var(--gray); }

        /* ─── FAQ ─────────────────────────────────────── */
        #faq { background: #fff; }
        #faq .section-head { text-align: center; }
        #faq .section-desc { margin: 0 auto; }

        .faq-list { max-width: 780px; margin: 0 auto; }
        .faq-item {
            border-bottom: 1px solid var(--gray-light);
        }
        .faq-question {
            width: 100%; display: flex; align-items: center; justify-content: space-between;
            gap: 1rem; background: none; border: none; cursor: pointer;
            padding: 1.4rem 0.2rem; text-align: left; font-family: inherit;
            font-size: 1rem; font-weight: 600; color: var(--green-dark);
        }
        .faq-question svg { flex-shrink: 0; transition: transform 0.3s; color: var(--green-accent); }
        .faq-item.open .faq-question svg { transform: rotate(45deg); }
        .faq-answer {
            max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
        }
        .faq-answer p { font-size: 0.92rem; color: var(--gray); line-height: 1.75; padding: 0 0.2rem 1.4rem; }
        .faq-item.open .faq-answer { max-height: 400px; }

        /* ─── SERVICE PAGE LAYOUT ─────────────────────── */
        .breadcrumb {
            max-width: 1180px; margin: 88px auto 0; padding: 1rem 2rem 0;
            font-size: 0.82rem; color: var(--gray);
        }
        .breadcrumb a { color: var(--green-mid); text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }

        .svc-hero {
            padding: 3.5rem 2rem 4.5rem; background: var(--off-white);
        }
        .svc-hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
        @media (max-width: 900px) { .svc-hero .container { grid-template-columns: 1fr; gap: 2rem; } }
        .svc-hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.1;
            color: var(--green-dark); margin-bottom: 1rem;
        }
        .svc-hero h1 span { color: var(--green-accent); }
        .svc-hero .svc-lede { font-size: 1.05rem; color: var(--text-body); line-height: 1.75; margin-bottom: 1.6rem; max-width: 560px; }
        .svc-hero img { width: 100%; height: 380px; object-fit: cover; border-radius: 20px; box-shadow: 0 20px 60px rgba(27,58,27,0.18); }
        .svc-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

        .svc-section { padding: 4.5rem 2rem; }
        .svc-section h2 {
            font-family: 'Montserrat', sans-serif; font-size: clamp(1.6rem, 3.5vw, 2.2rem);
            font-weight: 800; color: var(--green-dark); margin-bottom: 1.2rem;
        }
        .svc-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; margin-top: 1.5rem; }
        .svc-list-item {
            display: flex; align-items: flex-start; gap: 0.7rem;
            background: var(--off-white); border-radius: 14px; padding: 1.2rem;
            font-size: 0.92rem; color: var(--text-body); line-height: 1.6;
        }
        .svc-list-item svg { color: var(--green-accent); flex-shrink: 0; margin-top: 0.15rem; }

        .related-services { background: var(--off-white); }
        .related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-top: 1.5rem; }
        .related-card {
            background: #fff; border: 1px solid var(--gray-light); border-radius: 16px;
            padding: 1.5rem; text-decoration: none; display: block;
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .related-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(27,58,27,0.14); }
        .related-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1rem; color: var(--green-dark); margin-bottom: 0.4rem; }
        .related-card p { font-size: 0.85rem; color: var(--gray); }
