/* ===================================
   TESTIMONIALS FIX - Add this to the END of your style.css
   =================================== */

/* Force testimonials to display in proper grid */
.testimonials-section {
    padding: 6rem 0;
    background: #121212;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(46, 156, 219, 0.1);
    transition: 0.4s ease;
    max-width: 400px !important;
    margin: 0 auto;
}

.testimonial-video {
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 500px !important;
    background: #000;
    position: relative;
    overflow: hidden;
}

.testimonial-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-video {
        max-height: 600px !important;
    }
}