/* Section Partenaires - ETS PERDOUX */

/* Amélioration du carousel des logos partenaires */
.clients-carousel {
    padding: 20px 0;
}

.clients-carousel .polo-carousel-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px 30px;
    min-height: 120px;
}

.clients-carousel .polo-carousel-item img {
    max-height: 80px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.clients-carousel .polo-carousel-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Ajustement responsive */
@media (max-width: 1199px) {
    .clients-carousel .polo-carousel-item img {
        max-height: 70px;
        max-width: 150px;
    }
}

@media (max-width: 991px) {
    .clients-carousel .polo-carousel-item img {
        max-height: 60px;
        max-width: 130px;
    }
}

@media (max-width: 767px) {
    .clients-carousel .polo-carousel-item {
        padding: 15px 20px;
        min-height: 100px;
    }

    .clients-carousel .polo-carousel-item img {
        max-height: 50px;
        max-width: 110px;
    }
}

/* Logos partenaires sur mobile */
@media (max-width: 767px) {
    .client-logos img {
        max-height: 28px !important;
        max-width: 65px !important;
        width: auto !important;
        object-fit: contain;
    }
}

/* Animation des logos au chargement */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.7;
        transform: translateY(0);
    }
}

.clients-carousel .polo-carousel-item {
    animation: fadeInUp 0.6s ease forwards;
}

.clients-carousel .polo-carousel-item:nth-child(1) { animation-delay: 0.1s; }
.clients-carousel .polo-carousel-item:nth-child(2) { animation-delay: 0.2s; }
.clients-carousel .polo-carousel-item:nth-child(3) { animation-delay: 0.3s; }
.clients-carousel .polo-carousel-item:nth-child(4) { animation-delay: 0.4s; }
.clients-carousel .polo-carousel-item:nth-child(5) { animation-delay: 0.5s; }
.clients-carousel .polo-carousel-item:nth-child(6) { animation-delay: 0.6s; }
