/* ==========================================================================
   Video Section
   ========================================================================== */

   .video-section {
    background: #FEF6F0;
    padding: 80px 0;
}

.video-section-wrapper {
    display: flex;
    flex-direction: row-reverse; /* RTL: Video on right, content on left */
    align-items: center;
    gap: 80px;
    max-width: var(--container-3xl);
    margin: 0 auto;
    padding: unset; /* No padding on right - video goes to edge */
    justify-content: space-between;
}

/* Content - Left Side */
.video-section-content {
    flex: 1;
    max-width: 681px;
    padding-left: 40px;
}

.video-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.video-section.animate-in .video-section-title {
    opacity: 1;
    transform: translateY(0);
}

.video-section-description {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.video-section.animate-in .video-section-description {
    opacity: 1;
    transform: translateY(0);
}

.video-section-description p {
    margin: 0 0 16px;
}

.video-section-description p:last-child {
    margin-bottom: 0;
}

/* Button */
.video-section-button-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.video-section.animate-in .video-section-button-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.video-section-button {
    display: inline-block;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: var(--color-primary, #153C6D);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-section-button:hover {
    background: #0f2d52;
    transform: translateY(-2px);
}

/* Video Embed - Right Side (bigger) */
.video-section-embed {
    flex: 0 0 55%;
    max-width: 746px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.video-section.animate-in .video-section-embed {
    opacity: 1;
    transform: translateX(0);
}

.video-embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Mobile embed - hidden on desktop */
.video-section-embed-mobile {
    display: none;
}

/* Desktop embed - shown on desktop */
.video-section-embed-desktop {
    display: block;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1200px) {
    .video-section-wrapper {
        gap: 60px;
        padding: 0 40px 0 0;
    }
    
    .video-section-content {
        padding-left: 32px;
    }
    
    .video-section-title {
        font-size: 36px;
    }
    
    .video-section-embed {
        flex: 0 0 50%;
        max-width: 600px;
    }
}

@media (max-width: 1024px) {
    .video-section {
        padding: 60px 0;
    }
    
    .video-section-wrapper {
        gap: 40px;
        padding: 0 24px;
    }
    
    .video-section-content {
        padding-left: 0;
    }
    
    .video-section-title {
        font-size: 32px;
    }
    
    .video-section-description {
        font-size: 15px;
    }
    
    .video-section-embed {
        flex: 0 0 48%;
        max-width: 500px;
    }
    
    .video-embed-container {
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 48px 0;
    }
    
    .video-section-wrapper {
        flex-direction: column;
        gap: 0;
        padding: 0 24px;
    }
    
    .video-section-content {
        max-width: 100%;
        text-align: center;
    }
    
    .video-section-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    /* Mobile: Show mobile embed, hide desktop embed */
    .video-section-embed-mobile {
        display: block;
        flex: none;
        max-width: 100%;
        width: 100%;
        margin-bottom: 24px;
    }
    
    .video-section-embed-desktop {
        display: none;
    }
    
    .video-section-description {
        font-size: 15px;
        margin-bottom: 28px;
        text-align: right;
    }
    
    .video-embed-container {
        border-radius: 10px;
    }
    
    .video-section-button {
        padding: 12px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 40px 0;
    }
    
    .video-section-wrapper {
        padding: 0 16px;
    }
    
    .video-section-title {
        /* font-size: 36px; */
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .video-section-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .video-embed-container {
        border-radius: 8px;
    }
    
    .video-section-button {
        padding: 10px 28px;
        font-size: 14px;
    }
}

