/* ===========================
   HERO VILLE - VERSION MODERNE
   =========================== */

.city-hero {
    padding: 24px 0 60px;
    background: linear-gradient(135deg, #ffeaf6 0%, #f6f2ff 45%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.city-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* ===== TEXTE ===== */

.city-hero-text {
    max-width: 100%;
}

.city-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(23, 35, 58, 0.08);
    box-shadow: 0 8px 20px rgba(23, 35, 58, 0.1);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--adc-deep);
}

.city-hero h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: 0 0 20px;
    color: var(--adc-deep);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.city-hero h1 strong {
    color: var(--adc-primary);
}

.city-hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* ===== IMAGE HERO - MISE EN AVANT ===== */

.city-hero-image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        0 25px 60px rgba(23, 35, 58, 0.25),
        0 8px 24px rgba(23, 35, 58, 0.15);
    transform: perspective(1000px) rotateY(-3deg);
    transition: transform 0.4s ease;
}

.city-hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-8px);
    box-shadow: 
        0 35px 80px rgba(23, 35, 58, 0.3),
        0 12px 32px rgba(23, 35, 58, 0.2);
}

.city-hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 90, 60, 0.15) 0%, 
        rgba(0, 167, 181, 0.15) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.city-hero-image:hover::before {
    opacity: 1;
}

.city-hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.city-hero-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(23, 35, 58, 0.95);
    backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 32px rgba(23, 35, 58, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    animation: badgePulse 2s ease-in-out infinite;
}

.city-hero-badge i {
    color: var(--adc-accent);
    font-size: 1.1rem;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===========================
   SECTION INFO - LAYOUT MODERNE
   =========================== */

.city-info {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafbfd 0%, #ffffff 100%);
}

.info-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

/* ===== CONTENU TEXTE ===== */

.info-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--adc-deep);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.info-content h3 {
    margin: 36px 0 14px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--adc-deep);
    position: relative;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-content h3::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--adc-primary);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(255, 90, 60, 0.2);
}

.info-content p {
    line-height: 1.75;
    margin-bottom: 16px;
    color: #444;
    font-size: 1.05rem;
    text-align: justify;
}

/* ===== ASIDE CARD - IMAGE MISE EN AVANT ===== */

.aside-card {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    border: 2px solid rgba(102, 126, 234, 0.15);
    box-shadow: 
        0 20px 50px rgba(23, 35, 58, 0.18),
        0 8px 20px rgba(23, 35, 58, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: sticky;
    top: 100px;
    transform: perspective(1000px) rotateY(3deg);
}

.aside-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-8px);
    box-shadow: 
        0 30px 70px rgba(23, 35, 58, 0.25),
        0 12px 30px rgba(23, 35, 58, 0.15);
    border-color: var(--adc-primary);
}

.aside-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.aside-card:hover img {
    transform: scale(1.08);
}

/* ===========================
   PRESTATIONS - MISE EN AVANT
   =========================== */

.city-prestations {
    padding: 90px 0;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #fef8ff 40%, 
        var(--adc-soft-bg) 100%);
    position: relative;
}

.city-prestations::before {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 167, 181, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.city-prestations .container {
    position: relative;
    z-index: 1;
}

.city-prestations h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--adc-deep);
    margin-bottom: 18px;
    text-align: center;
    letter-spacing: -0.025em;
}

.city-prestations > .container > p {
    max-width: 820px;
    margin: 0 auto 60px;
    color: #555;
    font-size: 1.12rem;
    line-height: 1.75;
    text-align: center;
}

/* ===== GRID 2x2 ===== */

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

/* ===== CARTE PRESTATION - CLAIRE ET MODERNE ===== */

.prestation-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px 36px;
    border: 3px solid var(--adc-border-subtle);
    box-shadow: 0 16px 40px rgba(23, 35, 58, 0.12);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Bandeau décoratif haut */
.prestation-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(
        90deg,
        var(--adc-primary) 0%,
        var(--adc-secondary) 50%,
        var(--adc-accent) 100%
    );
}

/* Effet de halo au survol */
.prestation-card::after {
    content: "";
    position: absolute;
    inset: -100%;
    background: radial-gradient(circle at center, rgba(255, 200, 87, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.prestation-card:hover::after {
    opacity: 1;
}

.prestation-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 60px rgba(23, 35, 58, 0.18),
        0 0 0 4px var(--adc-soft-bg);
    border-color: var(--adc-primary);
}

/* Icône */
.prestation-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--adc-primary), var(--adc-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(255, 90, 60, 0.3);
    transition: all var(--transition-normal);
}

.prestation-card:hover .prestation-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 28px rgba(255, 90, 60, 0.4);
}

.prestation-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--adc-deep);
    margin: 0;
    line-height: 1.4;
}

.prestation-card p {
    font-size: 1.06rem;
    line-height: 1.75;
    color: #555;
    margin: 0;
    text-align: justify;
}

@media (max-width: 900px) {
    .city-info {
        padding: 50px 0;
    }
    
    .info-layout {
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .city-info {
        padding: 40px 0;
    }
    
    .info-layout {
        gap: 32px;
    }
    
    .info-content h2 {
        font-size: 1.75rem;
        margin-bottom: 22px;
    }
    
    .info-content h3 {
        font-size: 1.2rem;
        margin: 28px 0 12px;
    }
    
    .info-content p {
        font-size: 1rem;
        margin-bottom: 14px;
    }
}

/* ===========================
   ENGAGEMENTS - MODERNE
   =========================== */

.city-engagements {
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        var(--adc-soft-bg) 0%,
        #ffffff 45%,
        rgba(255, 200, 87, 0.08) 100%
    );
    position: relative;
}

.city-engagements h2 {
    font-size: 2.2rem;
    color: var(--adc-deep);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.city-engagements > p {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    text-align: center;
}

/* ===== GRID ENGAGEMENTS ===== */

.engagements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.engagement-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    border: 2px solid rgba(102, 126, 234, 0.12);
    box-shadow: 0 12px 32px rgba(23, 35, 58, 0.12);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.engagement-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(
        90deg,
        var(--adc-primary),
        var(--adc-secondary),
        var(--adc-accent)
    );
}

.engagement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(23, 35, 58, 0.18);
    border-color: var(--adc-primary);
}

.engagement-card h3 {
    margin-bottom: 14px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--adc-deep);
}

.engagement-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* ===== INFO SECTIONS ===== */

.info-section {
    margin-top: 40px;
    padding: 36px 32px;
    background: #fff;
    border-radius: 24px;
    border: 2px solid rgba(102, 126, 234, 0.12);
    box-shadow: 0 12px 32px rgba(23, 35, 58, 0.12);
    transition: all 0.3s ease;
}

.info-section:hover {
    box-shadow: 0 20px 50px rgba(23, 35, 58, 0.15);
    transform: translateY(-4px);
}

.info-section h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--adc-primary);
    font-weight: 700;
}

.info-section p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
    text-align: justify;
}

/* ===========================
   FAQ - MODERNE
   =========================== */

.city-faq {
    background: linear-gradient(
        135deg,
        var(--adc-soft-bg) 0%,
        #ffffff 40%,
        rgba(255, 200, 87, 0.08) 100%
    );
    padding: 80px 0;
}

.city-faq h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--adc-deep);
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.02em;
}

/* ===== FAQ LIST ===== */

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid rgba(102, 126, 234, 0.12);
    padding: 24px 26px;
    box-shadow: 0 8px 24px rgba(23, 35, 58, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 12px 36px rgba(23, 35, 58, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--adc-deep);
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.12);
    color: var(--adc-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

/* ===== État ouvert ===== */

.faq-item.is-open {
    border-color: var(--adc-primary);
    box-shadow: 0 16px 48px rgba(255, 90, 60, 0.15);
}

.faq-item.is-open .faq-answer {
    max-height: 300px;
    opacity: 1;
    margin-top: 16px;
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
    background: linear-gradient(135deg, var(--adc-primary), var(--adc-secondary));
    color: #fff;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
    .city-hero-inner {
        gap: 40px;
    }
    
    .info-layout {
        gap: 50px;
    }
}

@media (max-width: 900px) {
    .city-hero {
        padding: 24px 0 50px;
    }
    
    .city-hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .city-hero-image {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .city-hero-image:hover {
        transform: translateY(-8px);
    }
    
    .city-hero-image img {
        height: 350px;
    }
    
    .info-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .aside-card {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
        transform: none;
    }
    
    .aside-card:hover {
        transform: translateY(-8px);
    }
    
    .prestations-grid {
        grid-template-columns: 1fr;
    }
    
    .engagements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .city-hero h1 {
        font-size: 1.8rem;
    }
    
    .city-hero p {
        font-size: 1rem;
    }
    
    .city-hero-image img {
        height: 280px;
    }
    
    .city-hero-badge {
        font-size: 0.8rem;
        padding: 8px 14px;
        left: 16px;
        bottom: 16px;
    }
    
    .aside-card img {
        height: 260px;
    }
    
    .info-content h2,
    .city-prestations h2,
    .city-engagements h2,
    .city-faq h2 {
        font-size: 1.8rem;
    }
    
    .prestation-card {
        padding: 28px 24px;
    }
    
    .engagement-card {
        padding: 28px 24px;
    }
    
    .info-section {
        padding: 28px 24px;
    }
    
    .faq-item {
        padding: 20px 20px;
    }
    
    .faq-question {
        font-size: 1rem;
    }
}