/* ========================================
   HERO SECTION META-STYLE - Fullscreen
   ======================================== */

.hero-meta {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

/* Fullscreen Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-fullscreen {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.78vh; /* 16:9 aspect ratio */
    transform: translateX(-50%) translateY(-50%);
    border: none;
    pointer-events: none;
    filter: brightness(0.7) contrast(1.1);
    object-fit: cover;
}

/* Gradient Overlay - Meta Style */
.video-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(27, 41, 81, 0.3) 30%,
        rgba(0, 161, 156, 0.2) 70%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

/* Content Overlay */
.hero-content-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 2rem;
}

.hero-content-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Typography - Meta Style */
.hero-headline-section {
    margin-bottom: 3rem;
}

.hero-main-title {
    font-family: var(--font-secondary);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-large {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-family: var(--font-primary);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* CTA Section - Meta Style */
.hero-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.hero-primary-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.hero-primary-cta svg {
    transition: transform 0.3s ease;
}

.hero-primary-cta:hover svg {
    transform: translateX(4px);
}

.hero-cta-subtext {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255, 255, 255, 0.7) 50%, 
        transparent 100%
    );
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid rgba(255, 255, 255, 0.7);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   RESPONSIVE DESIGN - Meta Style
   ======================================== */

@media (max-width: 1024px) {
    .hero-content-overlay {
        padding: 1.5rem;
    }
    
    .hero-headline-section {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-meta {
        min-height: 500px;
    }
    
    .hero-content-overlay {
        padding: 1rem;
    }
    
    .hero-headline-section {
        margin-bottom: 2rem;
    }
    
    .hero-main-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-subtitle-large {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }
    
    .hero-primary-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-meta {
        min-height: 450px;
    }
    
    .hero-content-overlay {
        padding: 0.75rem;
    }
    
    .hero-headline-section {
        margin-bottom: 1.5rem;
    }
    
    .hero-primary-cta {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        gap: 0.5rem;
    }
    
    .hero-cta-subtext {
        font-size: 0.875rem;
    }
}
