/* ===================================
   City Service Sections (Rich City Pages)
   =================================== */

.city-services-section {
    padding: 60px 0;
    background: var(--bg-light, #f8f9fa);
}

.city-services-section__heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark, #1a2332);
}

.city-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.city-service-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.city-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.city-service-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--primary, #0d6efd);
}

.city-service-card__icon svg {
    width: 100%;
    height: 100%;
}

.city-service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark, #1a2332);
    margin-bottom: 0.75rem;
}

.city-service-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted, #5a6b7d);
    flex: 1;
    margin-bottom: 1.25rem;
}

.city-service-card__link {
    display: inline-block;
    color: var(--primary, #0d6efd);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.city-service-card__link:hover {
    color: var(--primary-dark, #0a58ca);
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .city-services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .city-services-section {
        padding: 40px 0;
    }

    .city-services-section__heading {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .city-service-card {
        padding: 1.5rem;
    }
}

/* ===================================
   Location Tabs — Extended for 8 tabs
   =================================== */
.location-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    padding: 0 1rem;
}

.location-tabs .location-tab {
    flex-shrink: 0;
}
