.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-actions {
    margin-left: auto;
}

.header-icon {
    color: #6b7280;
    transition: color 0.3s;
}

    .header-icon:hover {
        color: #2563eb;
    }

.navbar-nav .nav-link {
    color: #4b5563;
    font-weight: 500;
    padding: 8px 16px;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: #2563eb;
    }

.navbar-nav .dd-menu::after {
    content: '';
    display: none;
}


.hero-area-custom {
    background: url('/images/megacity.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    padding-top: 10rem;
}

    .hero-area-custom::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
        pointer-events: none;
    }

.hero-title {
    color: white;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.search-form-custom {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-top: 30px;
}

    .search-form-custom .row {
        margin: 0;
    }

    .search-form-custom .col-md-3,
    .search-form-custom .col-md-2 {
        padding: 0 5px;
    }

.search-input-custom {
    position: relative;
}

    .search-input-custom input,
    .search-input-custom select {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        font-size: 14px;
    }

        .search-input-custom input:focus,
        .search-input-custom select:focus {
            outline: none;
            border-color: #2563eb;
        }

.search-btn-custom {
    width: 100%;
}

    .search-btn-custom .btn {
        width: 100%;
        background-color: #ef4444;
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s;
    }

        .search-btn-custom .btn:hover {
            background-color: #dc2626;
        }

/* Feature Cards */
.feature-cards-section {
    padding: 60px 0;
    background: white;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border: 2px solid #2563eb;
    border-radius: 12px;
    transition: all 0.3s;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
    }

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card.blue .feature-icon {
    color: #2563eb;
}

.feature-card.green .feature-icon {
    color: #10b981;
}

.feature-card.red .feature-icon {
    color: #ef4444;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

/* Popular Categories */
.popular-categories {
    padding: 60px 0;
    background: #f9fafb;
}

.section-title-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

    .section-title-custom h2 {
        font-size: 36px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 0;
    }

.show-all-btn {
    background-color: #2563eb;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 14px;
}

    .show-all-btn:hover {
        background-color: #1e40af;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
        color: white;
    }

    .show-all-btn i {
        font-size: 16px;
    }

@@media (max-width: 768px) {
    .section-title-custom {
        flex-direction: column;
        align-items: flex-start;
    }

        .section-title-custom h2 {
            font-size: 28px;
        }

    .show-all-btn {
        width: 100%;
        justify-content: center;
    }
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    height: 100%;
}

    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-color: #2563eb;
    }

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 12px;
}

    .category-icon img {
        max-width: 100%;
        max-height: 100%;
    }

.category-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

/* Featured Suppliers */
.featured-suppliers {
    padding: 60px 0;
    background: white;
}

.supplier-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
    position: relative;
    height: 100%;
}

    .supplier-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .supplier-card.premium::before {
        content: 'PREMIUM';
        position: absolute;
        top: 15px;
        left: 15px;
        background: #f97316;
        color: white;
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 11px;
        font-weight: 600;
        z-index: 1;
    }

.supplier-logo {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 18px;
}

    .supplier-logo.abc {
        background: #ef4444;
    }

    .supplier-logo.elit {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        width: 100%;
        height: 150px;
        border-radius: 8px;
        margin-bottom: 15px;
    }

        .supplier-logo.elit img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

    .supplier-logo.gida {
        background: #10b981;
    }

    .supplier-logo.tekno {
        background: #2563eb;
    }

.supplier-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 10px;
}

    .supplier-location i {
        color: #ef4444;
    }

.supplier-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

    .supplier-rating .stars {
        color: #fbbf24;
    }

    .supplier-rating .rating-text {
        color: #6b7280;
        font-size: 12px;
    }

.supplier-description {
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 15px;
}

.supplier-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.supplier-btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

    .supplier-btn.location {
        background: #2563eb;
        color: white;
    }

    .supplier-btn.details {
        background: #10b981;
        color: white;
    }

        .supplier-btn.details.premium {
            background: #f97316;
            color: white;
        }

    .supplier-btn:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }