/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials {
    background: var(--blue-900);
}

.testimonials .section-title {
    color: white;
}

.testimonials .section-desc {
    color: var(--blue-100);
}

.testimonials .section-tag {
    color: var(--blue-200);
}

/* =========================
   WRAPPER SLIDER
========================= */

.testi-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 56px;
}

/* =========================
   SLIDER
========================= */

.testi-slider {
    display: flex;
    gap: 20px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;

    width: 100%;
    padding: 10px 0;
}

.testi-slider::-webkit-scrollbar {
    display: none;
}

/* =========================
   CARD SYSTEM (UNIFIÉ)
========================= */

.testi-card {
    flex: 0 0 320px;

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 28px;

    transition: all 0.25s ease;
}

/* hover harmonisé avec système global */
.testi-card:hover {
    transform: translateY(-6px);
    border-color: rgba(133,183,235,0.5);
    background: rgba(255,255,255,0.08);
}

/* =========================
   CONTENT
========================= */

.testi-stars {
    color: #FFC107;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    margin-bottom: 24px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-200));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
}

.testi-name {
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.testi-role {
    font-size: 12px;
    color: var(--blue-100);
}

/* =========================
   NAV BUTTONS (ISOLÉ)
========================= */

.testimonials .slider-btn {
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;

    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
}

.testimonials .slider-btn.left {
    left: -10px;
}

.testimonials .slider-btn.right {
    right: -10px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .testi-card {
        flex: 0 0 85%;
    }

    .testimonials .slider-btn {
        display: none;
    }
}