/* City Pages Specific Styles - Enhanced for Premium Look */

.city-page main {
    font-family: 'Poppins', sans-serif;
    color: #444;
    line-height: 1.8;
    background-color: #fff;
}

/* --- Navigation Header Override --- */
.city-page .elementor-105 .elementor-section,
.city-page .elementor-105 .elementor-container,
.city-page .elementor-105 {
    background-color: rgba(0, 0, 0, 0.6) !important;
    position: absolute;
    /* Make it overlay the hero if needed, but sticky/relative is usually default. */
    width: 100%;
    z-index: 100;
}

/* Ensure Logo and Menu items contrast well on dark */
/* Note: The menu items likely have their own colors set in post-105.css. 
   We might need to force them to white/gold if they are currently dark for the white background. */

/* --- Hero Section --- */
.city-hero {
    position: relative;
    background-color: #000;
    color: #fff;
    padding: 320px 20px 100px;
    /* Increased top padding to account for header overlay */
    text-align: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Gold Gradient Overlay */
.city-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.city-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.city-hero h1 {
    font-size: 4rem;
    /* Larger title */
    font-weight: 700;
    margin-bottom: 10px;
    color: #d4a017;
    /* PREMIUM GOLD */
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.city-hero-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Hero Contact Strip */
.city-hero-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.city-hero-contact a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid rgba(212, 160, 23, 0.5);
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.city-hero-contact a:hover {
    background: #d4a017;
    color: #000;
    border-color: #d4a017;
}

/* --- Main Content Layout --- */
.city-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* --- Intro Section --- */
.city-intro {
    text-align: center;
    margin-bottom: 80px;
}

.city-intro h2 {
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.city-intro h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #d4a017;
    margin: 15px auto 0;
}

.city-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
}

.city-btn-gold {
    display: inline-block;
    background-color: #d4a017;
    color: #fff;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

.city-btn-gold:hover {
    background-color: #bfa020;
    color: #fff;
}

/* --- Services List (Replicated from Reference) --- */
.city-services-section {
    background-color: #f8f8f8;
    padding: 80px 20px;
    text-align: center;
}

.city-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.city-service-item {
    background: #fff;
    padding: 30px;
    border-radius: 0;
    /* Boxy look like reference? Using slight round */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-top: 4px solid transparent;
}

.city-service-item:hover {
    transform: translateY(-5px);
    border-top-color: #d4a017;
}

.city-service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222;
}

.city-service-link {
    color: #d4a017;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.city-service-link:hover {
    color: #000;
}

/* --- Contact/CTA Section --- */
.city-cta-section {
    padding: 80px 20px;
    text-align: center;
    background: #111;
    color: #fff;
}

.city-cta-section h2 {
    color: #d4a017;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.city-cta-section p {
    color: #ccc;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .city-hero h1 {
        font-size: 2.5rem;
    }

    .city-hero-contact {
        flex-direction: column;
        gap: 15px;
    }

    .city-intro h2 {
        font-size: 2rem;
    }

    .city-page .elementor-105 {
        background-color: #000 !important;
        /* Mobile fallback to solid black often safer */
        position: relative;
    }

    .city-hero {
        padding-top: 100px;
    }
}