
.stats-section {
    position: relative;
    background: url('../images/ABH-Safran.jpg') bottom/cover no-repeat;
    color: white;
    padding: 4rem 0;
    border-radius: 15px;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgb(0 0 0 / 70%);
    z-index: 1;
    border-radius: 15px;
}
.stats-section-content{
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 20px;
}

/* Hero Header */
.apropos-header {
    position: relative;
    background: linear-gradient(180deg, rgb(0 0 0 / 58%), rgb(0 0 0 / 18%)), url('../images/slid-odco.jpg') center/cover no-repeat;
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin-top: -100px;
}

.apropos-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 45%);
    z-index: 1;
}

.apropos-header-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 20px;
}


/* ==========================================
    SECTIONS PRINCIPALES
    ========================================== */

.apropos-section {
    padding: 0.5rem 0;
}

.apropos-section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.apropos-section-subtitle {
    font-size: 1.1rem;
    color: #d97535;
    font-weight: 600;
}

.apropos-section-subtitle-valeurs {
    font-size: 1.1rem;
    color: #d97535;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Notre Mission */
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.mission-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mission-image {
    border-radius: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.mission-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" opacity="0.1"/><circle cx="80" cy="80" r="20" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.mission-image-content {
    position: relative;
    z-index: 1;
}

/* Nos Valeurs */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid #d97535;
}

.value-card:hover {
    box-shadow: 0 12px 30px rgba(161, 161, 161, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Statistiques */


.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Équipe */
.team-section {
    background-color: #f9f9f9;
    padding: 4rem 0;
    margin-top: -2rem;
    
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.team-image {
    background: linear-gradient(135deg, #d97535, #e8914a);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.team-info {
    padding: 1.5rem;
}

.team-name {
    font-size: 1.2rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.team-role {
    color: #d97535;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #d97535;
    transform: translateX(-50%);
}

.timeline-item {
    
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    text-align: right;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    text-align: left;
    padding-left: 2rem;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #d97535;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.timeline-content {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #d97535;
}

.timeline-year {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d97535;
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: #666;
    line-height: 1.6;
}

/* Partenaires */
.partners-section {
    text-align: center;
    padding: 3rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.partner-logo {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: #d97535;
    color: white;
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #d97535, #e8914a);
    color: white;
    padding: 4rem 0;
    text-align: center;
    border-radius: 15px;
    margin-top: 4rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: white;
    color: #d97535;
}

.cta-btn-primary:hover {
    /* transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2); */
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: white;
    color: #d97535;
}

/* ==========================================
    RESPONSIVE
    ========================================== */

@media (max-width: 768px) {
    .apropos-header h1 {
        font-size: 2rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
    }

    .mission-image {
        height: 300px;
        font-size: 3rem;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        margin-right: 0;
        text-align: left;
        padding-left: 1rem;
        margin-bottom: 15px !important;
    }

    .timeline-dot {
        left: 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .apropos-header {
        padding: 3rem 0;
        margin-top: 40px;
    }

    .apropos-header h1 {
        font-size: 1.5rem;
    }

    .apropos-section-title {
        font-size: 1.8rem;
    }

    .values-grid,
    .team-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}