/* ── FORM ── */
.form-field {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 12px 16px;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 13px;
  color: #1a2744;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field:focus { border-color: #C9A844; background: #fff; }
.form-field::placeholder { color: #9ca3af; }
.form-label {
  display: block;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1a2744;
  margin-bottom: 6px;
}
select.form-field {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a2744' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

/* ── CONTACT INFO CARD ── */
.info-block { display: flex; gap: 14px; align-items: flex-start; }
.info-icon { width: 36px; height: 36px; background: #C9A844; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
