/* ══════════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════════ */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Side-by-side row for Name + Email */
.contact-row {
  display: flex;
  gap: 16px;
}

.contact-row .contact-field {
  flex: 1;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-family: "Share Tech Mono", monospace;
  font-size: 1.05rem;
  color: #e0ddd8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-input {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
  color: #e8e8e8;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-input:focus {
  border-color: rgba(255, 180, 0, 0.4);
  box-shadow: 0 0 20px rgba(255, 180, 0, 0.08), inset 0 0 12px rgba(255, 180, 0, 0.03);
}

.contact-textarea {
  resize: vertical;
  min-height: 220px;
  line-height: 1.7;
}

.contact-submit {
  align-self: center;
  margin-top: 4px;
  min-width: 220px;
}

.contact-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(0.4);
}

.contact-status {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.15rem;
  text-align: center;
  min-height: 1.4em;
  transition: opacity 0.3s ease;
}

.contact-status--success {
  color: #4cff88;
}

.contact-status--error {
  color: #ff6b6b;
}

.contact-fallback {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 8px;
}

.contact-fallback a {
  color: var(--ll-amber);
  text-decoration: none;
}

.contact-fallback a:hover {
  text-decoration: underline;
}

/* Responsive: stack Name + Email on mobile */
@media (max-width: 520px) {
  .contact-row {
    flex-direction: column;
  }
}
