/* ============================================
   CITY PAGE STYLES - Design Unique et Special
   ============================================ */

/* City Hero Section */
.city-hero {
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(rgba(10, 35, 66, 0.7), rgba(10, 35, 66, 0.7)), url('image/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.city-hero::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #ffffff;
    clip-path: ellipse(55% 60% at 50% 100%);
    z-index: 2;
}

.city-hero-content {
    max-width: 900px;
    z-index: 3;
    padding-bottom: 50px;
    padding-top: 80px;
}

.city-label {
    display: inline-block;
    background: rgba(52, 152, 219, 0.2);
    border: 1px solid #3498db;
    color: #3498db;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.city-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.city-hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.city-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.city-cta-button {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.city-cta-button.primary {
    background: #3498db;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.city-cta-button.primary:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.4);
}

.city-cta-button.secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.city-cta-button.secondary:hover {
    background: #ffffff;
    color: #0A2342;
    transform: translateY(-3px);
}

/* Rich SEO Content Section */
.seo-content-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.seo-content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.seo-rich-text {
    font-size: 1.15rem;
    color: #3E5066;
    line-height: 1.9;
}

.seo-rich-text h2 {
    font-size: 2.2rem;
    color: #0A2342;
    margin: 40px 0 20px;
    font-weight: 700;
}

.seo-rich-text h3 {
    font-size: 1.6rem;
    color: #0A2342;
    margin: 30px 0 15px;
    font-weight: 600;
}

.seo-rich-text p {
    margin-bottom: 25px;
}

.seo-rich-text ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.seo-rich-text li {
    margin-bottom: 12px;
    position: relative;
    list-style: none;
    padding-left: 30px;
}

.seo-rich-text li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #3498db;
}

/* Decorative Gallery Section */
.city-gallery-section {
    padding: 60px 20px;
    background-color: #F8F9FA;
}

.city-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Call to Action Form */
.city-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0A2342 0%, #163C66 100%);
    color: #ffffff;
    text-align: center;
}

.city-cta-container {
    max-width: 850px;
    margin: 0 auto;
}

.city-cta-container h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.city-cta-container p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 45px;
}

.city-contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 25px;
}

.city-contact-form input,
.city-contact-form textarea {
    padding: 18px 25px;
    border: 2px solid #E2EAF1;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1.05rem;
    outline: none;
    transition: all 0.3s;
    background: #F8FAFC;
}

.city-contact-form input:focus,
.city-contact-form textarea:focus {
    border-color: #3498db;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.form-row input {
    flex: 1;
}

.city-contact-form button {
    background: #3498db;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
}

.city-contact-form button:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.3);
}

/* Footer City Links */
.footer {
    padding: 80px 0 40px;
    background: #051121;
    color: #fff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
}

.footer-contact {
    flex: 1;
}

.footer-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #3498db;
    font-weight: 700;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
}

.contact-text a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: #3498db;
}

.footer-links-column {
    flex: 1;
}

.footer-city-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.footer-city-list li {
    list-style: none;
}

.footer-city-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-city-list a:hover {
    color: #3498db;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #666;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive refinements */
@media (max-width: 900px) {
    .city-hero {
        height: auto;
        min-height: 450px;
        padding-top: 80px;
        padding-bottom: 80px;
        background-attachment: scroll;
    }

    .city-hero-title {
        font-size: 2.3rem;
        margin-top: 15px;
        line-height: 1.1;
    }

    .city-hero-content {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .city-hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .city-hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 15px;
    }

    .city-cta-button {
        width: 100%;
        box-sizing: border-box;
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .seo-content-section {
        padding: 80px 20px 0;
    }

    .seo-rich-text h2 {
        font-size: 1.8rem;
        margin-top: 0;
    }

    .seo-rich-text h3 {
        font-size: 1.5rem;
    }

    .seo-rich-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .city-gallery-section {
        padding: 40px 15px;
    }

    .city-gallery-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-card {
        height: 350px;
        border-radius: 15px;
    }

    .gallery-overlay {
        opacity: 1;
        transform: translateY(0);
        padding: 25px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    }

    .gallery-overlay h4 {
        font-size: 1.3rem;
        margin: 0;
    }

    .city-cta-section {
        padding: 80px 15px;
    }

    .city-cta-container h2 {
        font-size: 2.1rem;
        line-height: 1.2;
    }

    .city-cta-container p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .city-contact-form {
        padding: 30px 20px;
        border-radius: 20px;
        gap: 20px;
        margin-top: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .city-contact-form input,
    .city-contact-form textarea {
        padding: 16px 20px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .city-contact-form button {
        padding: 18px;
        font-size: 1.1rem;
        border-radius: 10px;
        margin-top: 5px;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .contact-info {
        align-items: center;
    }

    .footer-city-list {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 250px;
        margin: 0 auto;
    }

    .footer-city-list a {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .city-hero-title {
        font-size: 2rem;
    }

    .city-label {
        padding: 6px 15px;
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .city-hero::after {
        height: 50px;
    }

    .gallery-card {
        height: 280px;
    }

    .city-cta-container h2 {
        font-size: 1.8rem;
    }
}