.coverage-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        #0d224a 0%,
        #081733 100%
    );
    overflow: hidden;
}

/* subtle map-style background */
.coverage-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(244,186,24,0.15), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(244,186,24,0.12), transparent 45%);
    pointer-events: none;
}

.coverage-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
}

/* heading */
.coverage-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.coverage-section h2 .secondary_color {
    color: #f4ba18;
}

/* subtitle */
.coverage-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* city grid */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
}

/* city items */
.city-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 600;
    color: #0d224a;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
    transition: all 0.35s ease;
    cursor: default;
    position: relative;
}

/* pin dot */
.city-grid span::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #f4ba18;
    border-radius: 50%;
    margin-right: 8px;
}

/* hover effect */
.city-grid span:hover {
    background: #f4ba18;
    color: #0d224a;
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

.city-grid span:hover::before {
    background: #0d224a;
}


.city-grid span:last-child:hover {
    background: #f4ba18;
    color: #0d224a;
}

/* responsive */
@media (max-width: 768px) {
    .coverage-section {
        padding: 60px 0;
    }

    .coverage-section h2 {
        font-size: 32px;
    }

    .coverage-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .city-grid span:last-child {
        grid-column: span 1;
    }
}
