/**--------------------------------------------------------------
    CONTACT FORM
--------------------------------------------------------------*/
.contact-form-message {
    height: 200px;
}

/* Cibles tactiles >= 44px (accessibilité) + section Contact en fond sombre :
   champs adaptés (lisibles sur noir). Scopé à #contact-form pour ne pas
   toucher les formulaires d'admin. */
#contact-form .form-control {
    min-height: 44px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

#contact-submit {
    min-height: 44px;
}

#contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#contact-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--fourth-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 201, 0, 0.25);
    color: #fff;
}

/* Textes secondaires (aide captcha, délai de réponse) lisibles sur fond sombre.
   L'id l'emporte sur .grey-color (qui est en !important). */
#contact-form .grey-color {
    color: rgba(255, 255, 255, 0.55) !important;
}

/*--------------------------------------------------------------
    COORDONNÉES DE CONTACT (colonne à côté du formulaire, fond sombre)
--------------------------------------------------------------*/
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
}

.contact-info__item > i {
    width: 1.5rem;
    flex-shrink: 0;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
}

.contact-info__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact-info__label {
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: .04em;
}

a.contact-info__value {
    text-decoration: none;
    word-break: break-word;
    transition: color .2s ease;
}

a.contact-info__value:hover,
a.contact-info__value:focus-visible {
    color: var(--fourth-color) !important;
}

.contact-info__reassurance {
    color: rgba(255, 255, 255, 0.7);
}
