/* ═══════════════════════════════════════════════════════════
   EDUWEB — Section Témoignages Apprenants
   Thème Gradiant | Charte graphique EduWeb v2.0
   Vert #3aaf7f · Orange #f5a623 · Sombre #2d3e36
═══════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────
   SECTION WRAPPER
──────────────────────────────────────── */
.eduweb-testimonials-section {
    background: linear-gradient(175deg, #ffffff 0%, #f6fbf8 55%, #eaf7f1 100%);
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}

/* Guillemet géant décoratif en fond */
.eduweb-testi-bg-quote {
    position: absolute;
    top: -40px;
    right: 5%;
    font-size: 28rem;
    font-family: Georgia, serif;
    color: rgba(58, 175, 127, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* Ligne colorée en haut */
.eduweb-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f5a623, #3aaf7f, #f5a623);
    background-size: 200% 100%;
    animation: eduweb-gradient-move 4s linear infinite;
}

/* ────────────────────────────────────────
   EN-TÊTE DE SECTION
──────────────────────────────────────── */
.eduweb-testi-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}
.eduweb-testi-header .eduweb-section-sub {
    margin: 0.75rem auto 1.75rem;
}

/* Note globale */
.eduweb-testi-global-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border: 1px solid rgba(58, 175, 127, 0.2);
    border-radius: 100px;
    padding: 0.5rem 1.4rem;
    box-shadow: 0 4px 16px rgba(58, 175, 127, 0.10);
}
.eduweb-testi-stars-row {
    display: flex;
    gap: 2px;
}
.eduweb-star {
    font-size: 1.05rem;
    line-height: 1;
}
.eduweb-star.filled  { color: #f5a623; }
.eduweb-star.empty   { color: #ddd; }
.eduweb-testi-rating-text {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #5a6660;
}
.eduweb-testi-rating-text strong {
    color: #1a1f1c;
    font-weight: 800;
}

/* ────────────────────────────────────────
   CARROUSEL WRAPPER
──────────────────────────────────────── */
.eduweb-testi-carousel-wrapper {
    position: relative;
    padding: 0 52px;
    z-index: 1;
}

.eduweb-testi-track-outer {
    overflow: hidden;
    border-radius: 0;
}

.eduweb-testi-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    align-items: stretch;
}

/* ────────────────────────────────────────
   CARTE TÉMOIGNAGE
──────────────────────────────────────── */
.eduweb-testi-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: calc(33.333% - 1rem);
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 8px 40px rgba(26, 31, 28, 0.07);
    border: 1px solid rgba(58, 175, 127, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}
.eduweb-testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(58, 175, 127, 0.14);
    border-color: rgba(58, 175, 127, 0.25);
}

@media (max-width: 960px) {
    .eduweb-testi-card {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: calc(50% - 0.75rem);
    }
}
@media (max-width: 580px) {
    .eduweb-testi-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    .eduweb-testi-carousel-wrapper { padding: 0 40px; }
}

/* Icône guillemet */
.eduweb-testi-quote-icon {
    color: rgba(58, 175, 127, 0.18);
    margin-bottom: 1rem;
    flex-shrink: 0;
}

/* Texte */
.eduweb-testi-text {
    font-size: 0.9rem;
    color: #3a4440;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin: 0 0 1.1rem;
    border: none;
    padding: 0;
}

/* Cours suivi */
.eduweb-testi-course {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #3aaf7f;
    background: #eaf7f1;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1.1rem;
    align-self: flex-start;
}
.eduweb-testi-course svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* Séparateur */
.eduweb-testi-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(58,175,127,0.2), transparent);
    margin-bottom: 1.1rem;
}

/* Zone auteur */
.eduweb-testi-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

/* Avatar */
.eduweb-testi-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}
.eduweb-testi-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eaf7f1;
}
.eduweb-testi-avatar-emoji {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eaf7f1, #d0efdf);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    line-height: 1;
}

/* Badge vérifié */
.eduweb-testi-verified {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #3aaf7f;
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.58rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #ffffff;
}

/* Infos auteur */
.eduweb-testi-author-info {
    flex: 1;
    min-width: 0;
}
.eduweb-testi-author-name {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: #1a1f1c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.eduweb-testi-author-meta {
    font-size: 0.75rem;
    color: #8fa39b;
    margin-top: 0.15rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}
.eduweb-testi-country-sep { color: #c0ddd0; }
.eduweb-testi-country {
    color: #5a6660;
    font-weight: 500;
}

/* Étoiles auteur */
.eduweb-testi-stars {
    display: flex;
    gap: 1px;
    margin-left: auto;
    flex-shrink: 0;
}
.eduweb-testi-stars .eduweb-star { font-size: 0.85rem; }

/* ────────────────────────────────────────
   BOUTONS NAVIGATION
──────────────────────────────────────── */
.eduweb-testi-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #1a1f1c;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(26, 31, 28, 0.12);
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.eduweb-testi-btn:hover {
    background: #3aaf7f;
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 24px rgba(58, 175, 127, 0.30);
}
.eduweb-testi-btn:disabled {
    opacity: 0.3;
    pointer-events: none;
}
.eduweb-testi-btn.prev { left: 0; }
.eduweb-testi-btn.next { right: 0; }

/* ────────────────────────────────────────
   DOTS DE NAVIGATION
──────────────────────────────────────── */
.eduweb-testi-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    z-index: 1;
    position: relative;
}
.eduweb-testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: #c0ddd0;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: width 0.3s ease, background 0.3s ease;
}
.eduweb-testi-dot.active {
    width: 28px;
    background: linear-gradient(90deg, #3aaf7f, #1e7d55);
}
.eduweb-testi-dot:hover:not(.active) { background: #5cc99a; }

/* ────────────────────────────────────────
   CTA BAS DE SECTION
──────────────────────────────────────── */
.eduweb-testi-cta {
    text-align: center;
    margin-top: 3.5rem;
    position: relative;
    z-index: 1;
}
.eduweb-testi-cta p {
    font-size: 1rem;
    color: #5a6660;
    margin-bottom: 1rem;
}
.eduweb-testi-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f5a623, #d4891a);
    color: #ffffff;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.30);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.eduweb-testi-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 166, 35, 0.42);
    color: #ffffff;
    text-decoration: none;
}
