/* =============================================
   SECURITY & COMPLIANCE PAGE
   security_compliance.css
   ============================================= */

body {
    background: rgb(27, 28, 29) !important;
}

/* Global section glow */
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.06) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
    }
}

/* Shared program_label */
.program_label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c59b32;
    margin-bottom: 16px;
    padding: 6px 14px;
    border: 1px solid rgba(197, 155, 50, 0.3);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    background: rgba(197, 155, 50, 0.06);
}

/* =============================================
   HERO
   ============================================= */
section.security_hero {
    background: url('../../assets/img/security/security-hero-bg.jpg') no-repeat center center / cover;
    min-height: 320px;
    display: flex;
    align-items: center;
    padding: 100px 30px !important;

    .hero_overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.88) 100%);
        z-index: 0;
    }

    .wrapper {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    h1 {
        font-family: 'Gilroy', sans-serif;
        font-weight: 800;
        font-size: clamp(2rem, 5vw, 3.2rem);
        color: #ffffff;
        line-height: 1.1;
        margin-top: 12px;
        margin-bottom: 0;
    }

    @media (max-width: 767px) {
        min-height: 220px;
        padding: 60px 8px !important;
    }
}

/* =============================================
   SHARED FRAMEWORK STYLES
   ============================================= */
.framework_header {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(197, 155, 50, 0.2);
    position: relative;
    z-index: 1;

    .framework_tag {
        display: inline-block;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: #c59b32;
        margin-bottom: 12px;
    }

    h2 {
        font-family: 'Gilroy', sans-serif;
        font-weight: 800;
        font-size: clamp(1.5rem, 3vw, 2.2rem);
        color: #ffffff;
        margin: 0;
        line-height: 1.15;
    }
}

.framework_item {
    position: relative;
    z-index: 1;
    padding: 28px 28px 28px 32px;
    border-left: 2px solid rgba(197, 155, 50, 0.25);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 12px 12px 0;
    -webkit-border-radius: 0 12px 12px 0;
    height: 100%;
    transition: border-left-color 0.3s ease, background-color 0.3s ease;

    &::before {
        content: '';
        position: absolute;
        left: -2px;
        top: 0;
        width: 2px;
        height: 0;
        background-color: #c59b32;
        transition: height 0.4s ease;
    }

    &:hover {
        border-left-color: #c59b32;
        background: rgba(197, 155, 50, 0.05);

        &::before {
            height: 100%;
        }
    }

    h3 {
        font-family: 'Gilroy', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        line-height: 1.75;
        margin: 0;
    }
}

/* =============================================
   INDIVIDUAL SECTION BACKGROUNDS
   Alternating dark tones
   ============================================= */
section.security_sblc {
    background-color: rgb(27, 28, 29);
}

section.security_carr {
    background-color: rgb(23, 22, 20);
}

section.security_disc {
    background-color: rgb(27, 28, 29);
}

section.security_fuel {
    background-color: rgb(23, 22, 20);
}

section.security_project {
    background-color: rgb(20, 20, 21);

    /* Poly-bg accent for last section */
    background-image: linear-gradient(rgba(20, 20, 21, 0.96) 0%, rgba(20, 20, 21, 0.96) 100%),
        url('../../assets/img/gift/poly-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* =============================================
   DISCLOSURE
   ============================================= */
section.security_disclosure {
    background-color: rgb(15, 15, 16);
    border-top: 1px solid rgba(197, 155, 50, 0.15);

    .disclosure_text {
        color: rgba(255, 255, 255, 0.45);
        font-size: 0.82rem;
        line-height: 1.75;
        max-width: 800px;
        margin: 0 auto;
    }
}