/* Section partenaires */
.wpo-partners-section {
    padding: clamp(80px, 10vw, 120px) 0px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFB 100%);
    text-align: center;
    position: relative;
}

.wpo-partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F05A22 0%, #377992 100%);
}

.mt-10 {
    margin-top: 4%;
}

.wpo-partners-section .partners-header h2,
.wpo-partners-section .partners-header h3 {
    display: block;
    margin: 0 auto;
    line-height: 1.2;
}

/* Titres fluides avec clamp() */
.wpo-partners-section .partners-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-top: 3%;
    margin-bottom: 25px;
    color: #F05A22 !important;
    text-shadow: 0 2px 8px rgba(55, 121, 146, 0.15);
    position: relative;
}

.wpo-partners-section .partners-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F05A22, #377992);
    border-radius: 2px;
}

.wpo-partners-section .partners-header h3 {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    font-weight: 500;
    margin-bottom: 20px;
    color: #F05A22;
}

.wpo-partners-section .partners-header p.partners-desc {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #F05A22;
    font-weight: 400;
    max-width: 850px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Animation texte - apparition dynamique */
.animated-text {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: fadeInUpScale 1s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animated-text.delay-1 {
    animation-delay: 0.2s;
}

.animated-text.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUpScale {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animation description avec effet slide */
.partners-desc-animated {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInFromLeft 1s forwards ease-out;
    animation-delay: 0.6s;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Ticker partenaires */
.partner-ticker {
    overflow: hidden;
    width: 100%;
    background: #FFFFFF;
    padding: 30px 0;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(55, 121, 146, 0.08);
}

.ticker-track {
    display: flex;
    gap: clamp(40px, 6vw, 60px);
    width: max-content;
    animation: tickerMove 50s linear infinite;
}

/* Pause l'animation au survol d'une image */
.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-track img {
    height: clamp(50px, 9vw, 80px);
    object-fit: contain;
    display: block;
    transition: all 0.4s ease;
    filter: grayscale(100%) opacity(0.7);
}

.ticker-track img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.15);
}

@keyframes tickerMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-track img {
    height: 80px;
    width: 160px;
    object-fit: contain;

    padding: 12px;
    background: white;
    border: 1px solid #0c778d;
    border-radius: 10px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.ticker-track img:hover {
    transform: scale(1.08);
    filter: grayscale(0%);
}
