/* BL MAX Leads — form styles aligned with BL-Detailing contact form */

.bl-max-leads-section {
  background: var(--dark, #111111);
  padding: 56px 20px;
}

.bl-max-leads-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.bl-max-leads-title {
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

.bl-max-leads-subtitle {
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin: 0 auto 28px;
}

.bl-max-leads-wrap {
  margin-top: 0;
}

.bl-max-leads-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.bl-max-leads-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bl-max-leads-field {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-md, 14px);
  padding: 14px 16px;
  font-size: 15px;
  color: #fff;
  font-family: var(--font-body, 'Inter', sans-serif);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}

.bl-max-leads-field::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.bl-max-leads-field:focus {
  border-color: var(--gold, #f9a91d);
  background: rgba(255, 255, 255, 0.1);
}

.bl-max-leads-field.is-invalid {
  border-color: #e57373;
}

.bl-max-leads-button {
  background: var(--gold, #f9a91d);
  color: var(--dark, #111111);
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border-radius: var(--r-md, 14px);
  transition: all 0.2s ease;
  box-shadow: 0 8px 32px rgba(249, 169, 29, 0.25);
  width: 100%;
}

.bl-max-leads-button:hover:not(:disabled) {
  background: var(--gold-dark, #d4820f);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(249, 169, 29, 0.4);
}

.bl-max-leads-button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.bl-max-leads-privacy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
  text-align: center;
}

.bl-max-leads-privacy a {
  color: rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.bl-max-leads-message {
  border-radius: var(--r-md, 14px);
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.bl-max-leads-message.is-success {
  background: rgba(249, 169, 29, 0.1);
  border: 1.5px solid rgba(249, 169, 29, 0.3);
  color: #fff;
}

.bl-max-leads-message.is-error {
  background: rgba(229, 115, 115, 0.12);
  border: 1.5px solid rgba(229, 115, 115, 0.35);
  color: #fff;
}

.bl-max-leads-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 560px) {
  .bl-max-leads-row {
    grid-template-columns: 1fr;
  }
}
