/* ========================================
   MODERN VIDEO SECTION 2025
   ======================================== */

/* Section Container */
.modern-video-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
    overflow: hidden;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    z-index: 2;
}

/* Video Header */
.video-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(255, 94, 21, 0.08) 0%, rgba(255, 94, 21, 0.03) 100%);
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1.5px solid rgba(255, 94, 21, 0.15);
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-icon {
    width: 36px;
    height: 36px;
    background: #ff5e15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 16px;
    color: #ffffff;
}

.badge-text {
    font-size: 13px;
    font-weight: 700;
    color: #ff5e15;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.video-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #002052;
}

.title-gradient {
    background: linear-gradient(135deg, #ff5e15 0%, #ff8a4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.title-navy {
    color: #002052;
    display: inline-block;
}

.video-description {
    font-size: 18px;
    line-height: 1.8;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Video Container */
.video-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: linear-gradient(135deg, #002052 0%, #003875 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 32, 82, 0.15),
        0 0 0 1px rgba(0, 32, 82, 0.1);
    transition: all 0.5s ease;
}

.video-frame:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 32px 80px rgba(0, 32, 82, 0.25),
        0 0 0 1px rgba(255, 94, 21, 0.3);
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

/* Subscribe Section */
.video-subscribe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 48px;
    padding: 40px 48px;
    background: linear-gradient(135deg, rgba(255, 94, 21, 0.08) 0%, rgba(255, 94, 21, 0.03) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 94, 21, 0.1);
    border: 1px solid rgba(255, 94, 21, 0.15);
    transition: all 0.3s ease;
}

.video-subscribe:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(255, 94, 21, 0.12),
        0 0 0 1px rgba(255, 94, 21, 0.2);
}

.subscribe-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.subscribe-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 36px;
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-subscribe:hover .subscribe-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(255, 0, 0, 0.4);
}

.subscribe-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: #002052;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.subscribe-text p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.subscribe-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    border-radius: 100px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-button:hover {
    gap: 16px;
    background: white;
    color: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 0, 0, 0.4);
}

.subscribe-button i {
    font-size: 20px;
}

.subscribe-button svg {
    transition: transform 0.3s ease;
}

.subscribe-button:hover svg {
    transform: translateX(4px);
}

/* Background Decoration */
.video-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 94, 21, 0.08) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 32, 82, 0.06) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(30px, 30px) scale(1.05);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .video-subscribe {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }
    
    .subscribe-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .modern-video-section {
        padding: 80px 0;
    }

    .video-title {
        font-size: 36px;
    }

    .video-description {
        font-size: 16px;
    }

    .video-frame {
        border-radius: 16px;
    }

    .video-subscribe {
        padding: 24px;
        margin-top: 32px;
    }
    
    .subscribe-icon {
        width: 64px;
        height: 64px;
        font-size: 32px;
    }
    
    .subscribe-text h3 {
        font-size: 20px;
    }
    
    .subscribe-text p {
        font-size: 14px;
    }
    
    .subscribe-button {
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .modern-video-section {
        padding: 60px 0;
    }

    .video-header {
        margin-bottom: 40px;
    }

    .video-title {
        font-size: 28px;
    }

    .video-description {
        font-size: 15px;
    }

    .video-frame {
        border-radius: 12px;
    }

    .subscribe-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    
    .subscribe-text h3 {
        font-size: 18px;
    }
    
    .subscribe-text p {
        font-size: 13px;
    }
    
    .subscribe-button {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 15px;
    }
}
