﻿ 

.hero-section {
    padding: 10px 0;  
}
 
.hero-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(13,110,253,.08);
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}
.anvu-main .container {
    background: #fff
}
.hero-title {
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.2;
    font-size:30px
}

.hero-desc {
    color: #64748b;
    font-size: 1.05rem;
}

.search-card,
.list-panel,
.map-panel,
.stats-card {
    background: rgba(255,255,255,.96);
    border: 1px solid var(--brand-border);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.search-card {
    padding: 24px;
}

.list-panel,
.map-panel {
    padding: 20px;
    height: 100%;
}

.stats-card {
    padding: 18px;
    text-align: center;
    height: 100%;
}

    .stats-card strong {
        display: block;
        font-size: 1.4rem;
        color: var(--brand-dark);
    }

.section-title {
    color: var(--brand-dark);
    font-weight: 800;
}

.form-label {
    font-weight: 700;
    margin-bottom: 8px;
}

.form-select,
.form-control {
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
}

    .form-select:focus,
    .form-control:focus {
        border-color: rgba(13,110,253,.45);
        box-shadow: 0 0 0 .25rem rgba(13,110,253,.12);
    }

.btn {
    border-radius: 14px;
    font-weight: 700;
    padding: 12px 18px;
}

.showroom-list {
    max-height: 720px;
    overflow-y: auto;
    padding-right: 4px;
}

.showroom-item {
    border: 1px solid var(--brand-border);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 14px;
    transition: all .2s ease;
    cursor: pointer;
    background: #fff;
}

    .showroom-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
        border-color: rgba(13,110,253,.35);
    }

    .showroom-item.active {
        border-color: var(--brand-primary);
        box-shadow: 0 0 0 .2rem rgba(13,110,253,.12);
        background: #f8fbff;
    }

.showroom-name {
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.showroom-meta {
    font-size: .95rem;
    color: #64748b;
    margin-bottom: 6px;
}

.showroom-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tag-soft {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(13,110,253,.08);
    color: var(--brand-primary);
    font-size: .82rem;
    font-weight: 700;
}

.map-frame {
    width: 100%;
    height: 560px;
    border: 0;
    border-radius: 18px;
    background: #eef2f7;
}

.map-info {
    border: 1px dashed #d7e2f0;
    background: #fbfdff;
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 16px;
}

.empty-state {
    border: 1px dashed #d1d5db;
    border-radius: 18px;
    padding: 32px 18px;
    text-align: center;
    color: #64748b;
    background: #fcfdff;
}

.contact-link {
    color: inherit;
    text-decoration: none;
}

    .contact-link:hover {
        color: var(--brand-primary);
    }

.footer {
    border-top: 1px solid var(--brand-border);
    background: #fff;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 52px 0 24px;
    }

    .map-frame {
        height: 420px;
    }

    .showroom-list {
        max-height: unset;
    }
}
