/* ════════════════════════════════════════
   SERVICES.CSS — Services page only
   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 HEADING STRIP ─────────────── */
.services-intro {
  background: var(--light-bg);
  padding: 56px 0 48px;
  text-align: center;
}
.services-intro .section-title { font-size: 28px; max-width: 700px; margin: 0 auto 12px; }
.services-intro p {
  font-size: 15px; color: var(--muted);
  max-width: 600px; margin: 0 auto;
  line-height: 1.75;
}

/* ── MAIN SERVICES — featured cards ─── */
.featured-services { padding: 80px 0; background: #fff; }

.svc-card {
  border: 1.5px solid var(--border);
  border-radius: 12px; overflow: hidden;
  background: #fff; height: 100%;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.10);
  border-color: var(--secondary);
}
.svc-card-img {
  position: relative; overflow: hidden; flex-shrink: 0;
}
.svc-card-img img {
  width: 100%; height: 210px;
  object-fit: cover;
  transition: transform .4s;
}
.svc-card:hover .svc-card-img img { transform: scale(1.04); }
.svc-card-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--secondary); color: #fff;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.svc-card-body {
  padding: 22px; display: flex;
  flex-direction: column; flex: 1;
}
.svc-icon {
  width: 46px; height: 46px;
  background: var(--secondary);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
  margin-bottom: 14px; flex-shrink: 0;
}
.svc-card-body h5 {
  font-size: 16px; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
}
.svc-card-body p {
  font-size: 13.5px; color: var(--muted);
  line-height: 1.65; flex: 1; margin-bottom: 16px;
}
.btn-know {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-size: 13px; font-weight: 700;
  text-decoration: none; letter-spacing: .2px;
  border: 1.5px solid var(--primary);
  padding: 7px 16px; border-radius: 5px;
  align-self: flex-start;
  transition: background .2s, color .2s;
}
.btn-know:hover { background: var(--primary); color: #fff; }

/* ── SPECIALTY SERVICES STRIP ─────────── */
.specialty-strip {
  background: var(--light-bg);
  padding: 80px 0;
}
.specialty-strip .strip-intro {
  text-align: center; margin-bottom: 48px;
}

.spec-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
  height: 100%;
  display: flex; flex-direction: column;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.spec-item:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  transform: translateY(-4px);
}
.spec-icon {
  width: 50px; height: 50px;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--secondary);
  margin-bottom: 14px;
  transition: background .25s, border-color .25s, color .25s;
}
.spec-item:hover .spec-icon {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}
.spec-item h5 {
  font-size: 15px; font-weight: 700;
  color: var(--dark); margin-bottom: 7px;
}
.spec-item p {
  font-size: 13px; color: var(--muted);
  line-height: 1.65; flex: 1; margin-bottom: 14px;
}
.btn-spec {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--secondary); font-size: 12.5px;
  font-weight: 700; text-decoration: none;
  transition: gap .2s;
  align-self: flex-start;
}
.btn-spec:hover { gap: 9px; color: var(--secondary); }

/* ── SERVICE AREAS STRIP ─────────────── */
.areas-strip {
  background: var(--dark);
  padding: 56px 0;
}
.areas-strip h2 { color: #fff; font-size: 26px; margin-bottom: 6px; }
.areas-strip p { color: #9ca3af; font-size: 14px; }
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.area-pill {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: #e5e7eb; font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 7px;
  transition: background .2s, border-color .2s, color .2s;
}
.area-pill i { color: var(--secondary); font-size: 11px; }
.area-pill:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}
.area-pill:hover i { color: #fff; }

/* ── WHY US INLINE STRIP ─────────────── */
.why-inline {
  background:
    linear-gradient(rgba(28,28,28,.80), rgba(28,28,28,.80)),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80') center/cover no-repeat;
  padding: 80px 0;
}
.wi-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px;
}
.wi-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--secondary); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
}
.wi-item h5 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.wi-item p { font-size: 13.5px; color: #c8ccd2; margin: 0; line-height: 1.65; }

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 991px) {
  .featured-services, .specialty-strip { padding: 56px 0; }
  .services-intro { padding: 40px 0 36px; }
}
@media (max-width: 767px) {
  .svc-card-img img { height: 180px; }
  .areas-strip { padding: 40px 0; }
}
