/* ── CONTACT PAGE ── */
.contact-hero {
  padding: 140px 5% 60px;
  position: relative; overflow: hidden;
}
.contact-hero-glow {
  position: absolute; width: 700px; height: 700px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(14,165,233,.09) 0%, transparent 65%);
  pointer-events: none;
}
.contact-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -.4px;
  animation: fade-in .7s ease both;
}
.contact-hero h1 em { font-style: italic; color: var(--azure); }
.contact-hero p {
  margin-top: 1.2rem; font-size: 1rem;
  color: var(--off); line-height: 1.85; max-width: 580px;
  animation: fade-in .7s .1s ease both;
}
@keyframes fade-in { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }

/* FORM + SIDEBAR LAYOUT */
.contact-body { background: var(--ink2); }
.contact-layout {
  display: grid; grid-template-columns: 1.35fr 1fr;
  gap: 3.5rem; align-items: start;
}
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }

/* FORM */
.contact-form-wrap {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 2.2rem;
}
.contact-form-wrap h2 {
  font-family: var(--ff-head); font-size: 1.6rem;
  font-weight: 700; margin-bottom: .4rem;
}
.contact-form-wrap > p {
  font-size: .88rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.8rem;
}

.form-section-label {
  font-family: var(--ff-mono); font-size: .68rem;
  letter-spacing: 1.5px; color: var(--azure);
  text-transform: uppercase; margin: 1.4rem 0 .7rem;
  display: flex; align-items: center; gap: .5rem;
}
.form-section-label::before { content: ''; width: 16px; height: 1px; background: var(--azure); }

.form-submit-btn {
  width: 100%; padding: 1.1rem;
  background: linear-gradient(135deg, var(--azure2), var(--azure));
  color: #fff; border: none; border-radius: 8px;
  font-family: var(--ff-body); font-size: 1rem; font-weight: 700;
  cursor: pointer; margin-top: 1.2rem;
  transition: opacity .2s, transform .18s;
  box-shadow: 0 4px 24px rgba(14,165,233,.3);
}
.form-submit-btn:hover { opacity: .88; transform: translateY(-1px); }
.form-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* SIDEBAR */
.contact-sidebar { display: flex; flex-direction: column; gap: 1.3rem; }

.expect-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 1.8rem;
}
.expect-card h3 {
  font-family: var(--ff-head); font-size: 1.2rem;
  font-weight: 700; margin-bottom: 1.2rem;
}
.expect-items { display: flex; flex-direction: column; gap: .9rem; }
.expect-item {
  display: flex; gap: .9rem; align-items: flex-start;
}
.ei-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(14,165,233,.09); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.ei-text h5 { font-weight: 700; font-size: .9rem; margin-bottom: .15rem; }
.ei-text p  { font-size: .82rem; color: var(--muted); line-height: 1.55; }

.contact-direct {
  background: var(--ink3); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 1.8rem;
}
.contact-direct h4 {
  font-family: var(--ff-mono); font-size: .68rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--azure); margin-bottom: 1.1rem;
}
.contact-direct .cd-links {
  display: flex; flex-direction: column; gap: .75rem;
}
.cd-link {
  display: flex; align-items: center; gap: .8rem;
  font-size: .9rem; font-weight: 600; color: var(--azure);
  text-decoration: none; transition: opacity .2s;
}
.cd-link:hover { opacity: .75; }
.cd-coverage {
  margin-top: 1.2rem; padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  font-size: .82rem; color: var(--muted); line-height: 1.65;
}

.no-pressure {
  background: rgba(13,148,136,.06);
  border: 1px solid rgba(13,148,136,.18);
  border-radius: var(--r2); padding: 1.5rem;
}
.no-pressure p {
  font-size: .88rem; color: var(--off); line-height: 1.7;
  font-style: italic;
}
.no-pressure cite {
  display: block; margin-top: .6rem;
  font-size: .78rem; color: var(--muted); font-style: normal;
}
