/* ============================================
   TESTIMONIALS SECTION - Section Témoignages
   Section complète pour afficher témoignages utilisateurs
   ============================================ */

.testimonials-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.testimonials-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.testimonials-section .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: left;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    font-size: 4rem;
    color: #7c3aed;
    opacity: 0.15;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #1e293b;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-text strong {
    color: #7c3aed;
    font-weight: 700;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f1f5f9;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.author-info h4 {
    color: #1e293b;
    font-size: 1.3rem;
    margin: 0 0 0.3rem 0;
    font-weight: 600;
}

.author-info p {
    color: #64748b;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
}

.tipeee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffedd5;
    color: #9a3412;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.3rem;
}

.tipeee-badge i {
    color: #ea580c;
}

/* Responsive Tablet */
@media (max-width: 1024px) {
    .testimonials-section {
        padding: 4rem 1.5rem;
    }

    .testimonials-section h2 {
        font-size: 2.2rem;
    }

    .testimonial-card {
        padding: 2.5rem;
    }

    .testimonial-text {
        font-size: 1.15rem;
    }
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }

    .testimonials-section h2 {
        font-size: 1.8rem;
    }

    .testimonials-section .subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
        border-radius: 15px;
    }

    .quote-icon {
        font-size: 3rem;
        top: -10px;
        left: 20px;
    }

    .testimonial-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .author-info h4 {
        font-size: 1.15rem;
    }

    .author-info p {
        font-size: 0.95rem;
    }

    .tipeee-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.9rem;
    }
}

/* Responsive Small Mobile */
@media (max-width: 480px) {
    .testimonials-section {
        padding: 2.5rem 0.8rem;
    }

    .testimonials-section h2 {
        font-size: 1.6rem;
    }

    .testimonials-section .subtitle {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .quote-icon {
        font-size: 2.5rem;
        left: 15px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .author-avatar {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .author-info h4 {
        font-size: 1.1rem;
    }

    .author-info p {
        font-size: 0.9rem;
    }

    .tipeee-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.8rem;
    }
}
