/* ════════════════════════════════════════
   COMMERCIAL.CSS — Commercial Services page
   Let's Start Moving
════════════════════════════════════════ */

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

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

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

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

.alert-box {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff8f5;
  border: 1.5px solid #ffd6c0;
  border-left: 4px solid var(--secondary);
  border-radius: 8px; padding: 16px 18px;
  margin-bottom: 28px;
}
.alert-box i { color: var(--secondary); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.alert-box p { font-size: 14px; color: var(--text); margin: 0; line-height: 1.65; }
.alert-box p strong { color: var(--dark); }

/* ── SERVICES INCLUDE ────────────────── */
.com-includes { padding: 80px 0; background: var(--light-bg); }

.ci-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px; padding: 22px;
  height: 100%;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.ci-item:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.ci-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--secondary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
}
.ci-body h5 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.ci-body p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── WHY CHOOSE US ───────────────────── */
.com-why {
  padding: 88px 0; background: #fff;
}
.why-point {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 26px;
}
.why-point:last-child { margin-bottom: 0; }
.why-dot {
  width: 10px; height: 10px; flex-shrink: 0;
  background: var(--secondary); border-radius: 50%;
  margin-top: 7px;
}
.why-point h6 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.why-point p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin: 0; }

.com-why-img img {
  width: 100%; height: 100%;
  min-height: 420px;
  object-fit: cover; border-radius: 12px;
}

/* ── OTHER SERVICES ──────────────────── */
.other-services { padding: 72px 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: 18px 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: 44px; height: 44px; 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: 17px; 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) {
  .com-intro, .com-why { padding: 60px 0; }
  .com-includes, .other-services { padding: 56px 0; }
  .com-intro-img .img-badge { right: 0; }
  .com-why-img img { min-height: 280px; margin-top: 32px; }
}
@media (max-width: 767px) {
  .com-intro-img img { height: 280px; }
}
