/* ============================================
   ENHANCED VIDEO BANNER SECTION - TWO PART DESIGN
   ============================================ */

/* Enhanced Video Banner Section - Split Layout */
.enhanced-video-banner-section {
    position: relative;
    width: 100%;
    min-height: 350px;
    margin: 0;
    padding: 4rem 0 3rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #f8f9fa 25%,
        #f1f5f9 50%,
        #f8f9fa 75%,
        #ffffff 100%
    );
    border-radius: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    z-index: 1;
}

/* Container adjustments for better flow */
.enhanced-video-banner-section .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

/* Add inner shadow for depth */
.video-banner-media-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(to left,
        rgba(0, 0, 0, 0.1) 0%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 2;
}

[dir="rtl"] .video-banner-media-wrapper::after {
    right: auto;
    left: 0;
    background: linear-gradient(to right,
        rgba(0, 0, 0, 0.1) 0%,
        transparent 100%
    );
}

.video-banner-content-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0.5) 0%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

[dir="rtl"] .video-banner-content-wrapper::after {
    left: auto;
    right: 0;
    background: linear-gradient(to left,
        rgba(255, 255, 255, 0.5) 0%,
        transparent 100%
    );
}

/* Smooth color flow transition to next section */
.enhanced-video-banner-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0) 0%,
        rgba(248, 250, 252, 0.3) 30%,
        rgba(241, 245, 249, 0.6) 60%,
        rgba(241, 245, 249, 1) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Smooth color flow transitions between sections */
.enhanced-video-banner-section + .hero-section {
    margin-top: -50px;
    padding-top: 5rem;
    position: relative;
    z-index: 0;
    background: linear-gradient(to bottom,
        rgba(241, 245, 249, 0.8) 0%,
        rgba(59, 157, 213, 0.1) 20%,
        #3B9DD5 100%
    );
}

/* Smooth transition to lazy sections */
.enhanced-video-banner-section + .lazy-section-placeholder,
.enhanced-video-banner-section ~ .lazy-section-placeholder {
    margin-top: 0;
    padding-top: 3rem;
    background: linear-gradient(to bottom, 
        rgba(241, 245, 249, 1) 0%,
        rgba(255, 255, 255, 0.8) 30%,
        rgba(255, 255, 255, 1) 100%
    );
    border-radius: 0;
    transition: all 0.4s ease;
}

/* Smooth transition to services section */
.enhanced-video-banner-section ~ .services-showcase-section {
    margin-top: 0;
    padding-top: 3rem;
    background: linear-gradient(to bottom,
        rgba(241, 245, 249, 1) 0%,
        rgba(248, 250, 252, 1) 50%,
        rgba(255, 255, 255, 1) 100%
    );
}

/* General section flow improvements */
section {
    transition: background-color 0.5s ease, margin 0.3s ease;
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Section spacing with color flow */
.enhanced-video-banner-section,
.hero-section,
.lazy-section-placeholder,
.services-showcase-section {
    position: relative;
}

/* Add subtle border between sections for better flow */
.enhanced-video-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(102, 126, 234, 0.2) 50%,
        transparent 100%
    );
}

/* Media Wrapper (Video/Image Part) */
.video-banner-media-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    max-height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px 0 0 16px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

[dir="rtl"] .video-banner-media-wrapper {
    border-radius: 0 16px 16px 0;
}

.enhanced-video-banner,
.enhanced-video-banner-poster {
    width: 100%;
    height: 100%;
    min-height: 350px;
    max-height: 350px;
    object-fit: cover;
    object-position: center center;
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1);
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(1);
}

.video-banner-media-wrapper:hover .enhanced-video-banner,
.video-banner-media-wrapper:hover .enhanced-video-banner-poster {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.05) 0%,
        rgba(118, 75, 162, 0.05) 50%,
        rgba(102, 126, 234, 0.05) 100%
    );
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.video-banner-media-wrapper:hover .media-overlay {
    opacity: 0.8;
}

/* Content Wrapper (Text Part) */
.video-banner-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    max-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 1.5rem 1.5rem;
    border-radius: 0 16px 16px 0;
    transition: all 0.3s ease;
}

[dir="rtl"] .video-banner-content-wrapper {
    border-radius: 16px 0 0 16px;
}

/* RTL Support */
[dir="rtl"] .video-banner-content-wrapper {
    direction: rtl;
}

[dir="rtl"] .content-badge {
    animation: slideInFromRight 0.6s ease-out;
}

[dir="rtl"] .content-title {
    animation: slideInFromRight 0.8s ease-out 0.2s both;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-inner {
    max-width: 600px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 2;
}

/* Add subtle background pattern for depth */
.video-banner-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 157, 213, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(123, 192, 67, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #3B9DD5 0%, #7BC043 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(59, 157, 213, 0.3);
    animation: slideInFromLeft 0.6s ease-out;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: slideInFromLeft 0.8s ease-out 0.2s both;
}

.content-title i {
    color: #7BC043;
    font-size: 1.4rem;
}

.content-paragraphs {
    margin-bottom: 1rem;
}

.paragraph-main {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.paragraph-secondary {
    font-size: 0.85rem;
    font-weight: 400;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.paragraph-features {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.paragraph-features i {
    color: #7BC043;
    font-size: 1rem;
    margin-right: 0.5rem;
}

[dir="rtl"] .paragraph-features i {
    margin-right: 0;
    margin-left: 0.5rem;
}

.content-cta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.9rem;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #3B9DD5 0%, #7BC043 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 157, 213, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 157, 213, 0.5);
    color: white;
}

.btn-cta-secondary {
    background: transparent;
    color: #3B9DD5;
    border-color: #3B9DD5;
}

.btn-cta-secondary:hover {
    background: #3B9DD5;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 157, 213, 0.3);
}

/* Legacy styles for backward compatibility */
.video-banner-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-bottom: 0;
}

.video-banner-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.video-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    will-change: auto;
    transform: translateZ(0);
    display: block;
    background: #000;
}

.video-banner-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.video-banner-poster-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Overlay for better text readability (optional) */
.video-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Content overlay (if you want text on top of video) */
.video-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

/* Fallback content when video fails to load */
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 0;
}

.fallback-content {
    text-align: center;
    color: white;
}

.fallback-content i {
    font-size: 4rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.fallback-content p {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* Loading state */
.video-banner.loading {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-banner.loaded {
    opacity: 1;
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    .video-banner {
        animation: none;
    }
}

/* Mobile optimizations */
@media (max-width: 992px) {
    .enhanced-video-banner-section {
        min-height: auto;
        padding: 2rem 0 2.5rem 0;
    }
    
    /* Stack columns vertically on tablet and mobile */
    .enhanced-video-banner-section .row {
        flex-direction: column;
    }
    
    .enhanced-video-banner-section .col-lg-7,
    .enhanced-video-banner-section .col-lg-5,
    .enhanced-video-banner-section .col-md-12 {
        width: 100%;
        max-width: 100%;
    }
    
    .video-banner-content-wrapper {
        min-height: auto;
        max-height: none;
        height: auto;
        padding: 2rem 1.5rem;
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    
    [dir="rtl"] .video-banner-content-wrapper {
        border-radius: 12px;
    }
    
    /* Media wrapper - full width, reduced height */
    .video-banner-media-wrapper {
        min-height: 280px;
        max-height: 280px;
        height: 280px;
        border-radius: 12px;
        margin-bottom: 0;
    }
    
    [dir="rtl"] .video-banner-media-wrapper {
        border-radius: 12px;
    }
    
    .enhanced-video-banner,
    .enhanced-video-banner-poster {
        min-height: 280px;
        max-height: 280px;
        height: 280px;
        border-radius: 12px;
    }
    
    /* Content wrapper - full width, auto height */
    .video-banner-content-wrapper {
        min-height: auto;
        max-height: none;
        height: auto;
        padding: 2rem 1.25rem;
        border-radius: 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    }
    
    [dir="rtl"] .video-banner-content-wrapper {
        border-radius: 0;
    }
    
    .content-inner {
        max-width: 100%;
        padding: 0;
    }
    
    /* Typography adjustments */
    .content-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .content-title i {
        font-size: 1.2rem;
    }
    
    .content-badge {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
        margin-bottom: 1rem;
        display: inline-flex;
    }
    
    .paragraph-main {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    
    .paragraph-secondary {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.6;
    }
    
    .paragraph-features {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    
    .paragraph-features i {
        font-size: 0.9rem;
        margin-right: 0.5rem;
    }
    
    [dir="rtl"] .paragraph-features i {
        margin-right: 0;
        margin-left: 0.5rem;
    }
    
    .content-paragraphs {
        margin-bottom: 1.25rem;
    }
    
    /* Button adjustments */
    .content-cta {
        margin-top: 1.25rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    /* Remove connecting lines on mobile */
    .video-banner-media-wrapper::before,
    .video-banner-content-wrapper::before {
        display: none;
    }
    
    /* Remove side shadows on mobile */
    .video-banner-media-wrapper::after,
    .video-banner-content-wrapper::after {
        display: none;
    }
    
    /* Adjust section transitions for mobile */
    .enhanced-video-banner-section::after {
        height: 40px;
    }
    
    .enhanced-video-banner-section + .hero-section {
        margin-top: -20px;
        padding-top: 3rem;
    }
    
    .enhanced-video-banner-section + .lazy-section-placeholder,
    .enhanced-video-banner-section ~ .lazy-section-placeholder {
        margin-top: 0;
        padding-top: 2rem;
    }
    
    /* Legacy video banner section (if still used) */
    .video-banner-section {
        height: 50vh;
        min-height: 300px;
        max-height: 400px;
    }
    
    .video-banner {
        object-fit: cover;
        object-position: center center;
    }
    
    .fallback-content i {
        font-size: 3rem;
    }
    
    .fallback-content p {
        font-size: 1.25rem;
    }
}

/* Small mobile devices (phones in portrait) */
@media (max-width: 480px) {
    .enhanced-video-banner-section {
        padding: 1rem 0 1.5rem 0;
        margin: 0.5rem 0;
    }
    
    .video-banner-media-wrapper {
        min-height: 220px;
        max-height: 220px;
        height: 220px;
        border-radius: 8px;
    }
    
    .enhanced-video-banner,
    .enhanced-video-banner-poster {
        min-height: 220px;
        max-height: 220px;
        height: 220px;
        border-radius: 8px;
    }
    
    .video-banner-content-wrapper {
        min-height: auto;
        max-height: none;
        height: auto;
        padding: 1.25rem 1rem;
    }
    
    .content-title {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .content-title i {
        font-size: 1rem;
    }
    
    .content-badge {
        padding: 0.35rem 0.85rem;
        font-size: 0.65rem;
        margin-bottom: 0.75rem;
    }
    
    .paragraph-main {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .paragraph-secondary {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .paragraph-features {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .content-paragraphs {
        margin-bottom: 0.75rem;
    }
    
    .content-cta {
        margin-top: 0.75rem;
        gap: 0.5rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
        min-height: 44px; /* Touch-friendly minimum height */
    }
}

/* Touch-friendly improvements for all mobile devices */
@media (max-width: 768px) {
    /* Ensure buttons are easily tappable */
    .btn-cta-primary,
    .btn-cta-secondary {
        min-height: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(59, 157, 213, 0.3);
    }
    
    /* Improve video/poster touch interactions */
    .enhanced-video-banner,
    .enhanced-video-banner-poster {
        touch-action: pan-y pinch-zoom;
    }
    
    /* Prevent text selection on mobile for better UX */
    .content-badge,
    .content-title {
        -webkit-user-select: none;
        user-select: none;
    }
    
    /* Optimize animations for mobile performance */
    .enhanced-video-banner-section,
    .content-badge,
    .content-title,
    .paragraph-main,
    .paragraph-secondary,
    .paragraph-features {
        will-change: transform;
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        .enhanced-video-banner-section,
        .content-badge,
        .content-title,
        .paragraph-main,
        .paragraph-secondary,
        .paragraph-features {
            animation: none;
        }
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .enhanced-video-banner-section {
        padding: 1rem 0;
    }
    
    .video-banner-media-wrapper {
        min-height: 200px;
        max-height: 200px;
        height: 200px;
    }
    
    .enhanced-video-banner,
    .enhanced-video-banner-poster {
        min-height: 200px;
        max-height: 200px;
        height: 200px;
    }
    
    .video-banner-content-wrapper {
        min-height: auto;
        max-height: none;
        height: auto;
        padding: 1.25rem 1rem;
    }
    
    .content-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .content-paragraphs {
        margin-bottom: 0.75rem;
    }
    
    .content-cta {
        margin-top: 0.75rem;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        flex: 1;
        width: auto;
    }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .enhanced-video-banner-section {
        min-height: 320px;
        padding: 1.75rem 0 2.5rem 0;
    }
    
    .video-banner-media-wrapper,
    .video-banner-content-wrapper {
        min-height: 320px;
        max-height: 320px;
    }
    
    .enhanced-video-banner,
    .enhanced-video-banner-poster {
        min-height: 320px;
        max-height: 320px;
    }
    
    .video-banner-content-wrapper {
        padding: 1.75rem 1.5rem;
    }
    
    .content-title {
        font-size: 1.6rem;
    }
    
    .content-title i {
        font-size: 1.3rem;
    }
    
    .paragraph-main {
        font-size: 0.9rem;
    }
    
    .paragraph-secondary {
        font-size: 0.85rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 0.65rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .video-banner-section {
        height: 55vh;
        min-height: 350px;
        max-height: 500px;
    }
    
    .video-banner {
        object-fit: cover;
        object-position: center center;
    }
}

/* Prevent video from loading on slow connections (optional) */
@media (prefers-reduced-data: reduce) {
    .video-banner {
        display: none;
    }
    
    .video-fallback {
        display: flex;
    }
}

/* Pause video when not visible (performance) */
.video-banner.paused {
    display: none;
}

/* ============================================
   SECTION FLOW & COLOR TRANSITIONS
   ============================================ */

/* Smooth color flow between all sections */
.enhanced-video-banner-section {
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #f8f9fa 15%,
        #f1f5f9 30%,
        #e2e8f0 50%,
        #f1f5f9 70%,
        #f8f9fa 85%,
        #ffffff 100%
    );
}

/* Add smooth transition effect on scroll */
@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.enhanced-video-banner-section {
    animation: sectionFadeIn 0.6s ease-out;
}

/* Improve visual connection between media and content */
.video-banner-media-wrapper,
.video-banner-content-wrapper {
    position: relative;
}

/* Add subtle connecting line between parts */
.video-banner-media-wrapper::before,
.video-banner-content-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 2px;
    height: 60%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(59, 157, 213, 0.3) 50%,
        transparent 100%
    );
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
}

.video-banner-media-wrapper::before {
    right: -1px;
}

[dir="rtl"] .video-banner-media-wrapper::before {
    right: auto;
    left: -1px;
}

.video-banner-content-wrapper::before {
    left: -1px;
}

[dir="rtl"] .video-banner-content-wrapper::before {
    left: auto;
    right: -1px;
}

/* Enhanced hover states for better interactivity */
.enhanced-video-banner-section:hover .video-banner-media-wrapper {
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.3);
}

.enhanced-video-banner-section:hover .video-banner-content-wrapper {
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #f8f9fa 50%,
        #ffffff 100%
    );
}

