/* ===== Hero Section Final Fix - White Theme with Visible Images ===== */

/* Override all previous hero styles for white theme */

.hero {
    position: relative !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    background: #FFFFFF !important;
    padding: 0 !important;
}

/* Hero Images - Visible and Clear */
.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;
    visibility: hidden !important;
    transition: opacity 1.5s ease-in-out !important;
}

.hero-image-item.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2 !important;
}

.hero-image-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

/* Light overlays for white theme - make images visible */
.hero-image-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, 
                rgba(220, 20, 60, 0.05) 0%, 
                rgba(255, 107, 53, 0.05) 100%) !important;
    z-index: 3 !important;
}

.hero-content-gradient {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to right, 
                rgba(255, 255, 255, 0.92) 0%, 
                rgba(255, 255, 255, 0.75) 40%,
                rgba(255, 255, 255, 0.5) 60%,
                rgba(255, 255, 255, 0.2) 100%) !important;
    z-index: 4 !important;
}

/* Hero Content */
.hero-content-wrapper {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    padding: 4rem 0 !important;
}

.hero-content {
    max-width: 750px !important;
}

/* Hero Title - Shorter */
.hero-title {
    font-size: 4.5rem !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    margin-bottom: 1.5rem !important;
    color: #1a1a1a !important;
    letter-spacing: -1px !important;
}

.gradient-text {
    background: linear-gradient(135deg, #DC143C 0%, #FF6B35 50%, #FF8C42 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Hero Subtitle - Shorter */
.hero-subtitle {
    font-size: 1.25rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
    color: #4a4a4a !important;
    font-weight: 400 !important;
}

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

/* Hero Stats - Icons Only (No Text Labels) */
.hero-stats {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
}

.stat-item {
    text-align: center !important;
    padding: 2rem 1.5rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    border: 2px solid rgba(220, 20, 60, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    overflow: hidden !important;
}

.stat-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #DC143C, #FF6B35) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
    z-index: 0 !important;
}

.stat-item:hover::before {
    opacity: 0.08 !important;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.03) !important;
    border-color: #DC143C !important;
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.3) !important;
}

.stat-icon {
    font-size: 4rem !important;
    color: #DC143C !important;
    margin-bottom: 1.2rem !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    z-index: 1 !important;
    display: inline-block !important;
}

.stat-item:hover .stat-icon {
    color: #FF6B35 !important;
    transform: scale(1.2) rotate(10deg) !important;
}

.stat-item h3 {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    color: #1a1a1a !important;
    margin-bottom: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    background: linear-gradient(135deg, #DC143C, #FF6B35) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Hide text labels - show only icons and numbers */
.stat-item p {
    display: none !important;
}

/* Scroll Indicator - Red Color for White Background */
.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: 10 !important;
    animation: bounceUpDown 2s ease-in-out infinite !important;
}

.scroll-indicator span {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #DC143C !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.scroll-indicator i {
    font-size: 1.5rem !important;
    color: #DC143C !important;
}

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

/* Slider Dots - Red for White Background */
.hero-slider-dots {
    position: absolute !important;
    bottom: 3rem !important;
    right: 3rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    z-index: 10 !important;
}

.slider-dot {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background: rgba(220, 20, 60, 0.3) !important;
    border: 2px solid rgba(220, 20, 60, 0.5) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.slider-dot.active {
    background: #DC143C !important;
    border-color: #DC143C !important;
    transform: scale(1.3) !important;
}

.slider-dot:hover {
    background: #FF6B35 !important;
    border-color: #FF6B35 !important;
    transform: scale(1.2) !important;
}

/* Responsive Design */

/* Large Desktop (4K) */
@media (min-width: 2560px) {
    .hero-title {
        font-size: 6rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.5rem !important;
    }
    
    .stat-icon {
        font-size: 5rem !important;
    }
    
    .stat-item h3 {
        font-size: 4rem !important;
    }
}

/* Desktop (1920px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .hero-title {
        font-size: 5rem !important;
    }
}

/* Laptop */
@media (max-width: 1440px) {
    .hero-title {
        font-size: 4rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
}

/* Tablet Landscape */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem !important;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .stat-icon {
        font-size: 3.5rem !important;
    }
    
    .stat-item h3 {
        font-size: 3rem !important;
    }
}

/* Tablet Portrait */
@media (max-width: 991px) {
    .hero {
        min-height: 90vh !important;
    }
    
    .hero-title {
        font-size: 3rem !important;
    }
    
    .hero-content-gradient {
        background: linear-gradient(to right, 
                    rgba(255, 255, 255, 0.95) 0%, 
                    rgba(255, 255, 255, 0.85) 50%,
                    rgba(255, 255, 255, 0.6) 100%) !important;
    }
    
    .hero-slider-dots {
        bottom: 2rem !important;
        right: 2rem !important;
    }
}

/* Mobile Landscape */
@media (max-width: 767px) {
    .hero {
        min-height: 100vh !important;
        padding-top: 80px !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
    }
    
    .hero-stats {
        gap: 1rem !important;
        margin-top: 2rem !important;
    }
    
    .stat-item {
        padding: 1.5rem 1rem !important;
    }
    
    .stat-icon {
        font-size: 3rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .stat-item h3 {
        font-size: 2.5rem !important;
    }
    
    .hero-content-gradient {
        background: linear-gradient(to bottom, 
                    rgba(255, 255, 255, 0.96) 0%, 
                    rgba(255, 255, 255, 0.9) 70%,
                    rgba(255, 255, 255, 0.8) 100%) !important;
    }
    
    .scroll-indicator {
        bottom: 1rem !important;
    }
    
    .hero-slider-dots {
        bottom: 1rem !important;
        right: 1rem !important;
        gap: 0.6rem !important;
    }
    
    .slider-dot {
        width: 10px !important;
        height: 10px !important;
    }
}

/* Mobile Portrait */
@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }
    
    .stat-item {
        padding: 1.2rem 0.8rem !important;
        border-radius: 15px !important;
    }
    
    .stat-icon {
        font-size: 2.5rem !important;
    }
    
    .stat-item h3 {
        font-size: 2rem !important;
    }
}

/* iPhone 14 Pro Max */
@media (max-width: 430px) {
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
    }
    
    .stat-item {
        padding: 1rem 0.6rem !important;
    }
    
    .stat-icon {
        font-size: 2.2rem !important;
    }
    
    .stat-item h3 {
        font-size: 1.8rem !important;
    }
}
