﻿.locations-page {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;background:var(--brand);padding: 20px 20px;color:white;
}

.locations-hero {
    text-align: center;
    margin-bottom: 40px;
}

    .locations-hero h1 {
        color: var(--gold);
        font-size: 2.5rem;
    }

    .locations-hero p {
       background:#111;padding:20px;
        max-width: 900px;
        margin: 10px auto 0;color:var(--card);border-radius:10px;
    }

.brand-trust-section {
    text-align: center;
    margin-bottom: 40px;
}

    .brand-trust-section p {
        
       background:#111;padding:20px;border-radius:10px;
        max-width: 900px;
        margin: 10px auto 0;color:var(--card);
    }

.seo-areas-summary {
    text-align: center;
     margin-bottom: 40px;
}
.brand-trust-section h2 {
    color: var(--h2);
}
 

    .seo-areas-summary p {
     background:#111;padding:20px;border-radius:10px;
        max-width: 900px;
        margin: 10px auto 0;color:var(--card);
    }
/* GRID */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* CARD */
.location-card {
    background: var(--bg-card-services);
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

    .location-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 20px rgba(212,175,55,0.25);
    }

    .location-card h3 {
        color: var(--gold);
        margin-bottom: 10px;
    }
.cta-section {
    background: linear-gradient(135deg, #0f3d2e, #1f6f4a);
    color: #fff;
    padding: 70px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 60px auto;
    max-width: 1100px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.cta-inner h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-inner p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #f4c542;
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cta-button:hover {
    background: #ffd76a;
    transform: translateY(-2px);
}