/* n8n contact form — scoped to .contact section */

.contact .axs-contact {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.contact .axs-contact__form {
  display: grid;
  gap: 24px;
}

.contact .axs-contact__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact .form-field select {
  width: 100%;
  background: rgba(247, 246, 242, 0.04);
  border: 1px solid rgba(247, 246, 242, 0.18);
  border-radius: 3px;
  color: #f4f3ee;
  font-family: var(--font);
  font-size: 0.98rem;
  line-height: 1.5;
  padding: 13px 15px;
  appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--steel) 50%),
    linear-gradient(135deg, var(--steel) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.contact .form-field select:hover {
  border-color: rgba(247, 246, 242, 0.32);
}

.contact .form-field select:focus {
  outline: none;
  border-color: var(--bronze);
  background-color: rgba(247, 246, 242, 0.06);
}

.contact .axs-contact__actions {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-top: 6px;
}

.contact .axs-contact__status {
  font-size: 0.9rem;
  line-height: 1.5;
  min-height: 1.5rem;
  text-align: center;
  margin: 0 !important;
  color: rgba(233, 232, 227, 0.75);
}

.contact .axs-contact__status--error {
  color: #f87171;
}

.contact .axs-contact__status--success {
  color: #86efac;
}

.contact .axs-contact__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.25rem;
  text-align: center;
}

.contact .axs-contact__privacy,
.contact .axs-contact__footer .form-alt {
  width: 100%;
  max-width: 48ch;
  margin: 0 !important;
  text-align: center;
}

.contact .axs-contact__privacy {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--steel);
}

.contact .axs-contact__footer .form-alt {
  font-size: 0.88rem;
  color: var(--steel);
}

.contact .axs-contact__submit:disabled {
  cursor: wait;
  opacity: 0.65;
}