/* ===== HERO STATS FINAL - NO ANIMATIONS ===== */
/* Clean, properly aligned stats for all devices */

/* Remove all animations and transitions */
.stat-item,
.stat-icon,
.stat-icon i,
.stat-item h3,
.stat-item p {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

/* Disable hover effects */
.stat-item:hover {
    transform: none !important;
    box-shadow: inherit !important;
}

.stat-item:hover .stat-icon {
    transform: none !important;
}

/* ===== DESKTOP STATS (992px and above) - ORIGINAL DESIGN ===== */
@media (min-width: 992px) {
    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 2rem !important;
        margin-top: 3rem !important;
        width: 100% !important;
    }
    
    .stat-item {
        text-align: center;
        padding: 1.5rem;
        background: #FFFFFF;
        border-radius: 15px;
        border: 2px solid rgba(220, 20, 60, 0.2);
        position: relative;
        overflow: hidden;
    }
    
    .stat-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #DC143C, #FF6B35);
        opacity: 0;
        z-index: 0;
    }
    
    .stat-icon {
        font-size: 3rem;
        color: #DC143C;
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
    }
    
    .stat-icon i {
        font-size: 3rem;
        color: #DC143C;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
        font-weight: 800;
        color: #1A1A1A;
        margin-bottom: 0.5rem;
        position: relative;
        z-index: 1;
    }
    
    .stat-item p {
        font-size: 1rem;
        font-weight: 600;
        color: #666666;
        margin: 0;
        position: relative;
        z-index: 1;
    }
}

/* ===== TABLET LANDSCAPE (768px - 991px) ===== */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        margin-top: 40px !important;
        width: 100% !important;
    }
    
    .stat-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 20px 12px !important;
        background: #FFFFFF !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid rgba(220, 20, 60, 0.1) !important;
        width: 100% !important;
        min-height: 150px !important;
    }
    
    .stat-icon {
        width: 50px !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: linear-gradient(135deg, #DC143C 0%, #FF6B35 100%) !important;
        border-radius: 50% !important;
        margin-bottom: 12px !important;
        box-shadow: 0 3px 12px rgba(220, 20, 60, 0.3) !important;
    }
    
    .stat-icon i {
        font-size: 22px !important;
        color: #FFFFFF !important;
    }
    
    .stat-item h3 {
        font-size: 2rem !important;
        font-weight: 700 !important;
        background: linear-gradient(135deg, #DC143C 0%, #FF6B35 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        margin: 8px 0 5px 0 !important;
        line-height: 1 !important;
    }
    
    .stat-item p {
        font-size: 0.85rem !important;
        color: #666666 !important;
        margin: 0 !important;
        font-weight: 500 !important;
        line-height: 1.3 !important;
    }
}

/* ===== TABLET PORTRAIT (576px - 767px) ===== */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        margin-top: 40px !important;
        width: 100% !important;
    }
    
    .stat-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 20px 12px !important;
        background: #FFFFFF !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid rgba(220, 20, 60, 0.1) !important;
        width: 100% !important;
        min-height: 150px !important;
    }
    
    .stat-icon {
        width: 50px !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: linear-gradient(135deg, #DC143C 0%, #FF6B35 100%) !important;
        border-radius: 50% !important;
        margin-bottom: 12px !important;
        box-shadow: 0 3px 12px rgba(220, 20, 60, 0.3) !important;
    }
    
    .stat-icon i {
        font-size: 22px !important;
        color: #FFFFFF !important;
    }
    
    .stat-item h3 {
        font-size: 2rem !important;
        font-weight: 700 !important;
        background: linear-gradient(135deg, #DC143C 0%, #FF6B35 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        margin: 8px 0 5px 0 !important;
        line-height: 1 !important;
    }
    
    .stat-item p {
        font-size: 0.85rem !important;
        color: #666666 !important;
        margin: 0 !important;
        font-weight: 500 !important;
        line-height: 1.3 !important;
    }
}

/* ===== MOBILE PORTRAIT (up to 575px) ===== */
@media (max-width: 575px) {
    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        margin-top: 30px !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    .stat-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 18px 10px !important;
        background: #FFFFFF !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid rgba(220, 20, 60, 0.1) !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 140px !important;
    }
    
    .stat-icon {
        width: 45px !important;
        height: 45px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: linear-gradient(135deg, #DC143C 0%, #FF6B35 100%) !important;
        border-radius: 50% !important;
        margin-bottom: 10px !important;
        box-shadow: 0 3px 12px rgba(220, 20, 60, 0.3) !important;
    }
    
    .stat-icon i {
        font-size: 20px !important;
        color: #FFFFFF !important;
    }
    
    .stat-item h3 {
        font-size: 1.8rem !important;
        font-weight: 700 !important;
        background: linear-gradient(135deg, #DC143C 0%, #FF6B35 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        margin: 8px 0 5px 0 !important;
        line-height: 1 !important;
    }
    
    .stat-item p {
        font-size: 0.8rem !important;
        color: #666666 !important;
        margin: 0 !important;
        font-weight: 500 !important;
        line-height: 1.3 !important;
    }
}

/* ===== EXTRA SMALL MOBILE (up to 430px) ===== */
@media (max-width: 430px) {
    .hero-stats {
        gap: 10px !important;
        margin-top: 25px !important;
    }
    
    .stat-item {
        padding: 15px 8px !important;
        min-height: 130px !important;
        border-radius: 10px !important;
    }
    
    .stat-icon {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 8px !important;
    }
    
    .stat-icon i {
        font-size: 18px !important;
    }
    
    .stat-item h3 {
        font-size: 1.6rem !important;
        margin: 6px 0 4px 0 !important;
    }
    
    .stat-item p {
        font-size: 0.75rem !important;
    }
}

/* ===== VERY SMALL MOBILE (up to 375px) ===== */
@media (max-width: 375px) {
    .hero-stats {
        gap: 8px !important;
        margin-top: 20px !important;
    }
    
    .stat-item {
        padding: 12px 6px !important;
        min-height: 120px !important;
    }
    
    .stat-icon {
        width: 38px !important;
        height: 38px !important;
    }
    
    .stat-icon i {
        font-size: 16px !important;
    }
    
    .stat-item h3 {
        font-size: 1.5rem !important;
    }
    
    .stat-item p {
        font-size: 0.7rem !important;
    }
}

/* ===== LANDSCAPE MODE ===== */
@media (max-height: 600px) and (orientation: landscape) and (max-width: 991px) {
    .hero-stats {
        margin-top: 20px !important;
        gap: 10px !important;
    }
    
    .stat-item {
        padding: 12px 8px !important;
        min-height: auto !important;
    }
    
    .stat-icon {
        width: 35px !important;
        height: 35px !important;
        margin-bottom: 5px !important;
    }
    
    .stat-icon i {
        font-size: 16px !important;
    }
    
    .stat-item h3 {
        font-size: 1.4rem !important;
        margin: 5px 0 !important;
    }
    
    .stat-item p {
        font-size: 0.7rem !important;
    }
}
