/* --- SocialFormula | Video Testimonials Component --- */
:root {
    --vid-dark: #0F172A;
    --vid-gray: #64748B;
    --vid-white: #FFFFFF;
    --grad-cyan-blue: linear-gradient(135deg, #00B4D8 0%, #0077b6 100%);
    --grad-play: rgba(255, 255, 255, 0.2);
}

.video-section { padding: 100px 0; background: #F8FAFC; position: relative; overflow: hidden; }
.vid-bg-glow { position: absolute; top: 50%; left: 0; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(0, 180, 216, 0.04) 0%, transparent 70%); pointer-events: none; z-index: 0; }
.vid-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
.v-header { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.v-label { display: inline-block; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: #00B4D8; margin-bottom: 15px; background: rgba(0, 180, 216, 0.1); padding: 6px 16px; border-radius: 50px; }
.v-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 42px; font-weight: 800; color: var(--vid-dark); margin-bottom: 15px; }
.v-subtitle { font-size: 18px; color: var(--vid-gray); line-height: 1.6; }
.v-card { background: var(--vid-white); border-radius: 24px; overflow: hidden; border: 1px solid #F1F5F9; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: 0 10px 30px rgba(0,0,0,0.03); height: 100%; }
.v-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px -10px rgba(0, 180, 216, 0.15); border-color: #00B4D8; }
.v-thumb { position: relative; width: 100%; padding-top: 130%; overflow: hidden; background-color: #E2E8F0; }
.v-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.v-card:hover .v-img { transform: scale(1.05); }
.v-play-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%); display: flex; align-items: center; justify-content: center; opacity: 1; transition: 0.3s; }
.v-play-btn { width: 60px; height: 60px; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.v-card:hover .v-play-btn { transform: scale(1.15); background: white; color: #00B4D8; }
.v-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; z-index: 2; }
.v-user-row { display: flex; align-items: center; gap: 12px; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); padding: 10px 14px; border-radius: 16px; width: fit-content; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.v-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.v-meta { display: flex; flex-direction: column; }
.v-name { font-weight: 800; font-size: 13px; color: var(--vid-dark); font-family: 'Plus Jakarta Sans', sans-serif; }
.v-handle { font-size: 11px; color: var(--vid-gray); }
.v-nav-btn { position: absolute; top: 55%; transform: translateY(-50%); width: 50px; height: 50px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 1px solid #F1F5F9; cursor: pointer; z-index: 10; color: var(--vid-dark); transition: 0.3s; }
.v-nav-btn:hover { background: var(--vid-dark); color: white; transform: translateY(-50%) scale(1.1); }
.v-prev { left: -25px; }
.v-next { right: -25px; }

@media (max-width: 1300px) { .v-nav-btn { display: none; } }
@media (max-width: 768px) { .v-title { font-size: 32px; } .v-thumb { padding-top: 100%; } }