/* ════════════════════════════════════════
   RESIDENTIAL.CSS — Residential Services page
   Let's Start Moving
════════════════════════════════════════ */

/* ── PAGE BANNER ─────────────────────── */
.page-banner {
  background:
    linear-gradient(rgba(12,12,12,.68), rgba(12,12,12,.68)),
    url('../images/lets-start-moving-04.jpg') center/cover no-repeat;
}

/* ── INTRO SECTION ───────────────────── */
.res-intro { padding: 88px 0; background: #fff; }

.res-intro-img {
  position: relative;
}
.res-intro-img img {
  width: 100%; height: 480px;
  object-fit: cover; border-radius: 12px;
}
.res-intro-img .img-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--primary); color: #fff;
  padding: 18px 22px; border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(207,4,2,.25);
}
.res-intro-img .img-badge .num {
  font-size: 32px; font-weight: 900; line-height: 1;
}
.res-intro-img .img-badge .lbl {
  font-size: 11px; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase;
  opacity: .9; margin-top: 2px;
}

.res-intro-body { font-size: 15px; color: var(--text); line-height: 1.78; margin-bottom: 14px; }

/* Satisfaction badge */
.satisfaction-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--secondary);
  border-radius: 8px; padding: 14px 18px;
  margin-bottom: 24px;
}
.satisfaction-badge i { font-size: 22px; color: var(--secondary); flex-shrink: 0; }
.satisfaction-badge h6 { font-size: 14px; font-weight: 700; color: var(--dark); margin: 0 0 2px; }
.satisfaction-badge p { font-size: 12.5px; color: var(--muted); margin: 0; }

/* ── SERVICES INCLUDE STRIP ──────────── */
.includes-strip {
  background: var(--light-bg);
  padding: 80px 0;
}
.include-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.include-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,.09);
  border-color: var(--secondary);
}
.include-icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--secondary);
  transition: background .25s, border-color .25s, color .25s;
}
.include-card:hover .include-icon {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}
.include-card h5 {
  font-size: 16px; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
}
.include-card p {
  font-size: 14px; color: var(--muted);
  line-height: 1.65; margin: 0;
}

/* ── PROCESS SECTION ─────────────────── */
.process-section { padding: 88px 0; background: #fff; }

.process-step {
  display: flex; gap: 20px; align-items: flex-start;
  margin-bottom: 36px;
}
.process-step:last-child { margin-bottom: 0; }
.step-num {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 900; color: #fff;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute; top: 52px; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: calc(100% + 12px);
  background: var(--border);
}
.process-step:last-child .step-num::after { display: none; }
.step-body h5 {
  font-size: 16px; font-weight: 700;
  color: var(--dark); margin-bottom: 5px;
}
.step-body p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin: 0; }

.process-img img {
  width: 100%; height: 100%;
  min-height: 400px;
  object-fit: cover; border-radius: 12px;
}

/* ── WHY CHOOSE — cards ──────────────── */
.why-res {
  background:
    linear-gradient(rgba(25,25,25,.82), rgba(25,25,25,.82)),
    url('../images/lets-start-moving-06.jpg') center/cover no-repeat;
  padding: 88px 0;
}
.why-res-card {
  background: rgba(255,255,255,.25);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 26px 22px;
  height: 100%;
  transition: background .25s, border-color .25s, transform .25s;
}
.why-res-card:hover {
  background: rgba(255,90,9,.12);
  border-color: var(--secondary);
  transform: translateY(-4px);
}
.why-res-icon {
  width: 48px; height: 48px;
  background: var(--secondary); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff; margin-bottom: 14px;
}
.why-res-card h5 {
  font-size: 16px; font-weight: 700;
  color: #fff; margin-bottom: 7px;
}
.why-res-card p { font-size: 14.5px; color: #cfcfcf; line-height: 1.65; margin: 0; }

/* ── QUICK LINKS TO OTHER SERVICES ──── */
.other-services { padding: 80px 0; background: var(--light-bg); }
.os-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px; overflow: hidden;
  display: flex; align-items: center; gap: 16px;
  padding: 20px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  text-decoration: none;
}
.os-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.os-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--secondary);
  transition: background .2s, border-color .2s, color .2s;
}
.os-card:hover .os-icon {
  background: var(--secondary); border-color: var(--secondary); color: #fff;
}
.os-body h6 { font-size: 14px; font-weight: 700; color: var(--dark); margin: 0 0 2px; }
.os-body p { font-size: 12.5px; color: var(--muted); margin: 0; }
.os-arrow { margin-left: auto; color: var(--secondary); font-size: 13px; flex-shrink: 0; }

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 991px) {
  .res-intro, .process-section, .other-services { padding: 60px 0; }
  .includes-strip, .why-res { padding: 60px 0; }
  .res-intro-img .img-badge { left: 0; }
  .process-img img { min-height: 280px; margin-top: 32px; }
}
@media (max-width: 767px) {
  .page-banner h1 { font-size: 26px; }
  .res-intro-img img { height: 320px; }
}
