/* ============================================
   VIDEO SECTION STYLES - MIGRATIVE PARTNERS
   Video Placeholder, Play Button, Process Steps
   ============================================ */

/* Video Section */
.video-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(0, 255, 170, 0.1);
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse 120% 80% at 50% 50%,
        rgba(10, 11, 26, 0.8) 0%,
        rgba(0, 255, 170, 0.01) 40%,
        var(--bg-primary) 80%
    );
    pointer-events: none;
    z-index: 1;
}

.video-section .container {
    position: relative;
    z-index: 2;
}

.video-section h2 {
    font-size: clamp(var(--text-4xl), 6vw, var(--text-5xl));
    font-weight: var(--font-black);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(
        180deg, 
        var(--white) 0%, 
        rgba(255, 255, 255, 0.9) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.video-subtitle {
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    color: var(--gray-light);
    margin-bottom: var(--spacing-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: var(--font-light);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.process-steps {
    display: block;
    margin-top: var(--spacing-sm);
    font-weight: var(--font-semibold);
    color: var(--neon-green);
    letter-spacing: var(--tracking-wider);
    font-size: var(--text-lg);
    text-transform: uppercase;
}

/* Video Container */
.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 255, 170, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    transition: all var(--transition-base);
}

.video-container:hover {
    border-color: rgba(0, 255, 170, 0.4);
    box-shadow: 0 25px 80px rgba(0, 255, 170, 0.1);
    transform: translateY(-5px);
}

/* Video Placeholder */
.video-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(
        135deg, 
        rgba(244, 140, 6, 0.1) 0%, 
        rgba(0, 255, 170, 0.1) 50%,
        rgba(20, 51, 76, 0.1) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(0, 255, 170, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

/* Play Button */
.play-button {
    width: 100px;
    height: 100px;
    background: var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 255, 170, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(0, 255, 170, 0.5);
    background: var(--neon-green-dark);
}

.play-button:active {
    transform: scale(0.95);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid var(--bg-primary);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

/* Video Text */
.video-text {
    color: var(--gray-light);
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-wide);
    position: relative;
    z-index: 3;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .video-section {
        padding: var(--spacing-2xl) 0;
    }
    
    .video-container {
        max-width: 95%;
        margin: 0 auto;
    }
    
    .video-placeholder {
        height: 400px;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
    }
    
    .play-button::after {
        border-left: 20px solid var(--bg-primary);
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .video-section {
        padding: var(--spacing-xl) 0;
    }
    
    .video-section h2 {
        font-size: clamp(var(--text-3xl), 8vw, var(--text-4xl));
        margin-bottom: var(--spacing-md);
    }
    
    .video-subtitle {
        font-size: var(--text-lg);
        margin-bottom: var(--spacing-xl);
        padding: 0 var(--spacing-md);
    }
    
    .process-steps {
        font-size: var(--text-base);
        margin-top: var(--spacing-xs);
    }
    
    .video-container {
        margin: 0 var(--spacing-md);
        border-radius: var(--radius-lg);
    }
    
    .video-placeholder {
        height: 300px;
        gap: var(--spacing-md);
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-button::after {
        border-left: 18px solid var(--bg-primary);
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }
    
    .video-text {
        font-size: var(--text-base);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .video-subtitle {
        font-size: var(--text-base);
    }
    
    .process-steps {
        font-size: var(--text-sm);
    }
    
    .video-placeholder {
        height: 250px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button::after {
        border-left: 15px solid var(--bg-primary);
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .video-container,
    .process-steps,
    .video-placeholder::before {
        animation: none;
    }
    
    .play-button:hover {
        transform: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .video-container {
        border-width: 2px;
    }
    
    .play-button {
        border: 2px solid var(--bg-primary);
    }
    
    .video-section h2 {
        -webkit-text-stroke: 1px var(--white);
    }
}