/* lead-form.css — used by the inquiry form on single listing pages only */
.pm-lead-form {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  background: #f9fafc;
}
.pm-lead-form h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}
.pm-lead-form__sub {
  color: var(--pm-muted);
  font-size: 0.9rem;
  margin: 0 0 14px;
}
.pm-lead-form form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pm-lead-form label {
  font-size: 0.85rem;
  color: var(--pm-muted);
  margin-top: 8px;
}
.pm-lead-form input,
.pm-lead-form textarea {
  padding: 10px 12px;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  font-family: inherit;
  font-size: 0.95rem;
}
.pm-lead-form button {
  margin-top: 14px;
  background: var(--pm-navy, #142057);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: var(--pm-radius);
  font-size: 1rem;
  cursor: pointer;
}
.pm-lead-form__success {
  background: #e8f7ee;
  color: #1c7a3f;
  padding: 14px;
  border-radius: var(--pm-radius);
  margin: 0;
}
