/* Styles pour la page témoignages */

/* HERO SECTION */
.page-hero {
    background-color: #1E3A8A;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* TESTIMONIALS SECTION */
.testimonials-main {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-intro h2 {
    color: #1E3A8A;
    font-size: 32px;
    margin-bottom: 20px;
}

.section-intro p {
    font-size: 18px;
    color: #555;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.testimonial-rating {
    color: #ffba08;
}

.testimonial-content {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-metadata {
    font-size: 14px;
    color: #777;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-metadata span {
    display: inline-block;
}

/* VIDEO TESTIMONIALS */
.video-testimonials {
    padding: 80px 0;
}

.video-testimonials h2 {
    text-align: center;
    color: #1E3A8A;
    font-size: 32px;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.video-testimonial {
    margin-bottom: 20px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.video-testimonial h3 {
    font-size: 18px;
    color: #333;
    text-align: center;
}

/* RESULTS DISCLAIMER */
.results-disclaimer {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.disclaimer-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.disclaimer-box h3 {
    font-size: 20px;
    color: #1E3A8A;
    margin-bottom: 15px;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* CTA SECTION */
.cta-section {
    background-color: #1E3A8A;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #fff;
    color: #1E3A8A;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        padding: 60px 0;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .btn-primary, .btn-outline {
        width: 100%;
        margin-bottom: 10px;
    }
}
