/* ===== Contact form hardening ===== */

/* Hide the hidden fields wrapper entirely */
.wpcf7 .hidden-fields-container {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Belt & suspenders: hide honeypot even if it gets moved or restyled */
.wpcf7 input[name="company"] {
  position: absolute !important;
  left: -9999px !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Keep the response area hidden until JS shows it */
.wpcf7 .wpcf7-response-output {
  display: none;
  margin-top: 8px;
  padding: 10px;
  border: 1px solid transparent; /* prevent layout shift */
}

/* Optional: small vertical tightening */
.wpcf7-form p { margin: 10px 0; }
.wpcf7-form label { display: inline-block; margin-bottom: 2px; }
.wpcf7-form .wpcf7-form-control { margin-top: 4px; }

/* Optional: success / error accenting (keeps your theme look) */
.wpcf7 .wpcf7-mail-sent-ok {
  border-color: #2ecc71;
}
.wpcf7 .wpcf7-validation-errors {
  border-color: #e74c3c;
}
