/* ==========================================
   SECTION AVIS - FOCUS CARROUSEL (CORRIGÉ)
   ========================================== */

.reviews-wrapper-bg {
    position: relative !important;
    padding: 100px 0 !important;
    background-color: #001523 !important; /* Fond de secours */
    background-image: url('image-avis.png') !important; /* Ton image de fond */
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    overflow: hidden !important;
    width: 100% !important;
}

/* Overlay sombre pour détacher la section du reste du site */
.reviews-wrapper-bg::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 15, 35, 0.8) !important; 
    z-index: 1;
}

.reviews-wrapper-bg .section-title, 
.reviews-wrapper-bg .carousel-viewport {
    position: relative;
    z-index: 2;
}

.reviews-wrapper-bg .section-title h2 {
    color: #ffffff !important;
    text-align: center;
    margin-bottom: 40px;
    font-size: 42px;
    font-weight: 800;
}

/* Conteneur du carrousel */
.carousel-viewport {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- LA CARTE D'AVIS --- */
.review-card {
    min-width: 450px;
    width: 450px;
    background: #ffffff;
    border-radius: 20px;
    padding: 45px;
    margin: 0 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    text-align: center;
    transition: all 0.8s ease;
    box-sizing: border-box;
    
    /* ÉTAT PAR DÉFAUT (Côtés) : On augmente un peu l'opacité pour qu'on les devine mieux */
    opacity: 0.35;
    filter: grayscale(100%) blur(1px);
    transform: scale(0.8);
}

/* --- ÉTAT FOCUS (Milieu) : L'opacité est à 100% et le texte est sombre sur fond blanc --- */
.review-card.active {
    opacity: 1 !important;
    filter: grayscale(0%) blur(0) !important;
    transform: scale(1.1) !important;
    background: #ffffff !important; /* Blanc pur pour le contraste */
    border-bottom: 8px solid #0056b3;
}

.review-stars {
    color: #f1c40f;
    font-size: 26px;
    margin-bottom: 20px;
}

/* Texte du commentaire : Couleur sombre pour une lisibilité maximale */
.review-comment {
    font-size: 18px;
    line-height: 1.6;
    color: #1a1a1a !important; /* Presque noir */
    font-style: italic;
    margin-bottom: 30px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nom du client */
.review-client {
    font-weight: 800;
    color: #00234b !important; /* Bleu marine MJD */
    font-size: 15px;
    border-top: 1px solid #eeeeee;
    padding-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive pour mobiles */
@media (max-width: 768px) {
    .review-card {
        min-width: 300px;
        width: 300px;
        margin: 0 15px;
        padding: 30px;
    }
}