
        /* ═══════════════════════════════════════
           CONTACT PAGE — scoped variables
           Matches index/about design language
        ═══════════════════════════════════════ */
        .contact-page {
            --green:         #1FBC51;
            --green-dark:    #17a044;
            --green-glow:    rgba(31, 188, 81, 0.35);
            --ink:           #0f0f0f;
            --mid:           #444;
            --muted:         #888;
            --nav-h:         66px;
            font-family: 'DM Sans', sans-serif;
            color: var(--ink);
            background: #fff;
            overflow-x: hidden;
        }

        /* ═══════════════════════════════════════
           HERO — background image like about page
        ═══════════════════════════════════════ */
        .contact-hero-section {
            position: relative;
            overflow: hidden;
        }

        .contact-hero {
            position: relative;
            min-height: 72vh;
            padding-top: var(--nav-h, 66px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: #fff url(/images/abt-hero-bg.png) center / cover no-repeat;
            overflow: hidden;
        }

        /* Subtle overlay so text pops */
        .contact-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255,255,255,0.55);
            z-index: 1;
        }

        .contact-hero-text {
            position: relative;
            z-index: 2;
            max-width: 760px;
            margin: 0 auto;
            padding: 40px 24px 60px;
        }

        .contact-hero-label {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--green-light, #E9F8EF);
            color: var(--green-dark);
            font-size: 12px;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 999px;
            margin-bottom: 24px;
            border: 1px solid rgba(31,188,81,0.2);
            box-shadow: 0 2px 8px rgba(31,188,81,0.12);
        }

        .contact-hero-label::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--green);
            box-shadow: 0 0 0 3px rgba(31,188,81,0.25);
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { box-shadow: 0 0 0 3px rgba(31,188,81,0.25); }
            50% { box-shadow: 0 0 0 6px rgba(31,188,81,0.1); }
        }

        .contact-hero-title {
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(42px, 6.5vw, 80px);
            font-weight: 700;
            letter-spacing: -3px;
            line-height: 1.04;
            color: #0f0f0f;
            margin: 0 0 22px;
        }

        .contact-hero-title em {
            font-family: 'DM Serif Display', serif;
            font-style: italic;
            font-weight: 400;
            letter-spacing: -2px;
        }

        .contact-hero-desc {
            font-size: 17px;
            color: #555;
            line-height: 1.65;
            max-width: 500px;
            margin: 0 auto 36px;
        }

        /* Pills row — email / phone / location */
        .contact-hero-pills {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        .contact-hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.92);
            border: 1px solid rgba(0,0,0,0.09);
            border-radius: 999px;
            padding: 10px 20px;
            font-size: 13.5px;
            font-weight: 500;
            color: #1a1a1a;
            text-decoration: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.07);
            backdrop-filter: blur(8px);
            transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
        }

        .contact-hero-pill:hover {
            border-color: var(--green);
            box-shadow: 0 4px 16px rgba(31,188,81,0.18);
            transform: translateY(-1px);
        }

        .contact-hero-pill i {
            color: var(--green);
            font-size: 15px;
        }

        /* ═══════════════════════════════════════
           CONTACT SECTION
        ═══════════════════════════════════════ */
        .contact__section {
            background: #fff;
            padding: 80px 0 100px;
        }

        .contact__container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Success message — class preserved for contact.js */
        .contact__success {
            display: none;
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
            border: 1px solid #6ee7b7;
            border-radius: 12px;
            padding: 16px 20px;
            font-size: 14px;
            font-weight: 500;
            color: #065f46;
            margin-bottom: 32px;
            text-align: center;
        }

        .contact__show {
            display: block !important;
        }

        /* Grid */
        .contact__grid {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 48px;
            align-items: start;
        }

        @media (max-width: 860px) {
            .contact__grid { grid-template-columns: 1fr; gap: 40px; }
        }

        /* ── LEFT SECTION ── */
        .contact__left-section {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .contact__heading {
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(28px, 3.5vw, 40px);
            font-weight: 700;
            letter-spacing: -1.5px;
            line-height: 1.15;
            color: #0f0f0f;
            margin: 0 0 14px;
        }

        .contact__description {
            font-size: 15px;
            color: #555;
            line-height: 1.7;
            margin: 0 0 10px;
        }

        .contact__sales-link {
            color: var(--green-dark);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }
        .contact__sales-link:hover { border-color: var(--green-dark); }

        /* Info cards */
        .contact__info-section {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .info__card {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 14px;
            padding: 16px 18px;
            text-decoration: none;
            color: inherit;
            transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
        }

        .info__card:hover {
            border-color: var(--green);
            box-shadow: 0 4px 18px rgba(31,188,81,0.12);
            transform: translateY(-2px);
        }

        .info__card__icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: var(--shadow-sm);
            border-radius: var(--r-md);
            background: var(--white);
            border: 1.5px solid var(--green-border);
            transition: 0.28s;
            color: var(--green);
            margin-bottom: 56px;
        }

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

        .contact__label {
            font-size: 11px;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--muted);
        }

        .contact__email,
        .contact__phone {
            font-size: 14.5px;
            font-weight: 600;
            color: #0f0f0f;
        }

        .contact__hours {
            font-size: 12.5px;
            color: #888;
            margin: 0;
            line-height: 1.5;
        }

        /* Social */
        .contact__social-label {
            display: block;
            font-size: 11px;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: #888;
            margin-bottom: 10px;
        }

        .contact__social-icons {
            display: flex;
            gap: 10px;
        }

        .contact__social-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: #f3f4f6;
            border: 1px solid #e5e7eb;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #444;
            font-size: 15px;
            text-decoration: none;
            transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
        }

        .contact__social-icon:hover {
            background: var(--green);
            border-color: var(--green);
            color: #fff;
            transform: translateY(-2px);
        }

        /* Response indicator */
        .response__indicator {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px 18px;
            background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
            border: 1px solid rgba(31,188,81,0.2);
            border-radius: 12px;
        }

        .response__dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--green);
            box-shadow: 0 0 0 4px rgba(31,188,81,0.2);
            flex-shrink: 0;
            margin-top: 4px;
            animation: pulse-dot 2.5s infinite;
        }

        .response__text h4 {
            font-size: 13.5px;
            font-weight: 700;
            color: #064e3b;
            margin: 0 0 3px;
        }

        .response__text p {
            font-size: 12.5px;
            color: #047857;
            margin: 0;
        }

        /* ── RIGHT SECTION — FORM ── */
        .contact__right-section {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            padding: 36px 36px 40px;
            box-shadow: 0 4px 32px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
        }

        @media (max-width: 500px) {
            .contact__right-section { padding: 24px 18px 28px; }
        }

        .form__title {
            font-family: 'DM Sans', sans-serif;
            font-size: 22px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #0f0f0f;
            margin-bottom: 6px;
        }

        .form__subtitle {
            font-size: 14px;
            color: #888;
            margin-bottom: 28px;
            line-height: 1.55;
        }

        .contact__form { display: flex; flex-direction: column; gap: 18px; }

        .contact__form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

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

        .contact__form-group { display: flex; flex-direction: column; gap: 7px; }

        .contact__form-label {
            font-size: 13px;
            font-weight: 600;
            color: #374151;
        }

        .contact__required { color: var(--green); margin-left: 2px; }

        .contact__input,
        .contact__select,
        .contact__textarea {
            width: 100%;
            background: #f9fafb;
            border: 1.5px solid #e5e7eb;
            border-radius: 10px;
            padding: 12px 14px;
            font-size: 14px;
            font-family: 'DM Sans', sans-serif;
            color: #0f0f0f;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
            box-sizing: border-box;
        }

        .contact__input::placeholder,
        .contact__textarea::placeholder {
            color: #bbb;
        }

        .contact__input:focus,
        .contact__select:focus,
        .contact__textarea:focus {
            border-color: var(--green);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(31,188,81,0.12);
        }

        .contact__select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%23888' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 38px;
            cursor: pointer;
        }

        .contact__textarea {
            min-height: 120px;
            resize: vertical;
        }

        /* Radio pills */
        .contact__radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .contact__radio-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border: 1.5px solid #e5e7eb;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 500;
            color: #555;
            cursor: pointer;
            background: #f9fafb;
            transition: border-color 0.2s, background 0.2s, color 0.2s;
            user-select: none;
        }

        .contact__radio { display: none; }

        .contact__radio:checked + .contact__radio-label,
        .contact__radio-label.selected {
            border-color: var(--green);
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
            color: #065f46;
            font-weight: 600;
        }

        /* Radio label is the wrapper, not sibling — fix */
        .contact__radio-label:has(.contact__radio:checked) {
            border-color: var(--green);
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
            color: #065f46;
            font-weight: 600;
        }

        .contact__privacy {
            font-size: 12.5px;
            color: #888;
            margin: 0;
            line-height: 1.55;
        }

        .contact__privacy-link {
            color: var(--green-dark);
            text-decoration: none;
            font-weight: 600;
        }

        /* Submit button — gradient pill matching index/about */
        .contact__submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, #060e22 0%, #0b2a15 35%, #179740 65%, #1FBC51 100%);
            color: #fff;
            border: none;
            font-size: 15px;
            font-weight: 600;
            font-family: 'DM Sans', sans-serif;
            cursor: pointer;
            padding: 16px 36px;
            border-radius: 999px;
            box-shadow:
                0 4px 20px rgba(31,188,81,0.35),
                0 1px 6px rgba(6,14,34,0.4),
                inset 0 1px 0 rgba(255,255,255,0.1);
            transition: box-shadow 0.2s, transform 0.15s;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .contact__submit::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .contact__submit:hover {
            box-shadow:
                0 6px 28px rgba(31,188,81,0.45),
                0 2px 8px rgba(6,14,34,0.5),
                inset 0 1px 0 rgba(255,255,255,0.15);
            transform: translateY(-1px);
        }

        .contact__submit:active { transform: translateY(0); }

        .contact__submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        /* ═══════════════════════════════════════
           CTA SECTION (from original)
        ═══════════════════════════════════════ */
        .cta__section {
            background: #f9fafb;
            padding: 80px 24px;
            text-align: center;
        }

        .cta__box {
            max-width: 700px;
            margin: 0 auto;
            background: linear-gradient(135deg, #060e22 0%, #0b2a15 35%, #179740 65%, #1FBC51 100%);
            border-radius: 24px;
            padding: 56px 40px;
            color: #fff;
            box-shadow: 0 8px 40px rgba(31,188,81,0.3), 0 2px 12px rgba(0,0,0,0.2);
        }

        .cta__stars { margin-bottom: 18px; }

        .cta__stars__row {
            display: flex;
            justify-content: center;
            gap: 4px;
            margin-bottom: 8px;
        }

        .cta__stars__row i { color: #fbbf24; font-size: 16px; }

        .cta__stars span {
            font-size: 13px;
            color: rgba(255,255,255,0.7);
            font-weight: 500;
        }

        .cta__box h2 {
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(22px, 3.5vw, 32px);
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1.3;
            margin: 0 0 28px;
        }

        .cta__buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-green {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #fff;
            color: #065f46;
            font-weight: 700;
            font-size: 14px;
            padding: 13px 28px;
            border-radius: 999px;
            text-decoration: none;
            transition: transform 0.15s, box-shadow 0.2s;
            box-shadow: 0 2px 12px rgba(0,0,0,0.12);
        }

        .btn-green:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }

        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            padding: 13px 28px;
            border-radius: 999px;
            border: 1.5px solid rgba(255,255,255,0.45);
            text-decoration: none;
            transition: border-color 0.2s, background 0.2s;
        }

        .btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

        /* ═══════════════════════════════════════
           REVEAL ANIMATION
        ═══════════════════════════════════════ */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
    