/* Video Testimonials Section styling (White Background Theme) */
.video-testimonials-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.video-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.01) 0%, transparent 80%);
    pointer-events: none;
}

.reels-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.reel-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.reel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.12);
}

.reel-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.77%; /* 9:16 Aspect Ratio */
    background: #000;
}

.reel-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.reel-info {
    padding: 15px 20px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.reel-title {
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.reel-card:hover .reel-title {
    color: #000000;
}

.reel-subtitle {
    color: #777777;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Responsive design */
@media (max-width: 1200px) {
    .reels-container {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .reels-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .video-testimonials-section {
        padding: 60px 0 40px;
    }
    
    .reels-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 10px 15px 25px;
        margin-left: -15px;
        margin-right: -15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide default scrollbar on Firefox */
    }
    
    .reels-container::-webkit-scrollbar {
        display: none; /* Hide default scrollbar on Chrome/Safari */
    }
    
    .reel-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
    }
}
