/* Témoignages - Style amélioré */

/* Cartes de témoignages */
.testimonial-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--capucine-color) 0%, var(--capucine-light) 100%);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--capucine-color) 0%, var(--capucine-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.testimonial-name {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-meta {
    color: #6c757d;
    font-size: 0.875rem;
}

.testimonial-content {
    color: #495057;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: var(--capucine-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-footer {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 138, 138, 0.05) 100%);
    border-top: 1px solid rgba(255, 107, 107, 0.1);
}

.btn-capucine {
    background: linear-gradient(135deg, var(--capucine-color) 0%, var(--capucine-light) 100%);
    border: none;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-capucine:hover {
    background: linear-gradient(135deg, var(--capucine-dark) 0%, var(--capucine-color) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn-capucine-outline {
    background: transparent;
    border: 2px solid var(--capucine-color);
    color: var(--capucine-color);
    padding: 0.4rem 1.25rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-capucine-outline:hover {
    background: var(--capucine-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Page détail */
.testimonial-detail-header {
    background: linear-gradient(135deg, var(--capucine-color) 0%, var(--capucine-light) 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px 15px 0 0;
}

.testimonial-detail-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.testimonial-detail-content {
    background: white;
    padding: 2rem;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

/* Section autres témoignages */
.other-testimonials .testimonial-card {
    transform: scale(0.95);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.other-testimonials .testimonial-card:hover {
    transform: scale(1);
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .testimonial-detail-header {
        padding: 1.5rem;
    }
    
    .testimonial-detail-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}
