/* ════════════════════════════════════════
   APPLIANCE.CSS — Appliance Moving page
   Let's Start Moving
════════════════════════════════════════ */

/* ── PAGE BANNER ─────────────────────── */
.page-banner {
  background:
    linear-gradient(rgba(12,12,12,.68), rgba(12,12,12,.68)),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
}

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

.app-intro-img { position: relative; }
.app-intro-img img {
  width: 100%; height: 460px;
  object-fit: cover; border-radius: 12px;
}
.app-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);
}
.app-intro-img .img-badge .num { font-size: 26px; font-weight: 900; line-height: 1; }
.app-intro-img .img-badge .lbl { font-size: 11px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; opacity: .9; margin-top: 2px; }

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

.app-note {
  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;
}
.app-note i { color: var(--secondary); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.app-note p { font-size: 14px; color: var(--text); line-height: 1.65; margin: 0; }
.app-note p strong { color: var(--dark); }

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

.ai-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px; padding: 26px 20px;
  height: 100%; text-align: center;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.ai-item:hover {
  border-color: var(--secondary);
  box-shadow: 0 10px 32px rgba(0,0,0,.09);
  transform: translateY(-4px);
}
.ai-icon {
  width: 56px; height: 56px; margin: 0 auto 14px;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--secondary);
  transition: background .25s, border-color .25s, color .25s;
}
.ai-item:hover .ai-icon {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}
.ai-item h5 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 7px; }
.ai-item p { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── WHY CHOOSE ──────────────────────── */
.app-why { padding: 80px 0; background: #fff; }

.aw-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}
.aw-item:last-child { margin-bottom: 0; }
.aw-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--secondary); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: #fff;
}
.aw-item h5 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.aw-item p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.65; }

.app-why-img img {
  width: 100%; height: 100%;
  min-height: 400px;
  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;
  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) {
  .app-intro, .app-why { padding: 60px 0; }
  .app-includes, .other-services { padding: 56px 0; }
  .app-intro-img .img-badge { right: 0; }
  .app-why-img img { min-height: 280px; margin-top: 32px; }
}
@media (max-width: 767px) {
  .app-intro-img img { height: 280px; }
}
