/*
 * Page     : Services Listing (All Pujas)
 * File     : css/desktop/pages/pageservices.css
 * Loaded by: page-service.php (mobile + desktop)
 *
 * Depends on: pagecities.css (loaded first) for shared .city-hero,
 *             .np-search-box, .highlight_number, .main_section styles.
 */

/* ══════════════════════════════════════════
   POPULAR PUJA QUICK LINKS
   ══════════════════════════════════════════ */
.popular-Cities {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--np-text-mid, #6B5B4F);
}

.popular-Cities span {
    font-weight: 600;
    color: var(--np-text-dark, #3E2723);
    flex-shrink: 0;
}

.popular-Cities a {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(243, 116, 32, 0.08);
    border: 1px solid rgba(243, 116, 32, 0.25);
    color: var(--np-saffron, #F37420);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.popular-Cities a:hover {
    background: rgba(243, 116, 32, 0.15);
    border-color: var(--np-saffron, #F37420);
    text-decoration: none;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 767px) {
    .popular-Cities {
        gap: 6px;
        margin-top: 16px;
        font-size: 13px;
    }

    .popular-Cities a {
        font-size: 12px;
        padding: 4px 12px;
    }
}
