/* Video Section */
.video-section {
    padding: 80px 20px;
    /* background: #fff; */
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.video-header {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: revealHeader 0.8s ease forwards;
}

.video-title {
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 600;
    color: #000;
    margin: 0 0 15px 0;
}

.video-subtitle {
    font-family: var(--text-font);
    font-size: 16px;
    color: #666;
    margin: 0;
}

.video-showcase {
    opacity: 0;
    transform: translateY(40px);
    animation: revealItem 0.8s ease 0.3s forwards;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

/* Play Button with Wave Effect */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 10;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-icon i {
    color: #fff;
    font-size: 36px;
    margin-left: 6px;
}

.video-play-btn:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: #c41e3a;
}

/* Wave Circles */
.wave-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid var(--accent-red);
    border-radius: 50%;
    opacity: 0;
    animation: wave 2s ease-out infinite;
}

.wave-1 {
    animation-delay: 0s;
}

.wave-2 {
    animation-delay: 0.6s;
}

.wave-3 {
    animation-delay: 1.2s;
}

@keyframes wave {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    animation: zoomIn 0.3s ease;
}

.video-modal-content video,
.video-modal-content iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
}

.video-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.video-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Video Section Mobile Responsive */
@media (max-width: 1024px) {
    .video-container {
        padding: 0 40px;
    }

    .video-thumbnail {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 60px 20px;
    }

    .video-container {
        padding: 0 30px;
    }

    .video-title {
        font-size: 32px;
    }

    .video-subtitle {
        font-size: 14px;
    }

    .video-thumbnail {
        height: 400px;
    }

    .video-play-btn {
        width: 80px;
        height: 80px;
    }

    .play-icon {
        width: 80px;
        height: 80px;
    }

    .play-icon i {
        font-size: 28px;
    }

    .wave-circle {
        width: 80px;
        height: 80px;
    }

    .video-close {
        top: -45px;
        font-size: 35px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 50px 15px;
    }

    .video-container {
        padding: 0 20px;
    }

    .video-title {
        font-size: 28px;
    }

    .video-header {
        margin-bottom: 35px;
    }

    .video-thumbnail {
        height: 300px;
        border-radius: 12px;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
    }

    .play-icon {
        width: 70px;
        height: 70px;
    }

    .play-icon i {
        font-size: 24px;
    }

    .wave-circle {
        width: 70px;
        height: 70px;
    }

    .video-modal-content {
        width: 95%;
    }

    .video-close {
        top: -40px;
        right: 0;
    }
}