/* =================================================================
   TESTIMONIALS SECTION
   ================================================================= */

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
}

/* ===== TESTIMONIAL CARD ===== */

.testimonial {
    padding: 40px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    direction: rtl;
    unicode-bidi: embed;
}

/* Stars */
.testimonial__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
    color: #fbbf24;
    font-size: 18px;
}

/* Quote */
.testimonial__quote {
    font-size: 16px;
    line-height: 2.2;
    color: #d4d4d4;
    margin-bottom: 30px;
    padding: 0 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    text-align: center;
    direction: rtl;
    unicode-bidi: embed;
    font-family: 'Tajawal', 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    letter-spacing: 0 !important;
    text-transform: none !important;
    font-style: normal;
}

/* Author */
.testimonial__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.testimonial__author-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    font-family: 'Tajawal', 'Cairo', sans-serif;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.testimonial__author-company {
    font-size: 14px;
    color: #737373;
    margin: 0;
    font-family: 'Tajawal', 'Cairo', sans-serif;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .testimonials-carousel {
        max-width: 100%;
    }

    .testimonial {
        padding: 30px 20px;
    }

    .testimonial__quote {
        font-size: 15px;
        line-height: 2;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .testimonial {
        padding: 24px 16px;
    }

    .testimonial__quote {
        font-size: 14px;
    }
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.video-modal--active {
    display: flex;
}

.video-modal__content {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
}

.video-modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

.video-modal__iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}