﻿/* INTRO HERO INTRO SECTION */
.intro-hero {
    height: 380px;
    background: linear-gradient(rgba(0, 77, 62, 0.88), rgba(0, 38, 29, 0.93)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?q=80&w=1920');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

    .intro-hero h1 {
        font-size: 2.8rem;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 15px;
        letter-spacing: -0.5px;
    }

    .intro-hero p {
        font-size: 1.15rem;
        opacity: 0.9;
        max-width: 850px;
        margin: 0 auto;
        line-height: 1.6;
    }

/* SPACING & TITLES */
.section-space {
    padding: 70px 0;
}

.section-title-wrap {
    margin-bottom: 45px;
    text-align: center;
}

    .section-title-wrap h2 {
        font-size: 1.6rem;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--aof-primary-dark);
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
        letter-spacing: 0.5px;
    }

        .section-title-wrap h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 30%;
            right: 30%;
            height: 4px;
            background: var(--aof-gold);
            border-radius: 2px;
        }

/* HISTORY SECTION */
.history-box {
    display: flex;
    align-items: center;
    gap: 50px;
}

.history-text {
    flex: 1;
}

    .history-text p {
        color: #334155;
        font-size: 1rem;
        margin-bottom: 18px;
        text-align: justify;
    }

.history-image {
    flex: 1;
    position: relative;
}

    .history-image img {
        width: 100%;
        border-radius: var(--radius-md);
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    }

    .history-image::before {
        content: '';
        position: absolute;
        top: -15px;
        left: -15px;
        width: 80px;
        height: 80px;
        border-top: 5px solid var(--aof-gold);
        border-left: 5px solid var(--aof-gold);
        z-index: -1;
    }

/* STATS BAR */
.stats-zone {
    background: var(--aof-primary-dark);
    padding: 50px 0;
    color: #fff;
}

.stat-item h3 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--aof-gold);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.8rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-weight: 600;
}

/* MISSION & VALUES (GRID) */
.value-card {
    padding: 45px 30px;
    border-radius: var(--radius-md);
    background: var(--bg-section-light);
    border: 1px solid #eef2f1;
    transition: var(--transition);
    text-align: center;
    height: 100%;
    box-shadow: var(--card-shadow);
}

    .value-card:hover {
        transform: translateY(-8px);
        background: #fff;
        box-shadow: 0 20px 40px rgba(0, 122, 94, 0.07);
        border-color: var(--aof-primary-light);
    }

.value-icon {
    width: 64px;
    height: 64px;
    background: #fff;
    color: var(--aof-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 25px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.04);
}

.value-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--aof-primary-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.value-card p {
    font-size: 0.92rem;
    color: #475569;
    margin: 0;
}

/* FUNCTIONS (LIST LAYOUT) */
.func-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding: 25px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--aof-gold);
    background: #fff;
    box-shadow: var(--card-shadow);
    border-top: 1px solid #f1f5f4;
    border-right: 1px solid #f1f5f4;
    border-bottom: 1px solid #f1f5f4;
    transition: var(--transition);
}

    .func-item:hover {
        transform: translateX(8px);
        box-shadow: var(--card-shadow-hover);
    }

.func-number {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(0, 122, 94, 0.12);
    line-height: 1;
}

.func-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--aof-primary-dark);
    margin-bottom: 6px;
}

.func-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}
.section-title-wrap h2::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 10%;
    bottom: 10%;
    width: 5px;
    background: var(--aof-gold);
    border-radius: 4px;
}