
/* =============================================
   DISCLOSURE CTA
   ============================================= */
section.carr_disclosure_cta {
    padding: 80px 0;
    background: rgba(197, 155, 50, 0.06);
    border-top: 1px solid rgba(197, 155, 50, 0.2);

    .disclosure_label {
        font-size: 0.85rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 600;
    }
}
/* =============================================
   C.A.R.R. PAGE — carr.css
   Reuses global.css + bootstrap patterns
   ============================================= */

body {
    background: rgb(27, 28, 29) !important;
}

/* Global section glow — same as gift.css */
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 program label */
.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;
    }
}

/* Shared section header */
.section_header {
    h2 {
        font-family: 'Gilroy', sans-serif;
        font-weight: 800;
    }
}

/* =============================================
   HERO
   ============================================= */
section.carr_hero {
    background: linear-gradient(135deg, rgba(197, 155, 50, 0.12) 0%, rgba(27, 28, 29, 0.95) 60%),
        rgb(27, 28, 29);

    .hero_content {
        .program_label {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #c59b32;
            margin-bottom: 20px;
            padding: 8px 16px;
            border: 1px solid rgba(197, 155, 50, 0.35);
            border-radius: 4px;
            -webkit-border-radius: 4px;
            background: rgba(197, 155, 50, 0.08);
        }

        h1 {
            font-family: 'Gilroy', sans-serif;
            font-weight: 800;
            line-height: 1.1;
            color: #ffffff;
        }

        p {
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.75;
        }

        .hero_btns {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 8px;
        }
    }

    .hero_image {
        position: relative;
        border-radius: 16px;
        -webkit-border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(197, 155, 50, 0.2);

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            min-height: 460px;
        }

        &::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(197, 155, 50, 0.08) 0%, transparent 60%);
        }
    }

    @media (max-width: 991px) {
        .hero_image img {
            min-height: 300px;
        }

        .hero_btns {
            flex-direction: column;
            align-items: flex-start;
        }
    }
}

/* =============================================
   PROGRAM OVERVIEW
   ============================================= */
section.carr_overview {
    background-color: rgb(20, 20, 21);

    .overview_content {
        h2 {
            font-family: 'Gilroy', sans-serif;
            font-weight: 800;
        }

        p {
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.75;
        }
    }

    .overview_image {
        border-radius: 16px;
        -webkit-border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            min-height: 380px;
        }
    }

    @media (max-width: 991px) {
        .overview_image img {
            min-height: 260px;
        }
    }
}

/* =============================================
   FOUR-STEP FRAMEWORK
   ============================================= */
section.carr_framework {
    background-color: rgb(27, 28, 29);

    .section_header h2 {
        color: #ffffff;
    }

    .framework_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: 36px 32px;
        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;
        }

        .step_number {
            font-size: 3rem;
            font-weight: 900;
            font-family: 'Gilroy', sans-serif;
            color: rgba(197, 155, 50, 0.15);
            line-height: 1;
            margin-bottom: 12px;
        }

        h3 {
            font-family: 'Gilroy', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: #ffffff;
        }

        p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
        }
    }
}

/* =============================================
   PROGRAM TIMELINE — FLIP CARDS
   ============================================= */
section.carr_timeline {
    background-color: rgb(23, 22, 20);
    background-image: url('../../assets/img/carr/carr-timeline-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    /* Dark overlay */
    &::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(10, 10, 10, 0.82);
        z-index: 0;
        pointer-events: none;
    }

    .wrapper {
        position: relative;
        z-index: 1;
    }

    .section_header h2 {
        color: #ffffff;
    }

    .timeline_note {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.9rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.65;
    }

    /* ---- Flip Card ---- */
    .flip_card {
        perspective: 1000px;
        height: 260px;
        cursor: pointer;

        .flip_card_inner {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
        }

        &:hover .flip_card_inner {
            transform: rotateY(180deg);
        }

        .flip_card_front,
        .flip_card_back {
            position: absolute;
            inset: 0;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            border-radius: 16px;
            -webkit-border-radius: 16px;
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            overflow: hidden;
        }

        .flip_card_front {
            background-color: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            align-items: center;
            justify-content: center;

            .phase_tag {
                font-size: 0.7rem;
                font-weight: 700;
                letter-spacing: 2px;
                text-transform: uppercase;
                color: #c59b32;
                margin-bottom: 10px;
            }

            h3 {
                font-family: 'Gilroy', sans-serif;
                font-size: 1.1rem;
                font-weight: 700;
                color: #ffffff;
                line-height: 1.3;
            }
        }

        .flip_card_back {
            background-color: rgba(10, 10, 10, 0.97);
            border: 1px solid rgba(197, 155, 50, 0.35);
            transform: rotateY(180deg);
            justify-content: flex-start;
            height: 100%;

            &::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 2px;
                background: linear-gradient(90deg, transparent, #c59b32, transparent);
            }

            .phase_tag {
                font-size: 0.65rem;
                font-weight: 700;
                letter-spacing: 2px;
                text-transform: uppercase;
                color: #c59b32;
                margin-bottom: 14px;
            }

            .phase_list {
                list-style: none;
                padding: 0;
                margin: 0;
                display: flex;
                flex-direction: column;
                gap: 8px;

                li {
                    color: rgba(255, 255, 255, 0.7);
                    font-size: 0.85rem;
                    line-height: 1.5;
                    padding-left: 16px;
                    position: relative;

                    &::before {
                        content: '';
                        position: absolute;
                        left: 0;
                        top: 8px;
                        width: 5px;
                        height: 5px;
                        border-radius: 50%;
                        -webkit-border-radius: 50%;
                        background-color: #c59b32;
                    }
                }
            }
        }
    }

    @media (max-width: 767px) {
        .flip_card {
            height: auto;
            min-height: 240px;
        }
    }
}

/* =============================================
   CAPITAL CYCLE
   ============================================= */
section.carr_capital_cycle {
    background-color: rgb(27, 28, 29);

    .section_header h2 {
        color: #ffffff;
    }

    .cycle_intro {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.95rem;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;

        strong {
            color: #ffffff;
            font-weight: 700;
        }
    }

    .cycle_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: 36px 32px;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: border-color 0.3s ease;

        &::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, transparent, #c59b32, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        &:hover {
            border-color: rgba(197, 155, 50, 0.3);
        }

        &:hover::before {
            opacity: 1;
        }

        h3 {
            font-family: 'Gilroy', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #c59b32;
        }

        p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.75;
        }
    }
}

/* =============================================
   ELIGIBILITY REQUIREMENTS
   ============================================= */
section.carr_eligibility {
    background-color: rgb(20, 20, 21);

    .section_header h2 {
        color: #ffffff;
    }

    .eligibility_intro {
        color: rgba(255, 255, 255, 0.55);
        font-size: 0.95rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;

        strong {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 700;
        }
    }

    .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: 32px 28px;
        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: 48px;
            height: 48px;
            border-radius: 10px;
            -webkit-border-radius: 10px;
            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: 18px;
        }

        h3 {
            font-family: 'Gilroy', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.3;
        }

        p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            line-height: 1.7;
        }
    }
}

/* =============================================
   USE CASES
   ============================================= */
section.carr_use_cases {
    background-color: rgb(23, 22, 20);

    .section_header h2 {
        color: #ffffff;
    }

    .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: 220px;
            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: 28px 24px;

            h3 {
                font-family: 'Gilroy', sans-serif;
                font-size: 1.05rem;
                font-weight: 700;
                color: #c59b32;
            }

            p {
                color: rgba(255, 255, 255, 0.6);
                font-size: 0.9rem;
                line-height: 1.7;
            }
        }
    }
}

/* =============================================
   FAQ
   ============================================= */
section.carr_faq {
    background-color: rgb(27, 28, 29);

    .section_header 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.6);
            line-height: 1.75;
            margin: 0;
        }
    }
}

/* =============================================
   INTAKE FORMS
   ============================================= */
section.carr_intake {
    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;

    .section_header h2 {
        color: #ffffff;
    }

    .intake_buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .intake_btn {
        display: inline-block;
        padding: 14px 28px;
        background-color: rgba(197, 155, 50, 0.08);
        border: 1px solid rgba(197, 155, 50, 0.4);
        border-radius: 6px;
        -webkit-border-radius: 6px;
        color: #c59b32;
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        text-decoration: none;
        transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;

        &:hover {
            background-color: #c59b32;
            color: #000000;
            border-color: #c59b32;
        }
    }
}

/* =============================================
   DISCLOSURE
   ============================================= */
section.carr_disclosure {
    background-color: rgb(20, 20, 21);
    padding: 48px 30px !important;

    .disclosure_label {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #c59b32;
        margin-bottom: 16px;
    }

    .disclosure_text {
        color: rgba(255, 255, 255, 0.35);
        font-size: 0.8rem;
        line-height: 1.7;
        max-width: 800px;
        margin: 0 auto;
    }
}