/* ═══════════════════════════════════════════════════
   JMK-Web — contact.css (page-specific)
   ═══════════════════════════════════════════════════ */

.page-header {
  background: var(--navy);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-header-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(var(--accent) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-header-line {
  position: absolute; top: 0; left: calc(5% + 100px);
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(61,133,212,0.25) 40%, transparent 100%);
}
.page-header-content { position: relative; z-index: 1; }
.page-header .section-title { color: var(--white); margin-bottom: 1rem; }
.page-header .section-sub { color: #8aa8c4; margin-bottom: 0; }

/* ── CONTACT SECTION ── */
#contact {
  padding: 6rem 0;
  background: var(--navy);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.c-item {
  display: flex; gap: 1rem; align-items: center;
  padding: 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(61,133,212,0.18);
  border-radius: 7px;
  transition: border-color 0.2s;
}
.c-item:hover { border-color: rgba(61,133,212,0.4); }
.c-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(61,133,212,0.14);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.c-icon svg {
  width: 17px; height: 17px; stroke: var(--accent-light);
  fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.c-label {
  font-size: 0.67rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent); margin-bottom: 2px;
}
.c-val { font-size: 0.92rem; color: var(--white); font-weight: 400; }
.c-val a { color: var(--white); text-decoration: none; transition: color 0.2s; }
.c-val a:hover { color: var(--accent-light); }
.c-reassure {
  margin-top: 1rem; padding: 1.2rem;
  background: rgba(61,133,212,0.08);
  border: 1px solid rgba(61,133,212,0.2);
  border-radius: 7px;
}
.c-reassure p { font-size: 0.86rem; color: #8aa8c4; line-height: 1.75; font-weight: 400; }
.c-reassure strong { color: var(--white); font-weight: 500; }

/* ── Form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cf-label {
  font-size: 0.75rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: #8aa8c4; font-weight: 500;
}
.cf-input, .cf-select, .cf-textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(61,133,212,0.22);
  border-radius: 5px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
  -webkit-appearance: none;
}
.cf-input::placeholder, .cf-textarea::placeholder {
  color: rgba(122,150,176,0.6);
}
.cf-input:focus, .cf-select:focus, .cf-textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
}
.cf-select option { background: var(--navy-mid); color: var(--white); }

/* Honeypot : caché aux humains, visible aux bots */
.cf-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
}

.cf-submit {
  padding: 1rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.3rem;
}
.cf-submit:hover { background: #2d6eb8; transform: translateY(-1px); }
.cf-submit:active { transform: translateY(0); }
.cf-note {
  font-size: 0.78rem;
  color: #7a96b0;
  font-weight: 400;
  text-align: center;
  margin-top: 0.2rem;
}

/* ── PROCESS REMINDER ── */
#next-steps {
  padding: 6rem 0;
  background: var(--off-white);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}
.ns-step {
  padding: 2rem 1.8rem;
  position: relative;
  border-right: 1px solid #d8e4f0;
}
.ns-step:last-child { border-right: none; }
.ns-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem; font-weight: 800;
  color: #d0dde9;
  line-height: 1;
  margin-bottom: 1rem;
}
.ns-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.ns-desc {
  font-size: 0.88rem;
  color: #3d5a78;
  line-height: 1.7;
  font-weight: 400;
}
.ns-highlight {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 3px 10px;
  background: rgba(61,133,212,0.08);
  border: 1px solid rgba(61,133,212,0.2);
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── REASSURANCE BAR ── */
#reassurance {
  padding: 4rem 0;
  background: var(--white);
}
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.r-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(61,133,212,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}
.r-icon svg {
  width: 20px; height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.r-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.r-desc {
  font-size: 0.84rem;
  color: #3d5a78;
  font-weight: 400;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .ns-step { border-right: none; border-bottom: 1px solid #d8e4f0; }
  .ns-step:last-child { border-bottom: none; }
}
@media (max-width: 700px) {
  .cf-row { grid-template-columns: 1fr; }
}
