/* ==========================================================================
   PAGE À PROPOS - VERSION COMPLÈTE & OPTIMISÉE MOBILE
   ========================================================================== */

/* --- CONFIGURATION DE BASE --- */
.about-page {
    padding: 140px 0 80px;
    background: var(--slate-bg);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- HERO SECTION --- */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.about-title {
    font-family: 'Anton';
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--navy);
    text-transform: uppercase;
}

.text-orange { color: var(--orange); }

.orange-bar {
    width: 80px;
    height: 6px;
    background: var(--orange);
    margin-bottom: 30px;
}

.about-text {
    font-size: 1.1rem;
    color: var(--slate-text);
    margin-bottom: 20px;
    max-width: 600px;
}

/* --- LE SLIDER (IMAGE ET NAVIGATION) --- */
.about-image-wrapper {
    position: relative;
    z-index: 1;
}

.main-img-card {
    position: relative;
    height: 600px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    background: #e2e8f0;
}

.slider-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.8s ease-in-out, transform 1.2s ease-in-out;
}

.slider-img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-nav button {
    background: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: 0.3s;
    color: var(--navy);
}

.slider-nav button:hover {
    background: var(--orange);
    color: white;
}

.slider-progress {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bar {
    width: 5px;
    height: 35px;
    background: #cbd5e1;
    border-radius: 10px;
    transition: all 0.5s ease;
}

.bar.active {
    height: 65px;
    background: var(--orange);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: 40px;
    background: var(--orange);
    color: white;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    z-index: 20;
}

.exp-number { font-family: 'Anton'; font-size: 3rem; line-height: 1; }
.exp-label { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; text-align: center; }

/* --- STATISTIQUES --- */
.stats-divider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: var(--navy);
    padding: 60px 40px;
    border-radius: 30px;
    margin-bottom: 100px;
    text-align: center;
}

.stat-item { color: white; }
.stat-value { font-family: 'Anton'; font-size: 3.5rem; color: var(--orange); }
.stat-plus { font-family: 'Anton'; font-size: 2.5rem; color: var(--orange); }
.stat-label { font-size: 0.9rem; font-weight: 700; color: #94a3b8; text-transform: uppercase; }

/* --- VALEURS --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.value-card:hover { transform: translateY(-10px); }
.value-icon { color: var(--orange); margin-bottom: 20px; }
.value-card h3 { font-family: 'Anton'; margin-bottom: 15px; font-size: 1.5rem; text-transform: uppercase; }

/* ==========================================================================
   CORRECTION CRITIQUE : MENU MOBILE (DRAWER)
   ========================================================================== */

/* On force la suppression des puces et le style propre du menu mobile */
.mobile-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 40px 0 0 0 !important;
}

.mobile-links li {
    list-style: none !important;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.mobile-links li a {
    text-decoration: none;
    color: white;
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

.mobile-links li a i {
    color: var(--orange);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 992px) {
    .about-hero { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .about-content { order: 2; }
    .about-image-wrapper { order: 1; max-width: 600px; margin: 0 auto; width: 100%; }
    .orange-bar { margin: 0 auto 30px; }
    .about-text { margin-left: auto; margin-right: auto; }
    .slider-progress { left: 10px; }
}

@media (max-width: 768px) {
    .about-page { padding-top: 110px; }
    .about-title { font-size: 2.2rem; }
    
    .main-img-card { height: 400px; border-radius: 25px; }
    
    .experience-badge { 
        padding: 15px 25px; 
        bottom: -25px; 
        left: 50%; 
        transform: translateX(-50%); /* Centré sur mobile */
        width: 180px;
    }
    
    .exp-number { font-size: 2.2rem; }
    .exp-label { font-size: 0.65rem; }

    .stats-divider {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
    }

    .stat-value { font-size: 2.8rem; }
    
    .slider-nav { bottom: 15px; right: 15px; }
    .slider-nav button { width: 40px; height: 40px; }
}