/* Scroll Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Video Background */
.hero-video-section {
    position: relative;
    min-height: 100vh;
}

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

/* Responsive Video Selection */
/* Default: Hide both */
.hero-video-landscape,
.hero-video-portrait {
    display: none;
}

/* Landscape (Desktop/Tablet horizontal) - 16:9 */
@media (orientation: landscape) {
    .hero-video-landscape {
        display: block;
    }
    .hero-video-portrait {
        display: none;
    }
}

/* Portrait (Mobile vertical) - 9:16 */
@media (orientation: portrait) {
    .hero-video-landscape {
        display: none;
    }
    .hero-video-portrait {
        display: block;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Scroll Indicator Bounce */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Process Timeline */
.process-timeline {
    position: relative;
}

.process-step {
    transition: all 0.6s ease-out;
}

/* Hover Effects */
.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Progress Bars Animation */
.progress-bar {
    transition: width 1s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-video-section {
        min-height: 80vh;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
}
