/* ===== HERO SECTION ULTIMATE FIX - Clean & Working ===== */

/* COMPLETELY RESET AND REBUILD HERO SECTION */

/* Remove all conflicting styles */
.hero * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HERO CONTAINER - Clean Compact Design */
.hero {
    position: relative !important;
    min-height: 75vh !important;
    max-height: 850px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    background: #FFFFFF !important;
    padding: 8rem 0 5rem 0 !important;
}

/* ===== BACKGROUND IMAGES - MAXIMUM 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;
    visibility: hidden !important;
    transition: opacity 1.8s 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;
    filter: brightness(1.05) !important; /* Slightly brighter */
}

/* ===== MINIMAL OVERLAY - MAXIMUM IMAGE VISIBILITY ===== */

.hero-image-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    /* VERY MINIMAL tint - almost invisible */
    background: rgba(220, 20, 60, 0.01) !important;
    z-index: 3 !important;
    pointer-events: none !important;
}

.hero-content-gradient {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    /* VERY LIGHT gradient - only for text readability */
    background: linear-gradient(to right, 
                rgba(255, 255, 255, 0.75) 0%,   /* 75% on far left */
                rgba(255, 255, 255, 0.40) 30%,  /* 40% middle-left */
                rgba(255, 255, 255, 0.15) 50%,  /* 15% center */
                rgba(255, 255, 255, 0.05) 70%,  /* 5% middle-right */
                transparent 100%) !important;    /* Fully transparent on right */
    z-index: 4 !important;
    pointer-events: none !important;
}

/* ===== HERO CONTENT - PERFECT ALIGNMENT ===== */

.hero-content-wrapper {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    padding: 0 !important;
}

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

.hero-content {
    max-width: 800px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ===== TEXT STYLING - CENTER ALIGNED FOR LAPTOP/DESKTOP ===== */

.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: -1.5px !important;
    text-align: center !important;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.9) !important;
}

.hero-title br {
    display: block !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;
    display: inline-block !important;
    font-weight: 900 !important;
}

.hero-subtitle {
    font-size: 1.4rem !important;
    line-height: 1.8 !important;
    margin-bottom: 2.5rem !important;
    color: #2a2a2a !important;
    font-weight: 500 !important;
    text-align: center !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.8) !important;
}

/* ===== HERO BUTTONS - CENTERED ===== */

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

.hero-buttons .btn {
    font-size: 1.1rem !important;
    padding: 1rem 2.5rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3) !important;
}

/* ===== HERO STATS - CENTERED AND COMPACT ===== */

.hero-stats {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
    flex-wrap: wrap !important;
}

.stat-item {
    text-align: center !important;
    padding: 2rem 2.5rem !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    border-radius: 20px !important;
    border: 2px solid rgba(220, 20, 60, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    overflow: hidden !important;
    min-width: 160px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !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.1 !important;
}

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

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

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

.stat-item h3 {
    font-size: 3rem !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;
}

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

/* ===== SLIDER DOTS - BOTTOM RIGHT, NO OVERLAP ===== */

.hero-slider-dots {
    position: absolute !important;
    bottom: 2rem !important;
    right: 3rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    z-index: 15 !important;
}

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

.slider-dot.active {
    background: #DC143C !important;
    border-color: #DC143C !important;
    transform: scale(1.4) !important;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.5) !important;
}

.slider-dot:hover {
    background: #FF6B35 !important;
    border-color: #FF6B35 !important;
    transform: scale(1.2) !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: 15 !important;
    animation: bounceUpDown 2s ease-in-out infinite !important;
}

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

.scroll-indicator i {
    font-size: 1.8rem !important;
    color: #DC143C !important;
    filter: drop-shadow(1px 1px 3px rgba(255, 255, 255, 0.8)) !important;
}

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

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop (2560px+) */
@media (min-width: 2560px) {
    .hero {
        min-height: 75vh !important;
        max-height: 1000px !important;
    }
    
    .hero-title {
        font-size: 6rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.8rem !important;
    }
    
    .stat-icon {
        font-size: 4.5rem !important;
    }
    
    .stat-item h3 {
        font-size: 3.8rem !important;
    }
}

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

/* Standard Laptop (1440px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .hero {
        min-height: 70vh !important;
        max-height: 800px !important;
    }
    
    .hero-title {
        font-size: 4.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.4rem !important;
    }
}

/* Laptop (1366px - Common) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .hero {
        min-height: 70vh !important;
        max-height: 750px !important;
    }
    
    .hero-title {
        font-size: 4rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.3rem !important;
    }
    
    .stat-icon {
        font-size: 3.2rem !important;
    }
    
    .stat-item h3 {
        font-size: 2.8rem !important;
    }
}

/* Tablet Landscape */
@media (max-width: 1199px) {
    .hero {
        min-height: 65vh !important;
        max-height: 700px !important;
        padding: 6rem 0 4rem 0 !important;
    }
    
    .hero-title {
        font-size: 3.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    .hero-stats {
        gap: 1.5rem !important;
    }
    
    .stat-item {
        padding: 1.8rem 2rem !important;
        min-width: 140px !important;
    }
    
    .stat-icon {
        font-size: 3rem !important;
    }
    
    .stat-item h3 {
        font-size: 2.5rem !important;
    }
}

/* Tablet Portrait */
@media (max-width: 991px) {
    .hero {
        min-height: 70vh !important;
        max-height: 650px !important;
        padding: 5rem 0 3rem 0 !important;
    }
    
    .hero-title {
        font-size: 3rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.15rem !important;
    }
    
    .hero-content-gradient {
        background: linear-gradient(to right, 
                    rgba(255, 255, 255, 0.85) 0%, 
                    rgba(255, 255, 255, 0.55) 40%,
                    rgba(255, 255, 255, 0.25) 70%,
                    transparent 100%) !important;
    }
    
    .hero-stats {
        gap: 1.2rem !important;
    }
    
    .stat-item {
        padding: 1.5rem 1.5rem !important;
        min-width: 120px !important;
    }
}

/* Mobile Landscape */
@media (max-width: 767px) {
    .hero {
        min-height: 80vh !important;
        max-height: none !important;
        padding: 5rem 0 3rem 0 !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        margin-bottom: 2.5rem !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        max-width: 350px !important;
    }
    
    .hero-stats {
        gap: 1rem !important;
        margin-top: 2rem !important;
    }
    
    .stat-item {
        padding: 1.3rem 1.2rem !important;
        min-width: 140px !important;
    }
    
    .stat-icon {
        font-size: 2.5rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .stat-item h3 {
        font-size: 2.2rem !important;
    }
    
    .hero-content-gradient {
        background: linear-gradient(to bottom, 
                    rgba(255, 255, 255, 0.90) 0%, 
                    rgba(255, 255, 255, 0.75) 50%,
                    rgba(255, 255, 255, 0.60) 80%,
                    rgba(255, 255, 255, 0.45) 100%) !important;
    }
    
    .scroll-indicator {
        bottom: 1.5rem !important;
    }
    
    .hero-slider-dots {
        bottom: 1.5rem !important;
        right: 1.5rem !important;
        gap: 0.8rem !important;
    }
    
    .slider-dot {
        width: 12px !important;
        height: 12px !important;
    }
}

/* Mobile Portrait */
@media (max-width: 575px) {
    .hero {
        padding: 4.5rem 0 2.5rem 0 !important;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        margin-bottom: 1.2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-stats {
        gap: 0.8rem !important;
    }
    
    .stat-item {
        padding: 1.2rem 1rem !important;
        min-width: 130px !important;
        border-radius: 15px !important;
    }
    
    .stat-icon {
        font-size: 2.2rem !important;
    }
    
    .stat-item h3 {
        font-size: 2rem !important;
    }
}

/* iPhone and Small Mobile */
@media (max-width: 430px) {
    .hero-title {
        font-size: 1.9rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
    }
    
    .stat-item {
        padding: 1rem 0.8rem !important;
        min-width: 120px !important;
    }
    
    .stat-icon {
        font-size: 2rem !important;
    }
    
    .stat-item h3 {
        font-size: 1.8rem !important;
    }
}

/* Ensure all effects work */
* {
    pointer-events: auto !important;
}

.hero-image-overlay,
.hero-content-gradient {
    pointer-events: none !important;
}
