/* ---- 1) Tighter section rhythm ------------------------------------ */
.hero.bq-hero {
  padding: 56px 0 44px;
}
.section-sm.bq-section {
  padding: 46px 0;
}
.section-divider.bq-divider {
  margin: 0;
}

.bq-row {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  row-gap: 20px;
  column-gap: 20px;
}
.bq-row .bq-copy {
  width: 50%;
}
.bq-row .bq-media {
  width: 50%;
}
.bq-row.bq-flip {
  flex-direction: row-reverse;
}

#roof-replacement .steps.bq-mt.bq-center-3 {
  display: flex;
}
#roof-replacement .steps.bq-mt.bq-center-3 div {
  width: 33.3%;
}
#roof-replacement .steps.bq-mt.bq-center-3 div .bq-icon {
  width: 65px;
}

.bq-row .bq-copy,
.bq-row .bq-media {
  width: calc(50% - 10px);
}
.bq-hero .glass-card p {
  color: #000;
}
.dark .bq-hero .glass-card p {
  color: #fff;
}

@media (max-width: 900px) {
  .bq-row,
  .bq-row.bq-flip {
    flex-direction: column;
    align-items: stretch;
  }
  .bq-row .bq-copy,
  .bq-row .bq-media {
    width: 100%;
  }
}

.bq-row {
  grid-template-columns: 1fr;
  gap: 26px;
}
.bq-row.bq-flip .bq-media {
  order: 0;
}

/* ---- 3) Images (rooftop-focused) ----------------------------------- */
.bq-img {
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.bq-img-hero {
  height: 300px;
  border-radius: 14px;
}
.bq-img-side {
  height: 420px;
}

/* ---- 4) Icon badges (instead of step numbers) ----------------------- */
.bq-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

/* ---- 5) Simple responsive estimate form ------------------------------ */
.form-grid.bq-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.bq-form .bq-full {
  grid-column: 1 / -1;
}
@media (max-width: 700px) {
  .form-grid.bq-form {
    grid-template-columns: 1fr;
  }
}

/* ---- 6) Centered FAQ heading ---------------------------------------- */
.bq-faq-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 30px;
}

/* ---- 7) Steps: center when 3 cards ----------------------------------- */
.steps.bq-center-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .steps.bq-center-3 {
    grid-template-columns: 1fr;
  }
}

/* ---- 8) Utility spacing ---------------------------------------------- */
.bq-mt {
  margin-top: 28px;
}
