/* ============================================================================================================================= */
/* ======================================================= HERO SECTION ======================================================= */
/* ============================================================================================================================= */

/* Modern Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0 0 20px 0;
    box-sizing: border-box;
    clear: both;
}

/* Hero Slider Background */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: heroZoom 20s infinite alternate ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 0, 53, 0.85) 0%, rgba(0, 174, 239, 0.4) 100%);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-text {
    margin-bottom: 0;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 174, 239, 0.2);
    border: 1px solid rgba(0, 174, 239, 0.5);
    border-radius: 30px;
    color: #00aeef;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.8s ease-out 0.2s both;
}

/* Hero Title */
.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 30px 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.8rem;
    color: #00aeef;
    font-weight: 600;
    margin: 0 0 25px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Hero Description */
.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    margin-top: 0;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #00aeef 0%, #1c16d2 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 174, 239, 0.6);
    background: linear-gradient(135deg, #1c16d2 0%, #00aeef 100%);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #00aeef;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(0, 174, 239, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 174, 239, 0.4);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00aeef;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 174, 239, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Navigation Dots */
.hero-navigation {
    position: relative;
    z-index: 4;
    display: flex;
    gap: 12px;
    margin-top: 60px;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.hero-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-nav-dot.active {
    background: #00aeef;
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0, 174, 239, 0.6);
}

.hero-nav-dot:hover {
    background: rgba(0, 174, 239, 0.7);
    transform: scale(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: relative;
    z-index: 4;
    text-align: center;
    animation: bounce 2s infinite;
    margin-bottom: 20px;
    margin-top: 0;
    flex-shrink: 0;
}

.scroll-text {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    color: #00aeef;
    font-size: 1.5rem;
}

/* ================================================ KEYFRAMES AND ANIMATIONS ================================================= */

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* ==================================================== RESPONSIVE HERO ===================================================== */

/* Tablet and below */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 30px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
        margin-top: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 15px;
        margin-bottom: 25px;
    }
    
    .hero-content {
        padding-top: 60px;
    }
    
    .hero-navigation {
        margin-top: 50px;
        margin-bottom: 25px;
    }
    
    .scroll-indicator {
        margin-bottom: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
