/* ============================================================
   CONTACT PAGE — Styles spécifiques
   ============================================================ */

/* Header override */
.header--scrolled-init .nav-container {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.header--scrolled-init .logo {
    color: var(--text-dark);
}

.header--scrolled-init .nav-links a {
    color: var(--text-dark);
}

.header--scrolled-init .menu-toggle span {
    background: var(--text-dark);
}

.nav-active {
    position: relative;
}

.nav-active::after {
    width: 100% !important;
    background: var(--cyan-electric) !important;
}

/* ============================================================
   HERO — Contactez-nous (Blue gradient)
   ============================================================ */
.contact-hero {
    padding: 160px 0 72px;
    background: linear-gradient(160deg, #0062E6 0%, #004BB5 50%, #003080 100%);
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 213, 0, 0.06) 0%, transparent 40%);
}

.contact-hero-content {
    position: relative;
    color: var(--white);
    max-width: 620px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-hero-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ============================================================
   CONTACT INFO CARDS
   ============================================================ */
.contact-cards-section {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--golden-yellow) 0%, #FFC300 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-info-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--text-dark);
}

.contact-info-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-info-card a {
    color: var(--royal-blue);
    font-weight: 500;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--cyan-electric);
}

/* ============================================================
   ACCÈS ET LOCALISATION
   ============================================================ */
.acces-section {
    padding: 40px 0 80px;
    background: var(--white);
}

.acces-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.acces-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--golden-yellow);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    font-style: italic;
}

.acces-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.acces-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.acces-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.acces-icon--car {
    background: rgba(0, 98, 230, 0.1);
}

.acces-icon--car svg {
    fill: var(--royal-blue);
}

.acces-icon--bus {
    background: rgba(255, 213, 0, 0.15);
}

.acces-icon--bus svg {
    fill: #d4a800;
}

.acces-icon--access {
    background: rgba(0, 191, 255, 0.1);
}

.acces-icon--access svg {
    fill: var(--cyan-electric);
}

.acces-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.acces-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Map / Aerial placeholder */
.acces-map-wrapper {
    position: relative;
}

.acces-map-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(145deg, #1a3a5c 0%, #0d2240 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.acces-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .acces-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .acces-map-wrapper {
        max-width: 520px;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        padding: 120px 0 56px;
    }

    .contact-hero-content h1 {
        font-size: 1.8rem;
    }

    .contact-info-card {
        padding: 24px 20px;
    }

    .contact-cards-section {
        margin-top: -28px;
        margin-bottom: 40px;
    }

    .acces-item {
        gap: 12px;
    }

    .acces-item-icon {
        width: 38px;
        height: 38px;
    }
}