/* Testimonials Section V2 - Design Moderne */

.testimonials-section-v2 {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-five) 0%, var(--color-six) 100%);
    overflow: hidden;
}

.testimonials-section-v2 .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.testimonials-section-v2 .auto-container {
    position: relative;
    z-index: 2;
}

/* Titre */
.testimonials-section-v2 .title-box {
    margin-bottom: 60px;
}

.testimonials-section-v2 .subtitle {
    font-size: 16px;
    color: var(--color-one);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.testimonials-section-v2 h2 {
    font-size: 48px;
    color: white;
    font-family: var(--font-family-TheSeasons);
    font-weight: 700;
    margin: 0;
}

/* Statistiques */
.testimonials-section-v2 .stats-box {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonials-section-v2 .stats-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonials-section-v2 .stats-box .value {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-one);
    margin-bottom: 10px;
    font-family: var(--font-family-TheSeasons);
}

.testimonials-section-v2 .stats-box .label {
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Carousel */
.testimonials-carousel-wrapper {
    position: relative;
    padding: 40px 0;
}

.testimonials-main-carousel {
    margin-bottom: 30px;
}

.testimonial-item {
    padding: 0 20px;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-one), var(--color-two));
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    font-size: 48px;
    color: var(--color-one);
    margin-bottom: 30px;
    opacity: 0.7;
}

.testimonial-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 30px 0;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-one);
    margin-bottom: 5px;
    font-family: var(--font-family-TheSeasons);
}

.author-date {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    font-size: 16px;
    color: #ffc107;
}

/* Note Google */
.rating-box {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.rating-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.google-rating .rating-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-one);
    margin-bottom: 10px;
    font-family: var(--font-family-TheSeasons);
}

.google-rating .rating-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.google-rating .rating-stars i {
    font-size: 20px;
    color: #ffc107;
}

.google-rating .rating-label {
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Navigation dots */
.carousel-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-dots {
    display: inline-flex;
    gap: 10px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.owl-dot.active,
.owl-dot:hover {
    background: var(--color-one);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .testimonials-section-v2 h2 {
        font-size: 40px;
    }
    
    .testimonial-content {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .testimonials-section-v2 {
        padding: 80px 0;
    }
    
    .testimonials-section-v2 h2 {
        font-size: 32px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-text p {
        font-size: 16px;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
    
    .stats-box,
    .rating-box {
        padding: 30px 15px;
    }
    
    .stats-box .value,
    .google-rating .rating-value {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .testimonials-section-v2 h2 {
        font-size: 28px;
    }
    
    .testimonial-content {
        padding: 25px 15px;
    }
    
    .quote-icon {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .testimonial-text p {
        font-size: 15px;
    }
}
