/* ─── Location Page Styles (location-page.css) ───────────────────────────── */

/* Hero */
.lp-hero {
    min-height: 55vh;
    background-image: url('hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 4rem;
    color: var(--white);
}

.lp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.88) 0%, rgba(0,32,91,0.6) 100%);
}

.lp-hero-content {
    position: relative;
    z-index: 10;
}

.lp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.lp-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.lp-breadcrumb a:hover { color: var(--gold-light); }

#lp-hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 0.5rem 0 1rem;
    color: var(--white);
}

.lp-hero-sub {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 560px;
}

/* Stats bar */
.lp-stats-bar {
    background: var(--off-white);
    border-bottom: 1px solid #e4e9f0;
    padding: 2rem 0;
}

.lp-stats-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.lp-authority-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-light);
    background: var(--white);
    border: 1px solid #dde4f0;
    border-left: 4px solid var(--gold);
    padding: 0.6rem 1rem;
    border-radius: 4px;
    flex: 1;
    min-width: 200px;
}

.lp-authority-label {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.lp-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

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

/* Intro section */
.lp-intro {
    padding: 6rem 0;
}

.lp-intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: start;
}

.lp-intro-text h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin: 0.75rem 0 1.5rem;
    line-height: 1.2;
}

.lp-intro-text .lead {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.lp-intro-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.lp-contact-card {
    background: var(--primary);
    color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0,32,91,0.25);
    position: sticky;
    top: 100px;
}

.lp-contact-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.lp-contact-card > p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.lp-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.lp-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.lp-contact-icon { font-size: 1.1rem; }

.lp-contact-item a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.lp-contact-item a:hover { color: #fff; }
.lp-contact-item span { color: rgba(255,255,255,0.7); }

/* Services section */
.lp-services {
    padding: 6rem 0;
    background: var(--off-white);
}

.lp-permits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.lp-permit-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,32,91,0.08);
    border-bottom: 3px solid var(--gold);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lp-permit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,32,91,0.15);
}

.lp-permit-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.lp-permit-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.lp-services-cta {
    text-align: center;
    background: var(--primary);
    color: var(--white);
    padding: 3rem;
    border-radius: 10px;
}

.lp-services-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Process section */
.lp-process {
    background: var(--primary);
    padding: 6rem 0;
    color: var(--white);
}

/* Local FAQ */
.lp-faq {
    padding: 6rem 0;
    background: var(--white);
}

.lp-faq .faq-list {
    max-width: 860px;
    margin: 0 auto;
}

/* Nearby areas */
.lp-nearby {
    padding: 6rem 0;
    background: var(--off-white);
}

.lp-nearby-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.lp-nearby-card {
    background: var(--white);
    border-radius: 8px;
    padding: 1.4rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    border: 1px solid #e4e9f0;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,32,91,0.06);
}

.lp-nearby-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,32,91,0.15);
    border-left-color: var(--gold-light);
}

.lp-nearby-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.lp-nearby-region {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lp-nearby-arrow {
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 0.5rem;
    transition: transform 0.3s;
}

.lp-nearby-card:hover .lp-nearby-arrow {
    transform: translateX(5px);
}

/* ─── Mobile responsive for location pages ─────────────────────────── */
@media (max-width: 992px) {
    #lp-hero-title { font-size: 2.5rem; }
    .lp-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .lp-contact-card { position: static; }
    .lp-permits-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-nearby-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-stats-bar .container { flex-direction: column; align-items: flex-start; }
    .lp-stats { gap: 1.5rem; }
}

@media (max-width: 768px) {
    #lp-hero-title { font-size: 2rem; }
    .lp-hero { min-height: 50vh; }
    .lp-permits-grid { grid-template-columns: 1fr; }
    .lp-nearby-grid { grid-template-columns: 1fr 1fr; }
    .lp-intro { padding: 4rem 0; }
    .lp-services, .lp-faq, .lp-nearby { padding: 4rem 0; }
    .lp-process { padding: 4rem 0; }
    .lp-services-cta { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    #lp-hero-title { font-size: 1.7rem; }
    .lp-nearby-grid { grid-template-columns: 1fr; }
    .lp-intro-text h2 { font-size: 1.7rem; }
}

/* ─── Homepage Areas We Serve section ──────────────────────────────── */
.areas-section {
    padding: 8rem 0;
    background: var(--white);
}

.region-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.region-tab {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--primary);
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-tab:hover,
.region-tab.active {
    background: var(--gold);
    color: var(--white);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.city-card {
    background: var(--off-white);
    border-radius: 10px;
    padding: 1.5rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--gold);
}

.city-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,32,91,0.12);
    border-color: var(--gold-light);
}

.city-card[data-hidden="true"] {
    display: none;
}

.city-card-icon {
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}

.city-card-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.city-card-region {
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.city-card-cta {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.3s;
}

.city-card:hover .city-card-cta { gap: 0.6rem; }

.areas-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--primary);
    border-radius: 10px;
    color: var(--white);
}

.areas-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .cities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
    .region-tabs { gap: 0.5rem; }
    .region-tab { font-size: 0.72rem; padding: 0.45rem 1rem; }
}

@media (max-width: 480px) {
    .cities-grid { grid-template-columns: 1fr 1fr; }
}
