/* ── Hero ── */
.hero-contact {
    background-color: var(--gray-900);
    color: #fff;
    padding: 72px 0 64px;
}

.hero-contact .label-section {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
}

.hero-contact .label-section::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.hero-contact .label-section::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.hero-contact h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 0;
}

.hero-contact h1 em {
    font-style: italic;
    color: var(--red);
}

.hero-contact .hero-desc {
    font-size: 0.93rem;
    color: rgba(255,255,255,.55);
    line-height: 1.75;
}

/* ── Section formulaire ── */
.section-contact {
    padding: 60px 0 80px;
    background: #fff;
}

.section-contact h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.section-contact h2 em {
    font-style: italic;
    color: var(--red);
}

.section-contact .form-subtitle {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 28px;
}

/* ── Bouton envoyer ── */
.btn-contact {
    background-color: var(--red);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: .04em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background .2s, transform .15s;
    margin-top: 10px;
    cursor: pointer;
}

.btn-contact:hover {
    background-color: var(--red-dark);
    color: #fff;
    transform: translateX(3px);
}

/* ── Carte coordonnées ── */
.card-coordonnees {
    background: var(--gray-900);
    color: #fff;
    border-radius: 6px;
    padding: 30px 28px;
}

.card-coordonnees .label-section-light {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 24px;
}

.card-coordonnees .label-section-light::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.card-coordonnees .label-section-light::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.coord-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.coord-item:last-child {
    margin-bottom: 0;
}

.coord-icon {
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.coord-body h6 {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 4px;
}

.coord-body p,
.coord-body a {
    font-size: 0.88rem;
    color: #fff;
    margin: 0;
    line-height: 1.6;
    text-decoration: none;
    transition: color .2s;
}

.coord-body a:hover {
    color: var(--red-light);
}

/* ── Cartes CTA (Espace candidat / Vous recrutez) ── */
.cta-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.cta-card {
    border: 1px solid var(--gray-100);
    border-radius: 6px;
    padding: 24px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--gray-700);
    transition: border-color .2s, box-shadow .2s;
    display: block;
}

.cta-card:hover {
    border-color: var(--red);
    box-shadow: 0 4px 20px rgba(204,31,31,.08);
    color: var(--gray-900);
}

.cta-card .cta-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--gray-300);
}

.cta-card h6 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.cta-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

