.contact-form-wrap {
  max-width: 560px;
  margin-top: 2rem;
}
.contact-field {
  margin-bottom: 1.25rem;
}
.contact-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.375rem;
}
.contact-required {
  color: #dc2626;
  margin-left: 2px;
}
.contact-input,
.contact-select,
.contact-textarea {
  display: block;
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 0.9375rem;
  font-family: var(--font-ui, 'Inter', sans-serif);
  color: #1e293b;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color 0.15s;
  outline: none;
}
.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}
.contact-input.error,
.contact-select.error,
.contact-textarea.error {
  border-color: #dc2626;
}
.contact-textarea {
  resize: vertical;
  min-height: 130px;
}
.contact-field-error {
  font-size: 0.8125rem;
  color: #dc2626;
  margin-top: 0.25rem;
  display: none;
}
.contact-field-error.visible {
  display: block;
}
.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  background: #059669;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-ui, 'Inter', sans-serif);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.contact-submit:hover:not(:disabled) { background: #047857; }
.contact-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.contact-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: contact-spin 0.7s linear infinite;
  display: none;
}
@keyframes contact-spin { to { transform: rotate(360deg); } }
.contact-submit.sending .contact-spinner { display: block; }
.contact-status {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  display: none;
}
.contact-status.success {
  display: block;
  background: #ecfdf5;
  border: 1.5px solid #6ee7b7;
  color: #065f46;
}
.contact-status.error {
  display: block;
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  color: #991b1b;
}
