/* ============================================
   Location Pages UI
   Consistent layout for city pages + index
   ============================================ */

.location-page .breadcrumb-area,
.locations-index .breadcrumb-area {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.location-page .navbar-area.navbar-nine,
.locations-index .navbar-area.navbar-nine {
    background: var(--primary-gradient);
}

.location-page .navbar-area.navbar-nine .navbar-collapse,
.locations-index .navbar-area.navbar-nine .navbar-collapse {
    background: var(--primary-gradient);
}

.location-page .breadcrumb,
.locations-index .breadcrumb {
    margin: 0;
    padding: 14px 0;
    background: transparent;
    font-size: 14px;
}

.location-page .breadcrumb a,
.locations-index .breadcrumb a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.location-hero,
.locations-hero {
    position: relative;
    padding: 110px 0 90px;
    background: var(--primary-gradient);
    color: #fff;
    overflow: hidden;
}

.location-hero::before,
.locations-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 60%),
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.15), transparent 45%);
    opacity: 0.9;
}

.location-hero::after,
.locations-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 90px;
    background: var(--off-white);
    clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 100%);
}

.location-hero .hero-copy,
.locations-hero .hero-copy {
    position: relative;
    z-index: 1;
}

.location-hero .eyebrow,
.locations-hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.8;
    margin-bottom: 16px;
}

.location-hero h1,
.locations-hero h1 {
    color: #fff;
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
}

.location-hero p.lead,
.locations-hero p.lead {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    max-width: 560px;
}

.location-hero .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.location-hero .hero-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.location-hero .kpi-card {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 16px;
    text-align: left;
    backdrop-filter: blur(6px);
}

.location-hero .kpi-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.location-hero .kpi-card span {
    font-size: 13px;
    opacity: 0.85;
}

.location-hero .hero-image {
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.location-hero .hero-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.location-section {
    padding: 80px 0;
    background: var(--off-white);
}

.location-section.alt {
    background: #fff;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
    margin-top: 32px;
}

.location-card-modern {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.location-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.location-card-modern .icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(230, 53, 67, 0.12);
    color: var(--primary-red);
    font-size: 24px;
    margin-bottom: 16px;
}

.location-card-modern h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.location-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, rgba(230, 53, 67, 0.08) 0%, rgba(179, 27, 39, 0.12) 100%);
}

.location-cta .cta-box {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.location-faq .accordion-button {
    font-weight: 600;
}

.location-faq .accordion-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 12px;
}

.location-search {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.location-search input {
    flex: 1 1 260px;
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.location-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.location-badge {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(230, 53, 67, 0.12);
    color: var(--primary-red);
    font-weight: 600;
    font-size: 13px;
}

.locations-index .location-card {
    border-radius: 16px;
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-sm);
}

.locations-index .location-card:hover {
    box-shadow: var(--shadow-lg);
}

@media (max-width: 991px) {
    .location-hero,
    .locations-hero {
        padding: 90px 0 70px;
    }

    .location-hero h1,
    .locations-hero h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 575px) {
    .location-hero .hero-actions {
        flex-direction: column;
    }

    .location-hero .hero-actions .btn {
        width: 100%;
    }

    .location-cta .cta-box {
        padding: 30px;
    }
}
