/* ===============================
   Umrah City Landing Pages — simplified
   Extends packages.css (hero, cards, FAQ, CTA)
================================ */

/* ---------- Hero: lighter overlay so the image shows through ---------- */
.hero-city .hero-overlay {
    background: linear-gradient(180deg, rgba(38, 59, 102, 0.18) 0%, rgba(10, 25, 47, 0.30) 100%);
}

/* ---------- Eyebrow ---------- */
.city-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary, #B99253);
    margin-bottom: 0.9rem;
}

.city-eyebrow--light {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

/* ---------- Section headings ---------- */
.city-section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.city-section-heading .section-title {
    margin-bottom: 0.75rem;
}

/* ---------- Packages ---------- */
.city-packages-section {
    background: var(--secondary, #fafbfc);
}

.city-packages-grid {
    margin-top: 1rem;
}

/* ---------- Intro ---------- */
.city-intro-section {
    padding: 5rem 0;
    background: #fff;
}

.city-intro-text {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--text, #333);
}

/* ---------- Highlights ---------- */
.city-highlights-section {
    padding: 5rem 0;
    background: var(--secondary, #fafbfc);
}

.city-highlights {
    list-style: none;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.city-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: #fff;
    border: 1.5px solid var(--border, #e5e7eb);
    border-radius: 14px;
    padding: 1.1rem 1.4rem;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text, #333);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.city-highlights li:hover {
    border-color: var(--primary, #B99253);
    box-shadow: 0 10px 24px -8px rgba(185, 146, 83, 0.28);
    transform: translateY(-2px);
}

.city-highlights li i {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 3px;
    color: var(--primary, #B99253);
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
    .city-intro-text {
        font-size: 1rem;
        text-align: left;
    }

    .city-highlights li {
        font-size: 0.94rem;
        padding: 1rem 1.1rem;
    }
}
