/**
 * Styles for the custom JAP mail form (plugin-free).
 */

.jap-mail-form-wrap,
.jap-mail-form {
  text-align: right;
  direction: rtl;
  max-width: 28rem;
  margin: 0 auto;
}

.jap-mail-form__field {
  margin: 0 0 0.85rem;
}

.jap-mail-form label {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.jap-mail-form input[type="text"],
.jap-mail-form input[type="email"],
.jap-mail-form input[type="tel"],
.jap-mail-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0.85rem 1rem;
  font: inherit;
}

.jap-mail-form input:focus,
.jap-mail-form textarea:focus {
  outline: none;
  border-color: #00f6ff;
  box-shadow: 0 0 0 2px rgba(0, 246, 255, 0.2);
}

.jap-mail-form input::placeholder,
.jap-mail-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.jap-mail-form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.jap-mail-form__submit {
  width: 100%;
  margin-top: 0.75rem;
  border: 0;
  border-radius: 8px;
  padding: 0.95rem 2rem;
  background: #00f6ff;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.jap-mail-form__submit:hover {
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 246, 255, 0.3);
}

.jap-mail-form__submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.jap-mail-form__status {
  margin-top: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

.jap-mail-form__status.is-pending {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

.jap-mail-form__status.is-success {
  background: rgba(0, 246, 255, 0.14);
  color: #00f6ff;
  border: 1px solid rgba(0, 246, 255, 0.35);
  font-weight: 700;
}

.jap-mail-form__status.is-error {
  background: rgba(255, 80, 80, 0.15);
  color: #ffb4b4;
  border: 1px solid rgba(255, 120, 120, 0.35);
}

.jap-mail-form__debug {
  margin-top: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  background: #0d0d0d;
  color: #9f9;
  font-size: 12px;
  direction: ltr;
  text-align: left;
  overflow: auto;
  max-height: 280px;
}
