/* HERO */

.hero-section {
    min-height: 100vh;
    height: 100vh;
    position: relative;
    background: var(--gradient-dark);
    color: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../assets/img/hero.webp') center/cover;
    opacity: 0.25;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-section .row {
    min-height: auto;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.15;
    color: var(--white);
}

.hero-title span:not(.gradient-text) {
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    flex: 1 1 160px;
    min-width: 140px;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    margin-bottom: 8px;
    line-height: 1;
}

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

/* Hide floating cards */
.hero-image,
.floating-card {
    display: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
    animation: scroll 2s infinite;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: wheel 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; }
    100% { opacity: 0.3; }
}

@keyframes wheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}


/* Responsive */
@media (min-width: 992px) {
    .hero-stats {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: clamp(20px, 3vw, 50px);
    }
    
    .stat-item {
        flex: 1 1 0;
        min-width: 0;
    }
}

@media (max-width: 1400px) {
    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.2rem);
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        margin-top: 3rem;
        gap: 30px;
    }
    
    .stat-number {
        font-size: clamp(2.2rem, 3.5vw, 3rem);
    }
    
    .stat-label {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 60px 20px 40px;
    }
    
    .hero-stats {
        gap: 40px;
        margin-top: 3rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1 1 45%;
    }
}

@media (max-width: 767px) {
    .hero-section .container {
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 40px 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        gap: 30px;
        margin-top: 2.5rem;
    }
    
    .scroll-indicator {
        display: none;
    }
}
