/* Banner Video Component Styles */
.banner-video-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    overflow: hidden;
}

.banner-video-wrapper {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-video-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.banner-video-youtube {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100%;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.banner-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.banner-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.85) 0%, rgba(26, 42, 58, 0.65) 100%);
    z-index: 1;
}

.banner-video-background .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-video-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 80px 0;
}

.banner-video-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-video-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--blue-accent-light);
    margin-bottom: 20px;
}

.banner-video-description {
    font-size: 18px;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.banner-video-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--gradient-blue-accent);
    border: 1px solid rgba(74, 144, 226, 0.6);
    border-radius: 50px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.banner-video-cta:hover {
    background: var(--gradient-blue-4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
}

.banner-video-overlay-stat {
    text-align: center;
}

.banner-video-overlay-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--blue-accent-light);
    margin-bottom: 5px;
    line-height: 1;
}

.banner-video-overlay-stat-label {
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-video-section {
        min-height: auto;
    }
    
    .banner-video-wrapper {
        min-height: 500px;
    }

    .banner-video-title {
        font-size: 36px;
    }

    .banner-video-subtitle {
        font-size: 20px;
    }

    .banner-video-description {
        font-size: 16px;
    }

}

@media (max-width: 480px) {
    .banner-video-title {
        font-size: 28px;
    }

    .banner-video-subtitle {
        font-size: 18px;
    }

    .banner-video-cta {
        padding: 15px 30px;
        font-size: 16px;
    }
}
