/* ===== CONTACT PAGE ===== */
.contact-page-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 80px;
    text-align: center;
    overflow: hidden;
}
.contact-page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bleu) 0%, var(--bleu-clair) 100%);
    z-index: -1;
}
.contact-page-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../pictures/toiture.png') center/cover no-repeat;
    opacity: 0.1;
}
.contact-page-hero-content {
    max-width: 600px;
}
.contact-page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(192,57,43,0.15);
    border: 1px solid rgba(192,57,43,0.45);
    color: #ff9d96;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.contact-page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--blanc);
    line-height: 1.1;
    margin-bottom: 16px;
}
.contact-page-hero h1 .highlight {
    color: var(--rouge);
}
.contact-page-hero .hero-desc {
    font-size: 1.05rem;
    color: #a8c2da;
    line-height: 1.7;
}

.zone-info-card {
    background: var(--bleu);
    border-radius: 10px;
    padding: 24px 22px;
    color: white;
    margin-top: 4px;
}
.zone-info-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--rouge);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.zone-info-card p:last-child {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccd9e8;
}

/* ===== RESPONSIVE (contact) ===== */
@media (max-width: 900px) {
    .contact-page-hero {
        padding: 120px 20px 60px;
    }
    .contact-page-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .contact-page-hero {
        padding: 100px 20px 50px;
        min-height: 30vh;
    }
    .contact-page-hero h1 {
        font-size: 1.7rem;
    }
    .contact-page-hero .hero-desc {
        font-size: 1rem;
    }
}
