.city-page {
    background: #f7f3ec;
    color: #111827;
}

.city-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.city-hero {
    padding: 110px 0 85px;
    background:
        linear-gradient(135deg, rgba(5, 7, 13, 0.94), rgba(18, 24, 38, 0.90)),
        radial-gradient(circle at top right, rgba(202, 161, 93, 0.28), transparent 38%);
    color: #ffffff;
    border-bottom: 1px solid rgba(202, 161, 93, 0.30);
}

.city-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 46px;
    align-items: center;
}

.city-hero-content {
    max-width: 760px;
}

.city-hero-image-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(202, 161, 93, 0.32);
}

.city-hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35));
    pointer-events: none;
}

.city-hero-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}


.city-eyebrow {
    color: #caa15d;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 14px;
    font-weight: 700;
}

.city-hero h1 {
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.02;
    margin: 0 0 22px;
    max-width: 920px;
}

.city-hero p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 20px;
    line-height: 1.75;
    max-width: 880px;
}

.city-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.city-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    background: #caa15d;
    color: #08101d;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
}

.city-btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.city-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.city-section {
    padding: 76px 0;
    background: #f7f3ec;
    border-bottom: 1px solid rgba(17, 24, 39, 0.10);
}

.city-section.alt {
    background: #ffffff;
}

.city-section.dark {
    background: #0b1020;
    color: #ffffff;
}

.city-section h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin: 0 0 18px;
    color: #111827;
}

.city-section p {
    color: #4b5563;
    font-size: 17px;
    line-height: 1.8;
}

.city-section.dark h2,
.city-section.dark p {
    color: #ffffff;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 32px;
}

.city-card {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.city-card h2,
.city-card h3 {
    margin-top: 0;
    color: #111827;
}

.city-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.city-card p {
    margin-bottom: 0;
}

.idx-box {
    background:
        linear-gradient(135deg, rgba(11, 16, 32, 0.96), rgba(28, 36, 56, 0.94)),
        radial-gradient(circle at top right, rgba(202, 161, 93, 0.22), transparent 38%);
    color: #ffffff;
    border: 1px solid rgba(202, 161, 93, 0.35);
    border-radius: 26px;
    padding: 44px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.idx-box h2 {
    color: #ffffff;
}

.idx-box p {
    color: rgba(255, 255, 255, 0.80);
}

.city-faq {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: 16px;
    padding: 18px 22px;
    margin-bottom: 14px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.city-faq summary {
    cursor: pointer;
    font-weight: 700;
    color: #111827;
}

.city-faq p {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .city-grid {
        grid-template-columns: 1fr;
    }

    .city-hero {
        padding: 82px 0 62px;
    }

/* Add city-hero Image */

.city-hero-grid {
    grid-template-columns: 1fr;
}

.city-hero-image-wrap {
    min-height: 320px;
}

.city-hero-image {
    min-height: 320px;
}


    .city-section {
        padding: 56px 0;
    }

    .idx-box {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .city-container {
        width: min(100% - 28px, 1180px);
    }

/* Add Citiy Hero Img */

.city-hero-image-wrap {
    min-height: 240px;
    border-radius: 20px;
}

.city-hero-image {
    min-height: 240px;
}

    .city-hero h1 {
        font-size: 38px;
    }

    .city-hero p {
        font-size: 17px;
    }

    .city-buttons {
        flex-direction: column;
    }

    .city-btn {
        width: 100%;
    }

    .city-card {
        padding: 22px;
    }
}



/* ==========================================================================
   CITY PAGE CONTEMPORARY TYPOGRAPHY TEST
========================================================================== */


.city-section p,
.city-card p,
.city-faq p,
.city-hero p {
    font-family: Arial, sans-serif;
}

.city-hero h1,
.city-section h2,
.city-card h2,
.city-card h3 {
    font-family: Georgia, "Times New Roman", serif;
}

.city-card {
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.city-card:hover {
    transform: translateY(-4px);
    border-color: rgba(202, 161, 93, 0.38);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

