.video_section {
    position: relative;

    & .video_banner_wrapper {
        position: relative;
        width: 100%;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        
        @media (max-width: 991px) {
            min-height: 500px;
        }
    }
    
    & .video_banner_image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        
        & img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
    }
    
    & .video_banner_cover {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(1 23 44 / 69%);
        z-index: 2;
    }
    
    & .video_banner_content {
        position: relative;
        z-index: 3;
        color: #fff;
        max-width: 1200px;
        width: 100%;
        padding: 60px 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: clamp(40px, 6vw, 80px);

        @media (max-width: 991px) {
            flex-direction: column-reverse;
            align-items: stretch;
            text-align: left;
            padding: 40px 20px;
            gap: 30px;
        }
    }
    
    & .video_banner_left {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    & .video_banner_right {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: flex-end;

        @media (max-width: 991px) {
            justify-content: flex-start;
        }
    }

    & .video_banner_title {
        font-size: clamp(32px, 5vw, 56px);
        font-weight: 700;
        color: #fff;
        margin: 0 0 20px 0;
        line-height: 1.2;
        text-align: left;

        @media (max-width: 991px) {
            margin-bottom: 16px;
        }
    }

    & .video_banner_description {
        font-size: clamp(16px, 2vw, 20px);
        line-height: 1.6;
        color: #fff;
        margin: 0;
        max-width: 600px;
        text-align: left;

        @media (max-width: 991px) {
            max-width: 100%;
        }

        & p {
            margin: 0;
            color: inherit;
        }
    }
    
    & .video_play_button {
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        transition: transform 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        
        &:hover {
            transform: scale(1.1);
        }
        
        &:focus {
            outline: 2px solid #fff;
            outline-offset: 4px;
        }
        
        & svg {
            width: 110px;
            height: 110px;
            display: block;
            
            @media (max-width: 991px) {
                width: 90px;
                height: 90px;
            }
            
            @media (max-width: 768px) {
                width: 80px;
                height: 80px;
            }
        }
    }
    
    /* Video Lightbox */
    & .video_lightbox {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(4px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        z-index: 10000;
    }
    
    & .video_lightbox[hidden] {
        display: none;
    }
    
    & .video_lightbox_inner {
        position: relative;
        max-width: min(1200px, 90vw);
        width: 100%;
    }
    
    & .video_lightbox_content {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
        background: #000;
        border-radius: 8px;
        
        & iframe,
        & video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
    }
    
    & .video_lightbox_close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: none;
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        font-size: 32px;
        line-height: 1;
        cursor: pointer;
        transition: background 0.2s ease;
        z-index: 10001;
        display: flex;
        align-items: center;
        justify-content: center;
        
        &:hover,
        &:focus {
            background: rgba(255, 255, 255, 0.3);
            outline: 2px solid #fff;
            outline-offset: 2px;
        }
    }
}

html.video-lightbox-lock,
html.video-lightbox-lock body {
    overflow: hidden;
}

@media (max-width: 768px) {
    .video_section {
        & .video_lightbox_content {
            padding-bottom: 75%; /* Taller on mobile */
        }
        
        & .video_lightbox_close {
            top: 10px;
            right: 10px;
            width: 40px;
            height: 40px;
            font-size: 28px;
        }
    }
}
