/* Video Testimonials Section */
.testimonials-section {
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-title {
    text-align: center;
    margin-bottom: 16px;
}

.testimonials-subtitle {
    max-width: 500px;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    justify-content: center;
}

.video-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(10, 10, 12, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 12px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: rgba(40, 243, 106, 0.3);
    box-shadow: 0 25px 50px -20px rgba(40, 243, 106, 0.15);
}

/* 9:16 Aspect Ratio Wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.77%; /* 16:9 Vertical Aspect Ratio */
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.testimonial-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.video-caption {
    margin-top: 16px;
    text-align: center;
    padding-bottom: 4px;
}

.video-client-name {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
}