/* contact-form7-custom.css
   Style moderne et élégant pour Contact Form 7
*/
.wpcf7-form {
  max-width: 500px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 32px 24px;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  box-sizing: border-box;
}

.wpcf7-form h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 2rem;
  color: #222;
}

.wpcf7-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #444;
}

.wpcf7-form-control {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f9f9f9;
  font-size: 1rem;
  margin-bottom: 18px;
  transition: border-color 0.2s;
  box-sizing: border-box;
  }
  .wpcf7-form-control.wpcf7-textarea {
  resize: none;}

  /* Champs requis non valides (Contact Form 7) */
  .wpcf7-form-control.wpcf7-not-valid {
    border-color: #e53935;
    background: #fff0f0;
  }

  /* Indicateur visuel pour les labels requis */
  .wpcf7-form label[aria-required="true"]:after {
    content: " *";
    color: #e53935;
    font-weight: bold;
  }


.wpcf7-form-control:focus {
  border-color: #0073e6;
  outline: none;
  background: #fff;
}

.wpcf7-submit {
  background: linear-gradient(90deg, #0073e6 0%, #00b4d8 100%);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,115,230,0.08);
  transition: background 0.2s;
}

.wpcf7-submit:hover {
  background: linear-gradient(90deg, #005bb5 0%, #0096c7 100%);
}


.wpcf7-response-output {
  margin-top: 18px;
  text-align: center;
  font-size: 1rem;
  color: #0073e6;
}
.wp-block-navigation .wp-block-navigation-item__content.wpcf7-submit {
    color: #fff !important;
}
@media (max-width: 600px) {
  .wpcf7-form {
    padding: 18px 8px;
    box-sizing: border-box;
  }
}
