/* ================================================================
   CITY PAGES - MODERN LUXURIOUS DESIGN
   Premium styling with animations and sophisticated effects
================================================================ */

/* ================================================================
   HERO SECTION - DRAMATIC FULL-SCREEN EXPERIENCE
================================================================ */

.city-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    width: 100%;
    padding: 0 !important;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Animated gradient overlay */
.city-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(26, 26, 26, 0.6) 40%,
            rgba(245, 176, 65, 0.15) 100%);
    z-index: 1;
    animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(26, 26, 26, 0.6) 40%, rgba(245, 176, 65, 0.15) 100%);
    }

    100% {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.55) 40%, rgba(245, 176, 65, 0.2) 100%);
    }
}

.city-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 30px;
    width: 100%;
    margin: 0 auto;
    max-width: 1000px;
    animation: heroFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.city-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 0.03em;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.city-hero .subtitle {
    font-family: var(--font-ui);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
    animation: subtitleGlow 3s ease-in-out infinite;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes subtitleGlow {

    0%,
    100% {
        text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(245, 176, 65, 0.3);
    }

    50% {
        text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 176, 65, 0.5);
    }
}

/* ================================================================
   MODELS SECTION - PREMIUM SHOWCASE
================================================================ */

.city-models-section {
    padding: 120px 5%;
    background: linear-gradient(to bottom, #e6e6e6 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.city-models-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--text-body);
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    display: inline-block;
    width: 100%;
    animation: titleSlideIn 1s ease-out;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title span {
    color: var(--gold);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: lineExpand 1.5s ease-out;
}

@keyframes lineExpand {
    from {
        width: 0;
    }

    to {
        width: 120px;
    }
}

/* Premium Model Cards */
.city-models-section .model-card {
    background: #ffffff;
    border: 1px solid rgba(245, 176, 65, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.city-models-section .model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 176, 65, 0.1), transparent);
    transition: left 0.6s ease;
}

.city-models-section .model-card:hover::before {
    left: 100%;
}

.city-models-section .model-card:hover {
    border-color: var(--gold);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(245, 176, 65, 0.25), 0 0 0 1px rgba(245, 176, 65, 0.3);
}

.loading-message {
    color: var(--gray);
    font-size: 1.2rem;
    text-align: center;
    padding: 80px 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ================================================================
   DESCRIPTION SECTION - ELEGANT CONTENT
================================================================ */

.city-description-section {
    padding: 120px 5%;
    background: #e6e6e6;
    position: relative;
    overflow: hidden;
}

.city-description-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 176, 65, 0.4), transparent);
}

.description-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title-small {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title-small::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
    box-shadow: 0 0 20px rgba(245, 176, 65, 0.5);
}

.city-desc-text p {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-body);
    margin: 0 auto 25px;
    max-width: 850px;
}

/* ================================================================
   HIGHLIGHTS SECTION - SOPHISTICATED CARDS
================================================================ */

.city-highlights {
    padding: 120px 5%;
    background: linear-gradient(to bottom, #f0f0f0 0%, #e6e6e6 100%);
    position: relative;
}

.city-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 176, 65, 0.4), transparent);
}

.highlight-block {
    max-width: 1400px;
    margin: 0 auto 100px;
}

.highlight-block h3 {
    font-family: var(--font-ui);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--gold);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.highlight-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gold);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

/* Luxury Highlight Cards */
.highlight-card {
    background: #ffffff;
    padding: 40px;
    border-left: 5px solid var(--gold);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 176, 65, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.highlight-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 176, 65, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.highlight-card:hover {
    transform: translateY(-10px) translateX(5px);
    box-shadow: 0 20px 50px rgba(245, 176, 65, 0.2), 0 0 0 1px rgba(245, 176, 65, 0.2);
    border-left-width: 8px;
}

.highlight-card:hover::before,
.highlight-card:hover::after {
    opacity: 1;
}

.highlight-card h4 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--text-body);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.highlight-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    position: relative;
    z-index: 1;
}

/* Premium Tags */
.highlight-tag {
    background: linear-gradient(135deg, var(--gold) 0%, #d4a017 100%);
    color: #ffffff;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    padding: 8px 16px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(245, 176, 65, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.highlight-card:hover .highlight-tag {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(245, 176, 65, 0.6);
}

/* ================================================================
   CTA SECTION - PREMIUM CALL TO ACTION
================================================================ */

.cta-section {
    padding: 140px 5%;
    background: linear-gradient(135deg, #e6e6e6 0%, #f0f0f0 50%, #e6e6e6 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-section::before {
    top: 0;
}

.cta-section::after {
    bottom: 0;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--gold);
    margin-bottom: 60px;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(245, 176, 65, 0.2);
}

.cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, #d4a017 100%);
    color: #ffffff;
    padding: 22px 70px;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(245, 176, 65, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta:hover::before {
    width: 400px;
    height: 400px;
}

.cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(245, 176, 65, 0.6);
}

/* ================================================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZED
================================================================ */

@media (max-width: 1024px) {
    .city-hero {
        height: 70vh;
        min-height: 500px;
        background-attachment: scroll;
        /* Disable parallax on tablets */
    }

    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .city-hero {
        height: 60vh;
        min-height: 450px;
    }

    .city-hero h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .city-hero .subtitle {
        font-size: clamp(0.85rem, 3vw, 1.1rem);
        letter-spacing: 0.2em;
    }

    .city-models-section,
    .city-description-section,
    .city-highlights {
        padding: 80px 5%;
    }

    .section-title {
        margin-bottom: 60px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .highlight-card {
        padding: 30px;
    }

    .cta-section {
        padding: 100px 5%;
    }

    .cta {
        padding: 20px 50px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .city-hero {
        height: 55vh;
        min-height: 400px;
    }

    .city-hero .hero-content {
        padding: 40px 20px;
    }

    .city-models-section,
    .city-description-section,
    .city-highlights {
        padding: 60px 4%;
    }

    .section-title::after {
        width: 80px;
    }

    .city-desc-text p {
        font-size: 1.05rem;
    }

    .highlight-card {
        padding: 25px;
    }

    .highlight-card h4 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .cta {
        padding: 18px 40px;
        font-size: 0.85rem;
        letter-spacing: 0.15em;
    }
}

/* ================================================================
   SCROLL ANIMATIONS - SMOOTH REVEAL EFFECTS
================================================================ */

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.city-models-section,
.city-description-section,
.city-highlights,
.cta-section {
    animation: fadeInScale 1s ease-out;
}