#adaTestimonial {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #2c2c3e 100%);
}

#adaTestimonial .testimonials-wrapper {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

#adaTestimonial .testimonials-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--app-light-blue), var(--app-medium-blue), var(--app-dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    padding: 0 20px;
}

#adaTestimonial .testimonials-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    max-width: none;
    margin: 0;
}

#adaTestimonial .testimonials-grid {
    display: flex;
    gap: 2rem;
    width: max-content;
    /* Animation sera appliquée dynamiquement par JavaScript */
}

/* ANIMATIONS DYNAMIQUES - Gérées par JavaScript */
/* Les keyframes sont créées automatiquement selon le nombre de cartes */

#adaTestimonial .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(var(--app-light-blue-rgb), 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 370px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

#adaTestimonial .testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--app-light-blue-rgb), 0.4);
    box-shadow: 0 10px 30px rgba(var(--app-light-blue-rgb), 0.1);
}

#adaTestimonial .testimonial-quote {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: auto;
    color: #e0e0e0;
    flex-grow: 1;
}

#adaTestimonial .testimonial-footer {
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(var(--app-light-blue-rgb), 0.2);
}

#adaTestimonial .testimonial-author {
    font-weight: bold;
    color: var(--app-light-blue);
    margin-bottom: 0.5rem;
}

#adaTestimonial .testimonial-company {
    color: #888;
    font-size: 0.9rem;
}

#adaTestimonial .testimonial-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

#adaTestimonial .testimonial-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    #adaTestimonial .testimonials-section-title {
        font-size: 2rem;
    }

    #adaTestimonial .testimonials-grid {
        margin: 0;
    }

    #adaTestimonial .testimonial-card {
        width: 300px;
        padding: 1.5rem;
        min-height: 250px;
    }

    #adaTestimonial .testimonial-quote {
        font-size: 0.8rem;
    }

    #adaTestimonial .testimonial-company {
        font-size: 0.8rem;
    }

    #adaTestimonial .testimonial-author {
        font-size: 0.8rem;
    }
}