/* ============================================
   VIDEO TESTIMONIALS STYLES
   ============================================ */

.video-testimonials-container {
    margin-bottom: 4rem;
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-testimonial-card {
    background: var(--bg-dark-sec);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.video-testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 92, 45, 0.2);
}

.video-wrapper-testimonial {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-overlay-testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-testimonial-card:hover .video-play-overlay-testimonial {
    background: rgba(0, 0, 0, 0.6);
}

.testimonial-video:not([data-playing])~.video-play-overlay-testimonial {
    opacity: 1;
}

.testimonial-video[data-playing]~.video-play-overlay-testimonial {
    opacity: 0;
}

.play-btn-testimonial {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--neon-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 92, 45, 0.4);
    pointer-events: all;
}

.play-btn-testimonial:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 92, 45, 0.6);
}

.play-btn-testimonial i {
    color: white;
    font-size: 1.5rem;
    margin-left: 4px;
}

.video-testimonial-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.video-testimonial-info strong {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.video-testimonial-info span {
    color: var(--gray-medium);
    font-size: 0.85rem;
}

/* Navigation Dots (Hidden on Desktop) */
.video-testimonials-dots {
    display: none;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.video-testimonials-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-testimonials-dots .dot.active {
    background: var(--primary-orange);
    width: 30px;
    border-radius: 5px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .video-testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 1rem;
        padding: 0 1rem;
        margin: 0 -1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .video-testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .video-testimonial-card {
        flex: 0 0 90%;
        scroll-snap-align: center;
    }

    .video-testimonials-dots {
        display: flex;
    }

    .play-btn-testimonial {
        width: 60px;
        height: 60px;
    }

    .play-btn-testimonial i {
        font-size: 1.3rem;
    }

    .video-testimonial-info {
        padding: 1rem;
    }

    .video-testimonial-info strong {
        font-size: 0.95rem;
    }

    .video-testimonial-info span {
        font-size: 0.8rem;
    }
}