/* =============================================
   F.U.E.L. PAGE — fuel.css
   Based on gift.css design system
   No font styles — handled by global.css
   ============================================= */

body { background: rgb(27, 28, 29) !important; }

section {
    position: relative;
    overflow: hidden;

    &::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -100px;
        width: 600px;
        height: 600px;
        background: radial-gradient(ellipse, rgba(197, 155, 50, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }
}

/* ── Shared ─────────────────────────────────── */
.text-gold { color: #c59b32 !important; }

.program_label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c59b32;
    margin-bottom: 20px;
    position: relative;
    padding-left: 24px;

    &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 14px;
        height: 1px;
        background-color: #c59b32;
    }
}

.card_label {
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c59b32;
    margin-bottom: 12px;
    display: block;
    font-size: 0.72rem;
}

.btn_gold {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    border: 1px solid #c59b32;
    background-color: transparent;
    color: #c59b32;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;

    &:hover { background-color: #c59b32; color: #000000; }
}

.btn_outline {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease;

    &:hover { border-color: rgba(255, 255, 255, 0.5); color: #ffffff; }
}

/* =============================================
   1. HERO — gift_hero pattern
   ============================================= */
section.fuel_hero {
    background: linear-gradient(rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.85) 100%),
        url('../../assets/img/gift/poly-bg.jpg') no-repeat center center / cover;

    .hero_image {
        position: relative;

        img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
            -webkit-border-radius: 16px;
            filter: drop-shadow(0 0 40px rgba(197, 155, 50, 0.20));
        }
    }

    .hero_content {
        padding-left: 40px;

        .program_label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #c59b32;
            margin-bottom: 20px;
            position: relative;
            padding-left: 24px;

            &::before {
                content: '';
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                width: 14px;
                height: 1px;
                background-color: #c59b32;
            }
        }

        .brand_name {
            color: rgba(255, 255, 255, 0.45);
            letter-spacing: 1px;
            margin-bottom: 28px;
        }

        .hero_btns {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
    }

    @media (max-width: 991px) {
        .hero_image {
            margin-bottom: 40px;
            max-width: 420px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero_content {
            padding-left: 0;
            text-align: center;

            .program_label { padding-left: 0; &::before { display: none; } }
            .hero_btns { justify-content: center; }
        }
    }
}

/* =============================================
   2. EXECUTIVE SUMMARY — gift_executive_summary pattern
   ============================================= */
section.fuel_executive_summary {
    background-color: rgb(23, 22, 20);

    .header {
        margin-bottom: 40px;

        .program_label {
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #ffffff;
            background-color: rgba(197, 155, 50, 0.15);
            border: 1px solid rgba(197, 155, 50, 0.3);
            border-radius: 20px;
            -webkit-border-radius: 20px;
            padding: 4px 14px;
            padding-left: 14px;
            margin-bottom: 16px;

            &::before { display: none; }
        }

        h2 { color: #ffffff; }
    }

    .main_content {
        padding-right: 40px;

        p { color: rgba(255, 255, 255, 0.65); margin-bottom: 1rem; line-height: 1.75; }
    }

    .difference_card {
        background: linear-gradient(rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.88) 100%),
            url('../../assets/img/gift/poly-bg.jpg') no-repeat center center / cover;
        border: 1px solid rgba(197, 155, 50, 0.4);
        border-radius: 16px;
        -webkit-border-radius: 16px;
        padding: 32px 28px;
        position: relative;
        overflow: hidden;

        &::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c59b32, transparent);
        }

        .card_label { color: #c59b32; }
    }

    .fuel_check_list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0;

        li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: rgba(255, 255, 255, 0.75);
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.9rem;
            line-height: 1.6;

            &:first-child { padding-top: 0; }
            &:last-child { border-bottom: none; padding-bottom: 0; }

            svg { flex-shrink: 0; margin-top: 3px; }
        }
    }

    @media (max-width: 991px) {
        .main_content { padding-right: 0; margin-bottom: 32px; }
    }
}

/* =============================================
   3. HOW F.U.E.L. TRANSFORMS — gift_opportunity pattern
   ============================================= */
section.fuel_transforms {
    background-color: rgb(20, 20, 21);

    .header {
        margin-bottom: 40px;
        h2 { color: #c59b32; }
    }

    .content {
        background-color: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        -webkit-border-radius: 16px;
        padding: 36px 32px;
        position: relative;
        overflow: hidden;
        height: 100%;
        transition: border-color 0.3s ease, transform 0.3s ease;

        &::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c59b32, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        &:hover { border-color: rgba(197, 155, 50, 0.35); transform: translateY(-4px); }
        &:hover::before { opacity: 1; }

        .content_icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background-color: rgba(197, 155, 50, 0.10);
            border: 1px solid rgba(197, 155, 50, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        h3 { color: #ffffff; }
        p { color: rgba(255, 255, 255, 0.65); line-height: 1.75; }
    }
}

/* =============================================
   4. KEY BENEFITS — gift_traditional_philanthropy pattern
   ============================================= */
section.fuel_benefits {
    background-color: rgb(23, 22, 20);

    .header {
        margin-bottom: 40px;
        h2 { color: #c59b32; }
    }

    .content {
        background-color: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        -webkit-border-radius: 16px;
        padding: 36px 32px;
        position: relative;
        overflow: hidden;
        height: 100%;
        transition: border-color 0.3s ease, transform 0.3s ease;

        &::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, transparent, #c59b32, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        &:hover { border-color: rgba(197, 155, 50, 0.35); transform: translateY(-4px); }
        &:hover::before { opacity: 1; }

        .benefit_number {
            font-size: 2.5rem;
            font-weight: 800;
            color: rgba(197, 155, 50, 0.18);
            line-height: 1;
            margin-bottom: 16px;
            letter-spacing: -1px;
            transition: color 0.3s ease;
        }

        &:hover .benefit_number { color: rgba(197, 155, 50, 0.35); }

        h3 { color: #c59b32; margin-bottom: 0.75rem; }
        p { color: rgba(255, 255, 255, 0.65); line-height: 1.75; margin-bottom: 0; }
    }

    .highlight_box {
        background-color: rgba(197, 155, 50, 0.08);
        border: 1px solid rgba(197, 155, 50, 0.25);
        border-radius: 12px;
        -webkit-border-radius: 12px;
        padding: 20px 24px;
        display: flex;
        align-items: flex-start;
        gap: 14px;

        .highlight_icon { flex-shrink: 0; margin-top: 2px; }
        p { color: rgba(255, 255, 255, 0.75); margin-bottom: 0; }
    }
}

/* =============================================
   6. PROGRAM TIMELINE — gift_roadmap phase_card pattern
   ============================================= */
section.fuel_timeline {
    background-color: rgb(27, 28, 29);
    position: relative;
    overflow: hidden;

    &::before {
        content: '';
        position: absolute;
        top: -200px;
        left: 50%;
        transform: translateX(-50%);
        width: 800px;
        height: 400px;
        background: radial-gradient(ellipse, rgba(197, 155, 50, 0.06) 0%, transparent 70%);
        pointer-events: none;
    }

    .header {
        margin-bottom: 20px;
        h2 { color: #c59b32; margin-bottom: 0; }
    }

    .timeline_note {
        color: rgba(255, 255, 255, 0.55);
        font-size: 0.9rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.65;
    }

    .phase_card {
        background-color: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        -webkit-border-radius: 16px;
        padding: 32px 28px;
        position: relative;
        overflow: hidden;
        height: 100%;
        transition: border-color 0.3s ease;

        &:hover { border-color: rgba(197, 155, 50, 0.35); }
        &:hover .phase_line { opacity: 1; }

        .phase_line {
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c59b32, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .phase_icon {
            width: 48px; height: 48px;
            border-radius: 12px;
            -webkit-border-radius: 12px;
            background-color: rgba(197, 155, 50, 0.1);
            border: 1px solid rgba(197, 155, 50, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .phase_tag {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #c59b32;
            margin-bottom: 10px;
        }

        h3 { color: #ffffff; margin-bottom: 1rem; }
    }

    .detail_list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0;

        li {
            color: rgba(255, 255, 255, 0.65);
            padding: 10px 0 10px 18px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            position: relative;
            font-size: 0.88rem;
            line-height: 1.6;

            &:first-child { padding-top: 0; }
            &:last-child { border-bottom: none; padding-bottom: 0; }

            &::before {
                content: '';
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                width: 5px; height: 5px;
                border-radius: 50%;
                background-color: #c59b32;
            }
        }
    }
}

/* =============================================
   7. FINANCIAL MODEL — gift_architecture chart_card pattern
   ============================================= */
section.fuel_financial_model {
    background-color: rgb(23, 22, 20);

    .header {
        margin-bottom: 20px;
        h2 { color: #c59b32; }
    }

    .model_intro {
        color: rgba(255, 255, 255, 0.60);
        font-size: 0.92rem;
        max-width: 820px;
        margin: 0 auto 40px;
        line-height: 1.75;
    }

    .model_flow {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        background-color: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        -webkit-border-radius: 16px;
        overflow: hidden;
        position: relative;

        &::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c59b32, transparent);
        }

        margin-bottom: 20px;
    }

    .model_step {
        flex: 1 1 calc(20% - 0px);
        min-width: 160px;
        padding: 28px 24px;
        border-right: 1px solid rgba(255, 255, 255, 0.06);
        position: relative;
        transition: background-color 0.3s ease;

        &:last-child { border-right: none; }

        &:hover { background-color: rgba(197, 155, 50, 0.04); }

        .step_number {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #c59b32;
            margin-bottom: 10px;
            display: block;
        }

        p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.85rem;
            line-height: 1.6;
            margin: 0;
        }

        .step_arrow {
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            background-color: rgb(23, 22, 20);
        }

        @media (max-width: 991px) {
            flex: 1 1 calc(50% - 0px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            border-right: none;

            &:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.06); }
            &:last-child { border-bottom: none; }

            .step_arrow { display: none; }
        }

        @media (max-width: 575px) {
            flex: 1 1 100%;
            border-right: none;
            &:nth-child(odd) { border-right: none; }
        }
    }

    .model_disclaimer {
        color: rgba(197, 155, 50, 0.60);
        font-size: 0.8rem;
        font-style: italic;
        max-width: 700px;
        margin: 0 auto;
    }
}

/* =============================================
   8. ELIGIBILITY — gift_eligibility pattern
   ============================================= */
section.fuel_eligibility {
    background-color: rgb(20, 20, 21);
    position: relative;
    overflow: hidden;

    &::before {
        content: '';
        position: absolute;
        top: -200px;
        left: 50%;
        transform: translateX(-50%);
        width: 800px; height: 400px;
        background: radial-gradient(ellipse, rgba(197, 155, 50, 0.06) 0%, transparent 70%);
        pointer-events: none;
    }

    .header {
        margin-bottom: 20px;
        h2 { color: #c59b32; margin-bottom: 0; }
    }

    .eligibility_intro {
        color: rgba(255, 255, 255, 0.60);
        font-size: 0.92rem;
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

    .eligibility_card {
        background-color: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        -webkit-border-radius: 16px;
        padding: 28px 24px;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: border-color 0.3s ease, transform 0.3s ease;

        &::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c59b32, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        &:hover { border-color: rgba(197, 155, 50, 0.35); transform: translateY(-4px); }
        &:hover::before { opacity: 1; }

        .elig_icon {
            width: 44px; height: 44px;
            border-radius: 10px;
            background-color: rgba(197, 155, 50, 0.10);
            border: 1px solid rgba(197, 155, 50, 0.25);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 16px;
        }

        p { color: rgba(255, 255, 255, 0.70); font-size: 0.88rem; line-height: 1.7; }
    }

    .application_header {
        padding: 48px 0 24px;
        h3 { color: #c59b32; }
    }

    .app_step_card {
        background-color: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        -webkit-border-radius: 16px;
        padding: 32px 28px;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: border-color 0.3s ease;

        &::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c59b32, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        &:hover { border-color: rgba(197, 155, 50, 0.35); }
        &:hover::before { opacity: 1; }

        .app_step_number {
            width: 36px; height: 36px;
            border-radius: 50%;
            background-color: rgba(197, 155, 50, 0.12);
            border: 1px solid rgba(197, 155, 50, 0.4);
            display: flex; align-items: center; justify-content: center;
            color: #c59b32;
            font-weight: 800;
            font-size: 1rem;
            margin-bottom: 20px;
        }

        h3 { color: #c59b32; margin-bottom: 0.75rem; }
        p { color: rgba(255, 255, 255, 0.65); line-height: 1.75; margin-bottom: 0; }
    }
}

/* =============================================
   9. CASE STUDIES — gift_case_study pattern
   ============================================= */
section.fuel_case_studies {
    background-color: rgb(27, 28, 29);
    position: relative;
    overflow: hidden;

    &::before {
        content: '';
        position: absolute;
        top: -200px;
        left: 50%;
        transform: translateX(-50%);
        width: 800px; height: 400px;
        background: radial-gradient(ellipse, rgba(197, 155, 50, 0.06) 0%, transparent 70%);
        pointer-events: none;
    }

    .header {
        margin-bottom: 20px;
        h2 { color: #ffffff; }
    }

    .case_intro {
        color: rgba(255, 255, 255, 0.55);
        font-size: 0.9rem;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }

    .case_card {
        background-color: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        -webkit-border-radius: 16px;
        overflow: hidden;
        height: 100%;
        position: relative;
        transition: border-color 0.3s ease, transform 0.3s ease;

        &::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c59b32, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        &:hover { border-color: rgba(197, 155, 50, 0.35); transform: translateY(-4px); }
        &:hover::before { opacity: 1; }

        .case_image {
            height: 220px;
            overflow: hidden;
            position: relative;

            img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }

            &::after {
                content: '';
                position: absolute;
                inset: 0;
                background: linear-gradient(135deg, rgba(197, 155, 50, 0.08) 0%, transparent 60%);
            }
        }

        &:hover .case_image img { transform: scale(1.05); }

        .case_content {
            padding: 24px 24px 28px;

            .impact_badge {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                background-color: rgba(197, 155, 50, 0.1);
                border: 1px solid rgba(197, 155, 50, 0.3);
                border-radius: 20px;
                padding: 3px 10px;
                color: #c59b32;
                font-size: 0.65rem;
                font-weight: 700;
                letter-spacing: 1.5px;
                text-transform: uppercase;
                margin-bottom: 12px;
                display: inline-block;
            }

            h3 { color: #ffffff; margin-bottom: 0.75rem; }
            p { color: rgba(255, 255, 255, 0.65); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }

            .case_stat {
                padding-top: 12px;
                border-top: 1px solid rgba(255, 255, 255, 0.06);

                .stat_number {
                    color: #c59b32;
                    font-size: 1.4rem;
                    font-weight: 800;
                    letter-spacing: -0.5px;
                }
            }
        }
    }
}

/* =============================================
   10. USE CASES
   ============================================= */
section.fuel_use_cases {
    background-color: rgb(23, 22, 20);

    .header {
        margin-bottom: 20px;
        h2 { color: #ffffff; }
    }

    .use_intro {
        color: rgba(255, 255, 255, 0.55);
        font-size: 0.9rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .use_case_card {
        background-color: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        -webkit-border-radius: 16px;
        overflow: hidden;
        height: 100%;
        transition: border-color 0.3s ease, transform 0.3s ease;
        position: relative;

        &::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c59b32, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        &:hover { border-color: rgba(197, 155, 50, 0.35); transform: translateY(-4px); }
        &:hover::before { opacity: 1; }

        .use_case_image {
            height: 240px;
            overflow: hidden;

            img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
        }

        &:hover .use_case_image img { transform: scale(1.05); }

        .use_case_content {
            padding: 24px 24px 28px;
            p { color: rgba(255, 255, 255, 0.70); font-size: 0.9rem; line-height: 1.7; margin: 0; }
        }
    }
}

/* =============================================
   11. FAQ
   ============================================= */
section.fuel_faq {
    background-color: rgb(20, 20, 21);

    .header {
        margin-bottom: 40px;
        h2 { color: #ffffff; }
    }

    .faq_accordion {
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        -webkit-border-radius: 16px;
        overflow: hidden;
    }

    .faq_item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        &:last-child { border-bottom: none; }
    }

    .faq_question {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        padding: 22px 28px;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        color: rgba(255, 255, 255, 0.85);
        font-size: 1rem;
        font-weight: 600;
        text-align: left;
        cursor: pointer;
        transition: color 0.3s ease, background-color 0.3s ease;
        font-family: inherit;

        &:hover { color: #c59b32; background-color: rgba(197, 155, 50, 0.04); }

        &[aria-expanded="true"] {
            color: #c59b32;
            background-color: rgba(197, 155, 50, 0.06);
            .faq_icon { transform: rotate(180deg); }
        }

        .faq_icon { flex-shrink: 0; transition: transform 0.3s ease; }
    }

    .faq_answer {
        padding: 0 28px 22px;
        background-color: rgba(197, 155, 50, 0.03);
        p { color: rgba(255, 255, 255, 0.65); line-height: 1.75; margin: 0; }
    }
}

/* =============================================
   12. CONTACT CTA — gift_contact pattern
   ============================================= */
section.fuel_contact {
    background: linear-gradient(rgba(15, 14, 12, 0.88) 0%, rgba(15, 14, 12, 0.92) 100%),
        url('../../assets/img/gift/poly-bg.jpg') no-repeat center center / cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;

    &::before {
        content: '';
        position: absolute;
        top: -200px;
        left: 50%;
        transform: translateX(-50%);
        width: 800px; height: 400px;
        background: radial-gradient(ellipse, rgba(197, 155, 50, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

    .contact_image {
        position: relative;
        border-radius: 16px;
        -webkit-border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(197, 155, 50, 0.2);
        height: 100%;

        img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 440px; }

        &::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(197, 155, 50, 0.08) 0%, transparent 60%);
        }

        @media (max-width: 991px) { margin-bottom: 40px; img { min-height: 280px; } }
    }

    .contact_content {
        .card_label { color: #c59b32; }
        h2 { color: #c59b32; }
        p { color: rgba(255, 255, 255, 0.65); line-height: 1.75; }

        .hero_btns { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }

        .contact_details {
            p { font-size: 0.9rem; margin-bottom: 4px; }
        }
    }
}