/* Static contact form styles - replaces WPForms styling */
.static-contact-form {
  max-width: 600px;
  margin: 0;
}

.static-contact-form .form-field {
  margin-bottom: 1.2em;
}

.static-contact-form .form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3em;
  font-size: 0.95em;
}

.static-contact-form .form-field label .required {
  color: #d93025;
}

.static-contact-form .form-field input[type="text"],
.static-contact-form .form-field input[type="email"],
.static-contact-form .form-field input[type="tel"],
.static-contact-form .form-field input[type="number"],
.static-contact-form .form-field select,
.static-contact-form .form-field textarea {
  width: 100%;
  padding: 0.6em 0.8em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  font-family: inherit;
  box-sizing: border-box;
  background: #fff;
  transition: border-color 0.2s;
}

.static-contact-form .form-field input:focus,
.static-contact-form .form-field select:focus,
.static-contact-form .form-field textarea:focus {
  border-color: #4a90d9;
  outline: none;
  box-shadow: 0 0 0 2px rgba(74, 144, 217, 0.15);
}

.static-contact-form .form-field textarea {
  min-height: 120px;
  resize: vertical;
}

/* Honeypot - hidden from humans, visible to bots */
.static-contact-form .honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.static-contact-form .honeypot-field label,
.static-contact-form .honeypot-field input {
  /* If CSS is disabled, still hide via aria */
  position: absolute;
  left: -9999px;
}

/* Submit button */
.static-contact-form .form-submit {
  margin-top: 0.5em;
}

.static-contact-form .form-submit button {
  padding: 0.7em 2em;
  font-size: 1em;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: #4a90d9;
  color: #fff;
  transition: background 0.2s;
}

.static-contact-form .form-submit button:hover:not(:disabled) {
  background: #3a7bc8;
}

.static-contact-form .form-submit button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Status messages */
.form-status {
  margin-top: 1em;
  padding: 0.8em 1em;
  border-radius: 4px;
  font-size: 0.95em;
  display: none;
}

.form-status--success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status--error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Turnstile widget container */
.static-contact-form .cf-turnstile {
  margin-bottom: 1em;
}
