/* ================================================================
   MTAA HERO
================================================================ */

.hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 86px;
    background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 42%),
        radial-gradient(circle at bottom left, rgba(255,255,255,.10), transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: auto;
    text-align: center;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    backdrop-filter: blur(6px);
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: #f8f9fa;
    font-size: 20px;
    max-width: 760px;
    margin: 0 auto 34px;
    line-height: 1.65;
}

/* ---------------------------------------------------------------
   Search bar
---------------------------------------------------------------- */

.hero-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px auto;
    align-items: center;
    gap: 8px;
    width: min(920px, 100%);
    margin: 0 auto;
    padding: 8px;
    background: #fff;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 999px;
    box-shadow: 0 20px 45px rgba(7, 40, 76, .22);
}

.hero-search-input,
.hero-search-category {
    min-width: 0;
    height: 58px;
    display: flex;
    align-items: center;
}

.hero-search-input {
    position: relative;
}

.hero-search-icon,
.hero-search-category > i {
    color: #6c757d;
    flex: 0 0 auto;
}

.hero-search-icon {
    margin-left: 18px;
    margin-right: 10px;
}

.hero-search-input input {
    width: 100%;
    height: 100%;
    border: 0 !important;
    outline: 0 !important;
    background: transparent;
    padding: 0 42px 0 0 !important;
    border-radius: 0 !important;
    font-size: 15px;
    color: #172033;
}

.hero-search-input input::placeholder {
    color: #8a94a6;
}

.hero-voice-button {
    position: absolute;
    right: 8px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f1f5f9;
    color: #198754;
    cursor: pointer;
}

.hero-search-category {
    border-left: 1px solid #e9ecef;
    padding-left: 18px;
}

.hero-search-category select {
    width: 100%;
    height: 100%;
    border: 0 !important;
    outline: 0 !important;
    background: transparent;
    padding: 0 12px !important;
    border-radius: 0 !important;
    color: #303846;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.hero-search-button {
    height: 58px;
    border: 0;
    border-radius: 999px !important;
    padding: 0 26px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: none;
}
/* ============================================================
   BUSINESS HERO
   ============================================================ */

.business-hero {
    width: 100%;
}


/* ============================================================
   COVER
   ============================================================ */

.business-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    background: #e5e7eb;
}


.business-cover-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* ============================================================
   HERO CARD
   ============================================================ */

.business-hero-card {
    position: relative;
    background: #ffffff;
    padding: 30px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}


/* ============================================================
   LOGO
   ============================================================ */

.business-logo-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 5px solid #ffffff;
    border-radius: 50%;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
}


.business-logo {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    background: #ffffff;
}


/* ============================================================
   BUSINESS NAME
   ============================================================ */

.business-name {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
}


/* ============================================================
   BUSINESS CATEGORY
   ============================================================ */

.business-category {
    color: #64748b;
    font-size: 1rem;
}


/* ============================================================
   BUSINESS META
   ============================================================ */

.business-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;

    color: #475569;

    font-size: .95rem;
}


.business-meta > span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 991px) {

    .business-cover {
        aspect-ratio: 16 / 9;
        border-radius: 14px 14px 0 0;
    }

    .business-hero-card {
        padding: 25px;
    }

    .business-logo-wrapper {
        width: 130px;
        height: 130px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 575px) {

    .business-cover {
        aspect-ratio: 16 / 9;
        border-radius: 12px 12px 0 0;
    }

    .business-hero-card {
        padding: 20px 16px;
        border-radius: 0 0 12px 12px;
    }

    .business-logo-wrapper {
        width: 110px;
        height: 110px;
        border-width: 4px;
    }

    .business-name {
        font-size: 1.45rem;
    }

    .business-meta {
        gap: 8px 12px;
        font-size: .85rem;
    }

}
/* ---------------------------------------------------------------
   Popular searches / stats
---------------------------------------------------------------- */

.popular-searches {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px !important;
    color: rgba(255,255,255,.9);
    font-size: 13px;
}

.popular-searches span {
    font-weight: 800;
}

.popular-searches a {
    color: #fff;
    text-decoration: none;
    opacity: .92;
}

.popular-searches a:hover {
    text-decoration: underline;
    opacity: 1;
}

.hero-stats {
    margin-top: 52px;
}

@media (max-width: 768px) {
    .hero {
        padding: 112px 0 62px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 26px;
    }

    .hero-search {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 7px;
        border-radius: 24px;
    }

    .hero-search-input,
    .hero-search-category {
        height: 54px;
    }

    .hero-search-category {
        border-left: 0;
        border-top: 1px solid #e9ecef;
        padding-left: 18px;
    }

    .hero-search-button {
        width: 100%;
        height: 52px;
        margin-top: 7px;
    }
}
