/* Video Section Styling */
.video-section {
    background: #fff;
    padding: 100px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Reverse layout for alternating sections */
.video-grid.reverse {
    grid-template-columns: 1.2fr 1fr;
    direction: rtl;
    /* Trick to swap columns visually */
}

.video-grid.reverse>* {
    direction: ltr;
    /* Reset direction for content */
}

.video-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-black);
}

.video-content p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: #000;
    line-height: 0;
    /* Remove bottom space */
}

.feature-video {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.01);
    /* Prevent pixel gaps */
}

@media (max-width: 992px) {

    .video-grid,
    .video-grid.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        direction: ltr;
        /* Reset direction on mobile */
    }

    .video-grid .video-content,
    .video-grid.reverse .video-content {
        order: 1;
        /* Text first on mobile */
    }

    .video-grid .video-wrapper,
    .video-grid.reverse .video-wrapper {
        order: 2;
        /* Video second on mobile */
    }

    .video-grid .btn-premium {
        margin-left: auto;
        margin-right: auto;
    }
}