/* =========================
   NEW: Junk Removal CTA band
   ========================= */
.ctaBand{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

.ctaBand__left{
  display:grid;
  gap: 10px;
  max-width: 72ch;
}

.ctaBand__left h2{
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.3px;
  color: rgba(11,42,74,.96);
}

.ctaBand__left p{
  margin: 0;
  line-height: 1.6;
}

.ctaBand__meta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.metaChip{
  display:inline-flex;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.78);
  font-weight: 800;
  font-size: 12px;
  color: rgba(11,18,32,.82);
}

.ctaBand__right{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
  justify-content:flex-end;
  min-width: 240px;
}

@media (max-width: 980px){
  .ctaBand{
    flex-direction: column;
    align-items: flex-start;
  }
  .ctaBand__right{
    justify-content:flex-start;
    min-width: unset;
  }
  .ctaBand__left h2{
    font-size: 24px;
  }
}

/* =========================
   NEW: Insurance image strip
   ========================= */
.imgStrip{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.imgStrip img{
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(11,18,32,.06);
}

@media (max-width: 780px){
  .imgStrip{ grid-template-columns: 1fr; }
  .imgStrip img{ height: 160px; }
}

  .imgStrip img{
    height: 160px;
  }


/* Optional: soft hover polish for gallery items */
.galleryItem:hover{
  transform: translateY(-2px);
  transition: transform 160ms ease;
}
