/* ============================================================
   AREAS WE COVER - PAGE SPECIFIC STYLES
   ============================================================ */

/* ===== PAGE HERO ===== */
.areas-hero {
    background: #1a1a1a;
    padding: 48px 0 40px;
    text-align: center;
}

.areas-hero h1 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.areas-hero h1 span {
    color: #D32F2F;
}

.areas-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== COVERAGE MAP SECTION ===== */
.areas-map-section {
    padding: 60px 0;
    background: #F8F9FA;
}

/* ===== AREA LISTINGS ===== */
.area-listings {
    padding: 60px 0;
    background: #fff;
}

/* County block */
.county-block {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #E5E5E5;
}

.county-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.county-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.county-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.county-header a {
    font-size: 0.82rem;
    font-weight: 700;
    color: #D32F2F;
    text-decoration: none;
    border: 1px solid #D32F2F;
    border-radius: 40px;
    padding: 4px 14px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.county-header a:hover {
    background: #D32F2F;
    color: #fff;
}

/* Sub-area grid (London) */
.sub-area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sub-area-card {
    background: #F8F9FA;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 20px;
}

.sub-area-card h3 {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 12px;
}

.sub-area-card h3 a {
    color: #D32F2F;
    text-decoration: none;
}

.sub-area-card h3 a:hover {
    text-decoration: underline;
}

.sub-area-card h3.unbuilt {
    color: #999;
}

.borough-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.borough-tag {
    font-size: 0.75rem;
    color: #555;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    padding: 3px 8px;
    line-height: 1.4;
}

/* City grid (counties) */
.city-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.city-item {
    padding: 12px 14px;
    background: #F8F9FA;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #999;
    transition: background 0.2s, border-color 0.2s;
}

.city-item a {
    color: #D32F2F;
    text-decoration: none;
    font-weight: 700;
}

.city-item a:hover {
    text-decoration: underline;
}

/* ===== CTA BANNER ===== */
.areas-cta {
    background: #D32F2F;
    padding: 36px 0;
    text-align: center;
}

.areas-cta h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.areas-cta p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.areas-cta .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #D32F2F;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.areas-cta .btn-white:hover {
    background: #f0f0f0;
}

/* ===== FOOTER FIXES ===== */
.contact-list .icon {
    stroke: #D32F2F !important;
    fill: none !important;
    color: #D32F2F !important;
}

.footer-payments img {
    background: #ffffff;
    border-radius: 4px;
    padding: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .sub-area-grid { grid-template-columns: repeat(3, 1fr); }
    .city-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .sub-area-grid { grid-template-columns: repeat(2, 1fr); }
    .city-grid { grid-template-columns: repeat(3, 1fr); }
    .areas-hero h1 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .sub-area-grid { grid-template-columns: 1fr; }
    .city-grid { grid-template-columns: repeat(2, 1fr); }
}