/* ── Hero ── */
.contact-hero {
  width: 100%;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
  background: var(--white);
}
.contact-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(238, 221, 209, 0.4);
  color: var(--brand-brown);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: 0.125rem;
  margin-bottom: 1.5rem;
}
.contact-badge i { font-size: 0.875rem; }
.contact-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.contact-hero p {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Form Card ── */
.form-section {
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 8rem;
}
.form-section-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 2rem;
}
.form-card {
  position: relative;
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  padding: 2rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group:last-of-type { margin-bottom: 0; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}
.form-label--radio { margin-bottom: 0.75rem; }

/* ── Radio Toggle ── */
.radio-group {
  display: flex;
  gap: 1rem;
}
.radio-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.875rem;
  font-weight: 500;
}
.radio-option:hover { background: var(--gray-50); }
.radio-option:has(:checked) {
  border-color: var(--brand-blue);
  background: rgba(239, 246, 255, 0.3);
}
.radio-option input[type="radio"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--brand-blue);
}

/* ── Inputs ── */
.input-wrap {
  position: relative;
}
.input-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1rem;
  display: flex;
  align-items: center;
  pointer-events: none;
  color: var(--gray-400);
  font-size: 1.125rem;
}
.form-input {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  outline: none;
  font-size: 0.875rem;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
}
.form-input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 2px var(--brand-blue);
}

/* ── Phone Input ── */
.phone-wrap {
  position: relative;
  display: flex;
}
.phone-prefix {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding-left: 1rem;
  padding-right: 0.75rem;
  display: flex;
  align-items: center;
  pointer-events: none;
  border-right: 1px solid var(--gray-200);
  gap: 0.5rem;
}
.phone-prefix img {
  width: 20px;
}
.phone-prefix span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
}
.form-input--phone {
  padding-left: 6rem;
}

/* ── Select ── */
.select-wrap {
  position: relative;
}
.form-select {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  outline: none;
  appearance: none;
  background: var(--white);
  font-size: 0.875rem;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.form-select:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 2px var(--brand-blue);
}
.select-caret {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  display: flex;
  align-items: center;
  pointer-events: none;
  color: var(--gray-400);
}

/* ── Textarea ── */
.form-textarea {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  outline: none;
  font-size: 0.875rem;
  resize: none;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
}
.form-textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 2px var(--brand-blue);
}

/* ── Submit Button ── */
.form-submit {
  width: 100%;
  background: var(--brand-blue);
  color: var(--white);
  font-weight: 700;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgb(59 130 246 / 0.2), 0 4px 6px -4px rgb(59 130 246 / 0.2);
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  margin-top: 1.5rem;
}
.form-submit:hover { background: var(--brand-blue-hover); }
.form-submit:active { transform: scale(0.98); }
.form-submit i { font-size: 1.25rem; }
.form-privacy {
  text-align: center;
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 1rem;
}
.form-privacy a {
  text-decoration: underline;
}
.form-privacy a:hover { color: var(--gray-600); }

/* ── Form Success State ── */
.form-success {
  visibility: hidden;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 1rem;
}
.form-success.show {
  visibility: visible;
}
.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: #F0FDF4;
  border: 1px solid #DCFDE8;
  color: #22C55E;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}
.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.025em;
}
.form-success p {
  margin-top: 0.5rem;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  text-align: center;
  max-width: 320px;
  padding: 0 1rem 0 1rem;
}

/* ── Info Badges ── */
.contact-info {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 0 1rem;
}
.info-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.info-badge-icon {
  width: 3rem;
  height: 3rem;
  background: var(--white);
  border-radius: 9999px;
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.info-badge-icon i { font-size: 1.5rem; }
.info-badge h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
}
.info-badge p {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ── Responsive: md (768px+) ── */
@media (min-width: 768px) {
  .contact-info { flex-direction: row; justify-content: space-between; }
}
