/* ================= LOCATION PAGES SHARED CSS ================= */

:root {
    --gold: #F0C66D;
    --gold-dark: #C9973B;
    --white: #FFFFFF;
    --dark: #1a1a1a;
    --gray: #666;
    --light-bg: #fafafa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ================= HERO SECTION ================= */
.location-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
    padding: 120px 5% 80px;
}

.location-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 Q 25 40, 50 50 T 100 50" stroke="rgba(240,198,109,0.1)" stroke-width="2" fill="none"/></svg>');
    opacity: 0.15;
    z-index: 1;
}

.location-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(26, 26, 26, 0.85) 100%);
    z-index: 2;
}

.location-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 198, 109, 0.15);
    border: 2px solid var(--gold);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.location-badge i {
    font-size: 1.1rem;
}

.location-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
}

.location-hero h1 .highlight {
    color: var(--gold);
}

.location-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.location-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 25px rgba(201, 151, 59, 0.4);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(201, 151, 59, 0.5);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
}

/* ================= MAIN CONTENT ================= */
.location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ================= SERVICE HIGHLIGHTS ================= */
.service-highlights {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 20px auto 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.highlight-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 6px 20px rgba(201, 151, 59, 0.3);
}

.highlight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 700;
}

.highlight-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ================= LOCAL INFO SECTION ================= */
.local-info {
    padding: 80px 0;
    background: white;
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 25px;
    letter-spacing: 1.5px;
}

.info-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
    margin-top: 30px;
}

.info-list li {
    padding: 15px 0;
    color: var(--dark);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    border-bottom: 1px solid #eee;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 2px;
}

.info-visual {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 50px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 40px rgba(201, 151, 59, 0.3);
}

.coverage-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.coverage-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.coverage-list {
    list-style: none;
}

.coverage-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.coverage-list i {
    color: white;
}

/* ================= PRICING PREVIEW ================= */
.pricing-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    text-align: center;
}

.price-highlight {
    background: white;
    max-width: 600px;
    margin: 40px auto 0;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--gold);
}

.price-highlight h3 {
    font-size: 4rem;
    color: var(--gold-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.price-highlight .per {
    font-size: 1.2rem;
    color: var(--gray);
    display: block;
    margin-bottom: 25px;
}

.price-highlight p {
    color: var(--dark);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ================= CTA SECTION ================= */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 198, 109, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 968px) {
    .location-hero {
        min-height: 55vh;
        padding: 100px 6% 60px;
    }

    .location-hero h1 {
        font-size: 3rem;
    }

    .location-hero p {
        font-size: 1.15rem;
    }

    .location-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .final-cta h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 640px) {
    .location-hero h1 {
        font-size: 2.2rem;
    }

    .location-hero p {
        font-size: 1.05rem;
    }

    .cta-btn {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .price-highlight {
        padding: 35px 25px;
    }

    .price-highlight h3 {
        font-size: 3rem;
    }

    .final-cta h2 {
        font-size: 2.2rem;
    }

    .final-cta p {
        font-size: 1.1rem;
    }
}