/* ===== HERO SECTION - CLEAN, SIMPLE, WORKING ===== */

/* OVERRIDE EVERYTHING - Fresh Start */

.hero {
    position: relative !important;
    height: 600px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: #f5f5f5 !important;
}

/* Background Images - High Visibility */
.hero-images-slider {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
}

.hero-image-item {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    transition: opacity 2s ease !important;
}

.hero-image-item.active {
    opacity: 1 !important;
}

.hero-image-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    filter: brightness(0.85) !important;
}

/* Dark Overlay for Better Text Contrast */
.hero-image-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 2 !important;
}

.hero-content-gradient {
    display: none !important;
}

/* Content Container - Centered */
.hero-content-wrapper {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    text-align: center !important;
}

.hero-content {
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

/* Title - White with Shadow */
.hero-title {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    color: #FFFFFF !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8) !important;
    line-height: 1.2 !important;
}

.gradient-text {
    color: #FF6B35 !important;
    background: none !important;
    -webkit-text-fill-color: #FF6B35 !important;
}

/* Subtitle - White with Shadow */
.hero-subtitle {
    font-size: 1.3rem !important;
    color: #FFFFFF !important;
    margin-bottom: 2rem !important;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7) !important;
    line-height: 1.6 !important;
}

/* Buttons */
.hero-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    margin-bottom: 3rem !important;
    flex-wrap: wrap !important;
}

.btn-primary {
    background: #DC143C !important;
    color: #FFFFFF !important;
    border: none !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    border-radius: 50px !important;
}

.btn-primary:hover {
    background: #b8102f !important;
}

.btn-outline-light {
    background: transparent !important;
    color: #FFFFFF !important;
    border: 2px solid #FFFFFF !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    border-radius: 50px !important;
}

.btn-outline-light:hover {
    background: #FFFFFF !important;
    color: #DC143C !important;
}

/* Stats - Horizontal Row */
.hero-stats {
    display: flex !important;
    justify-content: center !important;
    gap: 3rem !important;
    flex-wrap: wrap !important;
}

.stat-item {
    text-align: center !important;
    padding: 1.5rem 2rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 15px !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
    min-width: 130px !important;
}

.stat-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 30px rgba(220, 20, 60, 0.4) !important;
}

.stat-icon {
    font-size: 3rem !important;
    color: #DC143C !important;
    margin-bottom: 0.8rem !important;
    display: block !important;
}

.stat-item:hover .stat-icon {
    color: #FF6B35 !important;
    transform: scale(1.1) !important;
}

.stat-item h3 {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    color: #DC143C !important;
    margin-bottom: 0 !important;
}

.stat-item p {
    display: none !important;
}

/* Slider Dots - Right Side */
.hero-slider-dots {
    position: absolute !important;
    bottom: 2rem !important;
    right: 2rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
    z-index: 20 !important;
}

.slider-dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.5) !important;
    border: 2px solid #FFFFFF !important;
    cursor: pointer !important;
}

.slider-dot.active {
    background: #DC143C !important;
    border-color: #DC143C !important;
}

/* Scroll Indicator - Bottom Center */
.scroll-indicator {
    position: absolute !important;
    bottom: 2rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    z-index: 20 !important;
    animation: bounce 2s infinite !important;
}

.scroll-indicator span {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8) !important;
}

.scroll-indicator i {
    font-size: 1.5rem !important;
    color: #FFFFFF !important;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8) !important;
}

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

/* Responsive */
@media (max-width: 1199px) {
    .hero {
        height: 550px !important;
    }
    
    .hero-title {
        font-size: 3rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 991px) {
    .hero {
        height: 500px !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .hero-stats {
        gap: 1.5rem !important;
    }
    
    .stat-item {
        min-width: 110px !important;
        padding: 1.2rem 1.5rem !important;
    }
    
    .stat-icon {
        font-size: 2.5rem !important;
    }
    
    .stat-item h3 {
        font-size: 2rem !important;
    }
}

@media (max-width: 767px) {
    .hero {
        height: 600px !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
    }
    
    .hero-stats {
        gap: 1rem !important;
    }
    
    .stat-item {
        min-width: 140px !important;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .stat-item {
        min-width: 130px !important;
        padding: 1rem 1.2rem !important;
    }
    
    .stat-icon {
        font-size: 2.2rem !important;
    }
    
    .stat-item h3 {
        font-size: 1.8rem !important;
    }
}
