/* ══ CONTACT PAGE ══════════════════════════════════ */
.section-contact { padding: 3rem 0 8rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 6rem;
  align-items: start;
}

/* ── FORMULAIRE ── */
.contact-form-wrap { padding: 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.5rem;
}

.form-field label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}

.opt {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--faint);
}

/* Champs bien visibles */
.form-field input,
.form-field textarea {
  background: rgba(255,255,255,0.055);
  border: 1.5px solid rgba(238,238,245,0.18);
  border-radius: 9px;
  padding: .85rem 1.1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .97rem;
  font-weight: 300;
  line-height: 1.5;
  transition: border-color .22s, background .22s, box-shadow .22s;
  outline: none;
  resize: none;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(238,238,245,.28);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--purple);
  background: rgba(139,124,246,.07);
  box-shadow: 0 0 0 3px rgba(139,124,246,.13);
}

/* Bouton centré, pas pleine largeur */
.form-submit-row {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.submit-btn {
  padding: .95rem 3rem;
  font-size: 1rem;
}

/* ── INFOS CONTACT ── */
.contact-info {
  display: flex;
  flex-direction: column;
}

.info-block {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.info-block:first-child { padding-top: 0; }
.info-block:last-of-type { border-bottom: none; }

.info-link {
  font-size: .82rem;
  color: var(--white);
  font-weight: 400;
  transition: color .2s;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.info-link:hover { color: var(--lilac); }

.info-val {
  font-size: .9rem;
  color: var(--white);
  font-weight: 400;
}

.info-note {
  margin-top: 1.5rem;
  font-size: .83rem !important;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info { order: -1; flex-direction: row; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--line); padding-top: 0; }
  .info-block { flex: 1; min-width: 150px; padding: 1.25rem 1rem; border-bottom: none; border-right: 1px solid var(--line); }
  .info-block:last-of-type { border-right: none; }
  .info-note { flex-basis: 100%; border-top: 1px solid var(--line); padding: 1.25rem 0 0; margin-top: 0; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-info { flex-direction: column; }
  .info-block { border-right: none; border-bottom: 1px solid var(--line); padding: 1rem 0; }
}
