/* 1. Conteneur principal */
.contact-message-feedback-form {
    max-width: 550px; /* Un peu plus large pour l'aisance de lecture */
    margin: 10px auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

/* 2. Style des Libellés (Labels) - Aspect Professionnel */
.contact-message-feedback-form label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
    color: #000;
}

/* 3. Style des Champs de saisie - Look Minimaliste IT */
.contact-message-feedback-form input[type="text"],
.contact-message-feedback-form input[type="email"],
.contact-message-feedback-form input[type="tel"],
.contact-message-feedback-form input[type="date"],
.contact-message-feedback-form input[type="time"],
.contact-message-feedback-form select,
.contact-message-feedback-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 25px;
    border: 1px solid #ccc;
    border-radius: 0; 
    background-color: #fdfdfd;
    box-sizing: border-box;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

/* 4. Focus sur les champs - Rappel de l'autorité */
.contact-message-feedback-form input:focus, 
.contact-message-feedback-form textarea:focus {
    border-color: #000;
    background-color: #fff;
    outline: none;
}

/* 5. Bouton "Envoyer" - COHÉRENCE TOTALE FOOTER */
.contact-message-feedback-form .form-submit {
    width: 100%;
    background-color: #1a1a1a !important; /* Fond sombre comme le footer */
    color: #fff !important;
    border: 2px solid #1a1a1a;
    padding: 20px 45px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.contact-message-feedback-form .form-submit:hover {
    background-color: transparent !important;
    color: #1a1a1a !important;
    transform: translateY(-2px);
}

/* 6. Descriptions (GSM, Dispos) - Plus discrètes et pro */
.contact-message-feedback-form .description {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    margin-top: -20px;
    margin-bottom: 20px;
    padding-left: 2px;
}

/* 7. Gestion du titre de la page (si pas géré par Drupal) */
/* Pour s'assurer que le titre hérite du style élégant du footer */
h1.page-title {
    font-family: serif; /* Ou la police spécifique de votre capture */
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Masque le bouton Aperçu */
.contact-message-feedback-form #edit-preview {
    display: none !important;
}