/* ══════════════════════════════════
   AREAS WE COVER — HERO SECTION
══════════════════════════════════ */
.areas-hero-section {
    position: relative;
    background: #0a0a0a;
    overflow: hidden;
    min-height: 520px;
}
.areas-hero-section .hero-bg-img {
    position: absolute;
    top: 0; right: 0;
    width: 65%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.85;
}
.areas-hero-section .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        to right,
        #0a0a0a 38%,
        rgba(10,10,10,0.85) 55%,
        rgba(10,10,10,0.2) 100%
    );
    z-index: 1;
}
.areas-hero-section .hero-content {
    position: relative;
    z-index: 2;
    padding: 90px 0 60px;
}
.areas-hero-section .eyebrow {
    color: #FFC600;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}
.areas-hero-section h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 6px;
}
.areas-hero-section h1 .orange {
    color: #FFC600;
    display: block;
}
.areas-hero-section .hero-desc {
    color: #ccc;
    font-size: 1.3rem;
    max-width: 440px;
    margin-top: 18px;
    line-height: 1.7;
}

/* ══════════════════════════════════
   FEATURE BADGES — 4 dark boxes
══════════════════════════════════ */
.feature-badges-bar {
    background: #0a0a0a;
    padding: 0 0 40px;
    position: relative;
    z-index: 2;
}
.feature-badge-box {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 20px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
}
.feature-badge-box .fb-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-badge-box .fb-icon i {
    color: #FFC600;
    font-size: 26px;
}
.feature-badge-box h6 {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 3px;
}
.feature-badge-box p {
    color: #999;
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

/* ══════════════════════════════════
   COVERAGE MAP — CTA BOX
══════════════════════════════════ */
.call-cta-box {
    background: #FFC600;
    border-radius: 10px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}
.call-cta-box .left {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}
.call-cta-box .left .ph-icon {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.call-cta-box .left small {
    font-size: 20px;
    opacity: 0.85;
    display: block;
    color: #fff;
}
.call-cta-box .left strong {
    font-size: 20px;
    font-weight: 800;
    display: block;
    color: #fff;
}
.call-cta-box .btn-call-now {
    background: #fff;
    color: #FFC600;
    font-weight: 800;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s;
}
.call-cta-box .btn-call-now:hover {
    background: #111;
    color: #fff;
}
.coverage-map-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

/* ══════════════════════════════════
   AREAS GRID
══════════════════════════════════ */
.area-card-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    color: #222;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.22s ease;
    height: 100%;
}
.area-card-link:hover {
    background: #FFC600;
    color: #fff;
    border-color: #FFC600;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,0,0.20);
    text-decoration: none;
}
.area-card-link i {
    color: #FFC600;
    font-size: 15px;
    flex-shrink: 0;
    transition: color 0.22s;
}
.area-card-link:hover i {
    color: #fff;
}
.section-underline {
    width: 50px;
    height: 3px;
    background: #FFC600;
    margin: 0 auto 14px;
    border-radius: 2px;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 768px) {
    .areas-hero-section .hero-bg-img {
        width: 100%;
        opacity: 0.25;
    }
    .areas-hero-section .hero-overlay {
        background: linear-gradient(to right, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.9) 100%);
    }
    .areas-hero-section h1 {
        font-size: 2rem;
    }
}
