/* ─── HVAC Quote Page ────────────────────────────────── */

.quote-form-section {
  position: relative;
}

/* Subtle accent glow behind the form */
.quote-form-section::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(212, 72, 12, 0.05) 0%, transparent 70%);
  pointer-events: none;
}