/* Contact Page - PrintEclipse */

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.submit-zone {
  position: relative;
  width: 100%;
  padding: var(--space-md);
  background: var(--bg);
  border: 1px solid var(--wire);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.4s var(--ease-organic),
              background-color 0.4s var(--ease-organic);
}

.submit-zone:hover {
  border-color: var(--accent-warm);
}

.submit-zone.is-printing {
  border-color: var(--accent-warm);
  background: var(--surface);
  cursor: wait;
}

.submit-zone.is-printing .t-label {
  animation: printPulse 1.2s ease-in-out infinite;
}

@keyframes printPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.submit-zone .t-label {
  display: block;
  color: var(--ink);
}

/* Select arrow */
select.field__input {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  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='%238C8C85' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}

/* Success state */
.submit-zone.is-success {
  border-color: var(--accent);
}

.submit-zone.is-success .t-label {
  color: var(--accent);
}
