/* ══════════════════════════════════
   PAGE CONTACT — ze-coach
   Styles spécifiques à /contact
══════════════════════════════════ */

/* ── Section principale ── */
.ze-coach-contact-section {
  padding: 96px 2rem 5rem;
}

/* ── Grille 2 colonnes ── */
.ze-coach-contact-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

/* ── Colonne gauche (sticky) ── */
.ze-coach-contact-left {
  position: sticky;
  top: 120px;
}
.ze-coach-contact-left .ze-coach-stitle {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}
.ze-coach-contact-left .ze-coach-sdesc {
  font-size: 1.05rem;
  color: var(--ze-navy-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ── Avantages ── */
.ze-coach-contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.ze-coach-contact-benefit {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.ze-coach-contact-benefit__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ze-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.ze-coach-contact-benefit__text strong {
  display: block;
  font-family: var(--ze-font-display);
  font-size: .92rem;
  font-weight: 700;
  color: var(--ze-navy);
  margin-bottom: .15rem;
}
.ze-coach-contact-benefit__text p + p {
  font-size: .85rem;
  color: var(--ze-navy-muted);
  line-height: 1.5;
  margin: 0;
}

/* ── Infos pratiques ── */
.ze-coach-contact-info {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(27, 27, 58, .05);
}
.ze-coach-contact-info p {
  font-size: .875rem;
  color: var(--ze-navy-muted);
  margin: 0;
}

/* ── Carte formulaire ── */
.ze-coach-contact-form-card {
  background: var(--ze-white);
  border-radius: 24px;
  padding: 2.5rem;
  border: 2px solid rgba(27, 27, 58, .05);
  box-shadow: var(--ze-shadow-float);
}
.ze-coach-contact-form-card > h2 {
  font-family: var(--ze-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ze-navy);
  margin: 0 0 .35rem;
}
.ze-coach-contact-form-card .ze-coach-form-note {
  font-size: .83rem;
  color: var(--ze-navy-muted);
  margin: 0 0 1.75rem;
}

/* ── Ligne 2 champs côte à côte ── */
.ze-coach-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.ze-coach-form-row .ze-coach-form-field {
  margin-bottom: 0;
}

/* ── Champ individuel ── */
.ze-coach-form-field {
  margin-bottom: 1.25rem;
}
.ze-coach-form-field label {
  display: block;
  font-family: var(--ze-font-display);
  font-size: .875rem;
  font-weight: 600;
  color: var(--ze-navy);
  margin-bottom: .4rem;
}
.ze-coach-form-field input[type="text"],
.ze-coach-form-field input[type="email"],
.ze-coach-form-field input[type="url"],
.ze-coach-form-field select,
.ze-coach-form-field textarea {
  width: 100%;
  padding: .75rem 1rem;
  border-radius: 12px;
  border: 2px solid rgba(27, 27, 58, .1);
  font-family: var(--ze-font-body);
  font-size: .92rem;
  color: var(--ze-navy);
  background: var(--ze-offwhite);
  transition: border-color var(--ze-transition), background var(--ze-transition);
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.ze-coach-form-field input:focus,
.ze-coach-form-field select:focus,
.ze-coach-form-field textarea:focus {
  outline: none;
  border-color: var(--ze-lime);
  background: var(--ze-white);
}
.ze-coach-form-field textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}
.ze-coach-form-field select {
  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='%236B6B8D' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ── Checkboxes type de projet ── */
.ze-coach-form-checkboxes {
  border: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.ze-coach-form-checkboxes > legend {
  font-family: var(--ze-font-display);
  font-size: .875rem;
  font-weight: 600;
  color: var(--ze-navy);
  margin-bottom: .6rem;
  display: block;
  width: 100%;
}
.ze-coach-form-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.ze-coach-form-check {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .8rem;
  border-radius: 10px;
  border: 2px solid rgba(27, 27, 58, .08);
  cursor: pointer;
  transition: border-color var(--ze-transition), background var(--ze-transition);
  font-size: .875rem;
  color: var(--ze-navy);
  user-select: none;
  line-height: 1.35;
}
.ze-coach-form-check:hover {
  border-color: var(--ze-lime);
  background: var(--ze-lime-bg);
}
.ze-coach-form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--ze-navy);
  flex-shrink: 0;
  cursor: pointer;
}
.ze-coach-form-check input[type="checkbox"]:checked ~ span {
  font-weight: 600;
}

/* ── Erreurs de validation ── */
.ze-coach-form--error input[type="text"],
.ze-coach-form--error input[type="email"],
.ze-coach-form--error input[type="url"],
.ze-coach-form--error select,
.ze-coach-form--error textarea {
  border-color: var(--ze-error);
  background: var(--ze-error-bg);
}
.ze-coach-form-checkboxes.ze-coach-form--error .ze-coach-form-checks {
  outline: 2px solid var(--ze-error);
  outline-offset: 4px;
  border-radius: 10px;
}
.ze-coach-field-error {
  display: block;
  font-size: .8rem;
  color: var(--ze-error);
  margin-top: .35rem;
  font-weight: 500;
}

/* ── Honeypot ── */
.ze-coach-form-honeypot {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}

/* ── Bouton submit ── */
.ze-coach-contact-submit {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  margin-top: 1.5rem;
  border-radius: 12px;
  background: var(--ze-navy);
  color: var(--ze-white);
  font-family: var(--ze-font-display);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background var(--ze-transition), transform var(--ze-transition), box-shadow var(--ze-transition);
}
.ze-coach-contact-submit:hover:not(:disabled) {
  background: var(--ze-navy-light);
  transform: translateY(-2px);
  box-shadow: var(--ze-shadow-btn-dark);
}
.ze-coach-contact-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}

/* ── Succès : remplace le formulaire ── */
.ze-coach-contact-success {
  text-align: center;
  padding: 3rem 1rem;
}
.ze-coach-contact-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ze-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ze-navy);
  margin: 0 auto 1.5rem;
}
.ze-coach-contact-success h3 {
  font-family: var(--ze-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ze-navy);
  margin: 0 0 .75rem;
}
.ze-coach-contact-success p {
  color: var(--ze-navy-muted);
  font-size: .95rem;
  margin: 0;
}

/* ── Feedback ── */
.ze-coach-contact-feedback {
  margin-top: 1rem;
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
  min-height: 1.4em;
}
.ze-coach-contact-feedback--success { color: var(--ze-navy); }
.ze-coach-contact-feedback--error   { color: var(--ze-error); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 900px) {
  .ze-coach-contact-section {
    padding: calc(80px + 2.5rem) 1.5rem 4rem;
  }
  .ze-coach-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ze-coach-contact-left {
    position: static;
  }
  .ze-coach-form-row {
    grid-template-columns: 1fr;
  }
  .ze-coach-form-checks {
    grid-template-columns: 1fr;
  }
  .ze-coach-contact-form-card {
    padding: 1.75rem;
  }
}
