/* ════════════════════════════════════════
   TREADMILL.CSS — Treadmill Moving page
   Let's Start Moving
════════════════════════════════════════ */

.page-banner {
  background:
    linear-gradient(rgba(12,12,12,.68), rgba(12,12,12,.68)),
    url('../images/lets-start-moving-25.png') center/cover no-repeat;
}

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

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

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

/* ── SERVICES ── */
.tm-includes { padding: 80px 0; background: var(--light-bg); }
.ti-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;
}
.ti-item:hover { border-color: var(--secondary); box-shadow: 0 10px 32px rgba(0,0,0,.09); transform: translateY(-4px); }
.ti-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;
}
.ti-item:hover .ti-icon { background: var(--secondary); border-color: var(--secondary); color: #fff; }
.ti-item h5 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 7px; }
.ti-item p { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── WHY CHOOSE ── */
.tm-why { padding: 80px 0; background: #fff; }
.tw-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.tw-item:last-child { margin-bottom: 0; }
.tw-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;
}
.tw-item h5 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.tw-item p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.65; }
.tm-why-img img { width: 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; }

@media (max-width: 991px) {
  .tm-intro, .tm-why { padding: 60px 0; }
  .tm-includes, .other-services { padding: 56px 0; }
  .tm-intro-img .img-badge { right: 0; }
  .tm-why-img img { min-height: 280px; margin-top: 32px; }
}
@media (max-width: 767px) { .tm-intro-img img { height: 280px; } }
