/* Hero Badges Styles - Dedicated CSS File */

.section-badge {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    padding: 20px 15px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    width: 100% !important;
    height: 120px !important;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 15px !important;
}

.section-badge i {
    font-size: 2.5rem !important;
    margin-bottom: 10px !important;
    display: block !important;
}

.badge-text {
    font-size: 1rem !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
}

/* الألوان المميزة لكل badge */
.badge-economy {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4) !important;
}

.badge-economy:hover {
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5) !important;
    transform: translateY(-5px) !important;
}

.badge-schedule {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4) !important;
}

.badge-schedule:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5) !important;
    transform: translateY(-5px) !important;
}

.badge-transport {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4) !important;
}

.badge-transport:hover {
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5) !important;
    transform: translateY(-5px) !important;
}

.badge-hotels {
    background: linear-gradient(135deg, #e11d48 0%, #be185d 100%) !important;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.4) !important;
}

.badge-hotels:hover {
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.5) !important;
    transform: translateY(-5px) !important;
}

.hero-badges {
    margin-top: 2rem !important;
}

/* Responsive - على الموبايل 2 في كل سطر */
@media (max-width: 992px) {
    .section-badge {
        height: 120px !important;
        padding: 18px 12px !important;
    }
    
    .section-badge i {
        font-size: 2.2rem !important;
    }
    
    .badge-text {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 768px) {
    .section-badge {
        height: 110px !important;
        padding: 15px 10px !important;
        border-radius: 15px !important;
    }
    
    .section-badge i {
        font-size: 2rem !important;
        margin-bottom: 8px !important;
    }
    
    .badge-text {
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-badges {
        margin-top: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .section-badge {
        height: 100px !important;
        padding: 12px 8px !important;
        border-radius: 12px !important;
    }
    
    .section-badge i {
        font-size: 1.8rem !important;
        margin-bottom: 6px !important;
    }
    
    .badge-text {
        font-size: 0.8rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-badges {
        margin-top: 1rem !important;
    }
}