/* coverage.css */
.coverage-hero {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.coverage-map-section {
    padding: 80px 0;
}

.map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.legend-color {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 3px;
    margin-right: 8px;
}

.legend-color.primary {
    background: #0066cc;
}

.legend-color.secondary {
    background: #6c757d;
}

.legend-color.future {
    background: #ffc107;
}

.area-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.area-title {
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.area-cities {
    list-style: none;
    padding-left: 0;
    column-count: 1;
}

.area-cities li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.area-cities li:before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    font-size: 8px;
    top: 12px;
    color: #0066cc;
}

.delivery-time {
    padding: 80px 0;
}

.delivery-table {
    width: 100%;
}

.delivery-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.delivery-route {
    font-weight: 500;
}

.delivery-duration {
    color: #0066cc;
    font-weight: 600;
}

.coverage-cta {
    background: #0066cc;
    color: #fff;
}

@media (max-width: 768px) {
    .coverage-map-section {
        padding: 50px 0;
    }
    
    .area-cities {
        column-count: 1;
    }
}