/* Section À Propos */
.apropos {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background-color: #f9fafc;
}

.bg-pattern {
    position: absolute;
    top: 5;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/logo.png') no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.bg-blur {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.apropos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

/* Partie média */
.apropos-media {
    position: relative;
}

.image-container {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 32, 63, 0.1) 0%, rgba(10, 32, 63, 0.6) 100%);
    z-index: 1;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.5s ease;
}

.apropos-media:hover .image-overlay {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(135deg, #3a86ff, #8338ec);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(58, 134, 255, 0.3);
    z-index: 2;
    width: 150px;
}

.years {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    gap: 1.5rem;
}

.stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0a203f;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Partie contenu */
.apropos-content {
    padding-top: 2rem;
}

.section-subtitle {
    display: inline-block;
    color: #3a86ff;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a203f;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.apropos-text p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: rgba(58, 134, 255, 0.1);
    border-left: 4px solid #3a86ff;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
}

.highlight-box i {
    color: #3a86ff;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.highlight-box p {
    margin: 0;
    color: #0a203f;
    font-weight: 500;
}

.apropos-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.apropos-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.apropos-features i {
    color: #3a86ff;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.apropos-features span {
    color: #495057;
}

.apropos-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #3a86ff, #8338ec);
    color: white;
    box-shadow: 0 5px 20px rgba(58, 134, 255, 0.3);
}

.btn-primary:hover {
    color: #0a203f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(58, 134, 255, 0.4);
}

.btn-video {
    background: white;
    color: #0a203f;
    border: 2px solid #e9ecef;
}

.btn-video:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
}

.btn-video i {
    color: #3a86ff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.apropos-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive */
@media (max-width: 1200px) {
    .apropos-grid {
        gap: 3rem;
    }
    
    .image-container {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .apropos-grid {
        grid-template-columns: 1fr;
    }
    
    .image-container {
        height: 400px;
    }
    
    .stats-container {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .apropos {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .experience-badge {
        right: 20px;
        bottom: -20px;
        width: 120px;
        padding: 1rem;
    }
    
    .years {
        font-size: 2.2rem;
    }
    
    .apropos-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .stats-container {
        flex-direction: column;
    }
    
    .stat-item {
        padding: 1rem;
    }
}