.contact-page {
    background: var(--bg-dark);
    padding-bottom: 120px;
}

/* HERO */

.contact-hero {
    padding: 100px 0 60px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-hero p {
    color: var(--text-grey);
}

/* MAIN */

.contact-main {
    padding: 60px 0;
}

.contact-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
}

/* HIGHLIGHT PHONE */

.contact-highlight {
    background: var(--surface);
    padding: 50px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
}

.contact-phone {
    display: inline-block;
    font-size: 34px;
    font-weight: 700;
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    margin: 20px 0;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(30,61,255,0.35);
    white-space: nowrap; /* empêche le retour à la ligne */
}

.contact-phone:hover {
    transform: translateY(-3px);
}

/* EMAIL */

.contact-email a {
    font-size: 20px;
    color: #F5F7FA;
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-underline-offset: 4px;
    transition: 0.3s ease;
}

.contact-email a:hover {
    color: var(--primary);
}

/* ZONE */

.contact-zone p {
    max-width: 500px;
    color: var(--text-grey);
}