/* ── Conteneur formulaire ── */
.wpforms-container {
  background: #ffffff;
  border: 1px solid #dce8f2;
  border-radius: 16px;
  padding: 40px 48px;
  box-shadow: 0 8px 40px rgba(13,77,122,.10);
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
}

/* ── Labels ── */
.wpforms-field-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #0d4d7a !important;
  margin-bottom: 7px !important;
  letter-spacing: 0.02em !important;
  display: block !important;
}

/* ── Tous les champs ── */
.wpforms-field input[type="text"],
.wpforms-field input[type="email"],
.wpforms-field input[type="tel"],
.wpforms-field textarea,
.wpforms-field select {
  border: 1.5px solid #dce8f2 !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  font-family: 'Poppins', sans-serif !important;
  color: #2c3e50 !important;
  background: #f8fafc !important;
  width: 100% !important;
  transition: border-color .2s, box-shadow .2s, background .2s !important;
  box-shadow: none !important;
}

/* ── Focus ── */
.wpforms-field input:focus,
.wpforms-field textarea:focus,
.wpforms-field select:focus {
  border-color: #54c2f4 !important;
  box-shadow: 0 0 0 4px rgba(84,194,244,.12) !important;
  outline: none !important;
  background: #ffffff !important;
}

/* ── Placeholder ── */
.wpforms-field input::placeholder,
.wpforms-field textarea::placeholder {
  color: #aab8c4 !important;
  font-size: 13px !important;
}

/* ── Espacement entre champs ── */
.wpforms-field {
  margin-bottom: 22px !important;
}

/* ── Textarea ── */
.wpforms-field textarea {
  min-height: 130px !important;
  resize: vertical !important;
  line-height: 1.6 !important;
}

/* ── Select ── */
.wpforms-field select {
  appearance: none !important;
  cursor: pointer !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a6fa8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 38px !important;
}

/* ── Bouton ── */
.wpforms-submit-container {
  margin-top: 8px !important;
}

.wpforms-submit-container button.wpforms-submit,
button.wpforms-submit {
  background: #f5a623 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 14px 36px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: 'Poppins', sans-serif !important;
  cursor: pointer !important;
  letter-spacing: 0.02em !important;
  transition: background .18s, transform .18s, box-shadow .18s !important;
  box-shadow: 0 4px 14px rgba(245,166,35,.30) !important;
}

button.wpforms-submit:hover {
  background: #d4891a !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(245,166,35,.35) !important;
}

/* ── Confirmation ── */
.wpforms-confirmation-container-full {
  background: #eaf8ff !important;
  border: 1px solid #b3d9f2 !important;
  border-radius: 10px !important;
  padding: 20px 24px !important;
  color: #0d4d7a !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

/* ── Erreurs ── */
label.wpforms-error {
  color: #c0392b !important;
  font-size: 12px !important;
  margin-top: 4px !important;
  display: block !important;
}

.wpforms-field input.wpforms-error,
.wpforms-field textarea.wpforms-error {
  border-color: #e74c3c !important;
  background: #fff8f8 !important;
}

/* ── Étoile champ requis ── */
.wpforms-required-label {
  color: #54c2f4 !important;
}

/* ── Sous-labels Prénom / Nom ── */
.wpforms-field-sublabel {
  font-size: 11px !important;
  color: #8a9baa !important;
  margin-top: 4px !important;
}

/* ── Responsive mobile ── */
@media (max-width: 640px) {
  .wpforms-container {
    padding: 24px 20px !important;
  }
}