/* ===================================
   Location Page Styles
   =================================== */

/* Hero - smaller for location pages */
.hero-location {
    min-height: 420px;
    padding: 110px 0 60px;
}

.hero-location h1 {
    font-size: 2.8rem;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    margin: 0 6px;
}

/* Location Intro */
.location-intro {
    padding: 80px 0;
    background: var(--light-bg);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.intro-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.intro-content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.intro-stat {
    text-align: center;
}

.intro-stat strong {
    display: block;
    font-size: 2rem;
    color: var(--accent);
    font-weight: 800;
}

.intro-stat span {
    font-size: 0.85rem;
    color: #666;
}

/* Sidebar card */
.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--accent);
    position: sticky;
    top: 96px;
}

.sidebar-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    margin-bottom: 28px;
}

.check-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-full {
    display: block;
    text-align: center;
    width: 100%;
}

/* Location services tweaks */
.location-services {
    padding: 80px 0;
}

/* Nearby areas */
.nearby-areas {
    padding: 80px 0;
    background: var(--light-bg);
}

.nearby-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
    list-style: none;
}

.nearby-grid li {
    list-style: none;
}

.nearby-grid li a,
.nearby-grid li span {
    display: inline-block;
    padding: 12px 24px;
    background: var(--white);
    border-radius: var(--radius);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nearby-grid li a:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nearby-cta {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}

.nearby-cta a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
}

/* Location CTA */
.location-cta {
    padding: 80px 0;
    background: var(--white);
}

.cta-box {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-box p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-location {
        min-height: 360px;
        padding: 100px 0 50px;
    }

    .hero-location h1 {
        font-size: 2rem;
    }

    .intro-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .cta-box h2 {
        font-size: 1.6rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-location h1 {
        font-size: 1.7rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }
}
