/* Hero Video Section Styles - Video on Top, Banner Below */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

.hero-section {
    display: flex;
    flex-direction: column;
    width: 100vw;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Video Container - Top Section */
.video-container {
    position: relative;
    width: 100%;
    height: 77vh;
    min-height: 648px;
    background: white !important;
    overflow: hidden;
    margin-bottom: 120px;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
}

/* Hero Content Section - Below Video */
.hero-content-section {
    width: 100%;
    padding: 140px 40px;
    margin-top: 100px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3), 0 10px 40px rgba(0, 0, 0, 0.4);
    border-top: 4px solid #d4af37;
}

.hero-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(211, 47, 47, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(211, 47, 47, 0.6) 25%, 
        rgba(211, 47, 47, 1) 50%, 
        rgba(211, 47, 47, 0.6) 75%, 
        transparent 100%);
}

.hero-content-section .container {
    max-width: 1200px;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 35px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    padding-bottom: 20px;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, transparent, #d32f2f 20%, #d32f2f 80%, transparent);
    border-radius: 3px;
    box-shadow: 0 2px 15px rgba(211, 47, 47, 0.4);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 50px;
    margin-top: 10px;
    line-height: 1.6;
    color: #e8f0ff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.primary-button,
.secondary-button {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.primary-button {
    background: linear-gradient(135deg, #d4af37 0%, #bf9e5b 100%);
    color: #1a1a1a;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-weight: 800;
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.primary-button:hover::before {
    left: 100%;
}

.primary-button:hover {
    background: linear-gradient(135deg, #e6c158 0%, #d4af37 100%);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
    color: #1a1a1a;
    text-decoration: none;
}

.secondary-button {
    background: linear-gradient(135deg, #d4af37 0%, #bf9e5b 100%);
    color: #1a1a1a;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.secondary-button:hover::before {
    left: 100%;
}

.secondary-button:hover {
    background: linear-gradient(135deg, #e6c158 0%, #d4af37 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.7);
    color: #1a1a1a;
    text-decoration: none;
}

/* Tablet Responsive */
@media (max-width: 992px) {
    .video-container {
        height: 65vh;
        min-height: 486px;
        margin-bottom: 80px;
    }

    .hero-content-section {
        padding: 120px 30px;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.7rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-container {
        height: 57vh;
        min-height: 405px;
        margin-bottom: 70px;
    }

    .hero-content-section {
        padding: 100px 25px;
        margin-top: 50px;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 25px;
    }

    .hero-title::after {
        width: 100px;
        height: 4px;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .primary-button,
    .secondary-button {
        padding: 16px 32px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 320px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .video-container {
        height: 40.5vh;
        min-height: 284px;
        margin-bottom: 40px;
    }

    .hero-content-section {
        padding: 60px 20px;
        margin-top: 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .primary-button,
    .secondary-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Performance optimization */
@media (prefers-reduced-motion: reduce) {
    .primary-button,
    .secondary-button,
    .hero-title,
    .hero-subtitle,
    .hero-buttons {
        animation: none;
        transition: none;
    }
}