/* ============================================================
   estimate.css — Get Free Estimate page
   Hero styles come from inner-hero.css
   Form styles come from contact.css (ct- classes)
   ============================================================ */

/* ── Page background ── */
.estimate-page { background: #f1f5fb; }

/* ── Main section ── */
.est-main {
  padding: 3.5rem 0 5rem;
}

/* Center the form — max-width so it doesn't stretch too wide */
.est-center {
  display: flex;
  justify-content: center;
}

.est-form-wrap {
  width: 100%;
  max-width: 680px;
}

/* Remove sticky positioning (no need when centered alone) */
.est-form-wrap .ct-form-card {
  position: static;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .est-form-wrap .ct-form__row { grid-template-columns: 1fr; }
  .est-form-wrap .ct-form-card { padding: 1.6rem 1.4rem 1.4rem; }
}
