/* =====================
   GLOBAL STYLES
===================== */
body {
    font-family: 'Inter', sans-serif;
    background: #f9fafb;
    color: #111827;
}

/* =====================
   BRAND / HERO SECTION
===================== */
.bg-brand-premium {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
}

.hover-lift {
    transition: all 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.search-glass {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* =====================
   CITY SELECT DROPDOWN
===================== */
.city-select-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 14px;
    height: 56px;
    position: relative;
    width: 100%;
}

.city-select-wrapper i {
    color: #059669;
}

.city-select {
    appearance: none;
    border: none;
    background: transparent;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    outline: none;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.city-select-wrapper .arrow {
    position: absolute;
    right: 16px;
    font-size: 12px;
    color: #64748b;
    pointer-events: none;
}

.city-select-wrapper:hover {
    border-color: #34d399;
    background: #f0fdf4;
}

/* =====================
   SEARCH SUGGESTION BOX
===================== */
#suggestionBox {
    z-index: 50;
}

#suggestionBox li {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
}

#suggestionBox li:hover {
    background: #f0fdf4;
}

/* =====================
   ICON CATEGORY GRID
===================== */
.icon-box {
    width: 56px;
    height: 56px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.group:hover .icon-box {
    border-color: #0c4b33;
    background: #f0fdf4;
    transform: translateY(-3px);
}

.group span {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    color: #4b5563;
    line-height: 1.2;
}

.group:hover span {
    color: #0c4b33;
}

/* =====================
   CATEGORY ICON EFFECT
===================== */
.category-icon {
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    transition: all 0.2s;
}

.category-item:hover .category-icon {
    background: #059669;
    border-color: #059669;
    color: #ffffff !important;
}

/* =====================
   FAQ SECTION
===================== */
.faq-item {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #10b981;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/* =====================
   TYPOGRAPHY HELPERS
===================== */
.text-muted {
    color: #6b7280;
}

.section-title {
    font-weight: 800;
    color: #0f172a;
}

/* =====================
   Z-INDEX FIXES
===================== */
.max-w-5xl.mx-auto.relative.z-10 {
    z-index: 21;
}


    /* ===== MASTER MOBILE HIDE CLASS ===== */
@media (max-width: 767px) {
    .hide-on-phone {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }
}


        .icon-box {
            @apply w-12 h-12 md:w-16 md:h-16 bg-white shadow-sm border border-gray-100 rounded-2xl flex items-center justify-center mb-2 transition-all group-hover:shadow-md group-hover:-translate-y-1;
        }
        .search-sticky-mobile {
            position: sticky;
            top: 0;
            z-index: 100;
            background: #fff;
            padding: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
  
