/* ════════════════════════════════════════
   INDEX.CSS — Homepage only
   Let's Start Moving
════════════════════════════════════════ */

/* ── HERO ───────────────────────────────── */
.hero {
  background:
    linear-gradient(to right, rgba(15,15,15,.72) 48%, rgba(15,15,15,.25)),
    url('../images/lets-start-moving-01.jpg') center/cover no-repeat;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 70px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--secondary); color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 4px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 44px; font-weight: 900;
  color: #fff; line-height: 1.1;
  letter-spacing: -0.5px; margin-bottom: 16px;
}
.hero h1 span { color: #fff; font-style: italic; }
.hero .hero-sub {
  font-size: 16px; font-weight: 400;
  color: #d1d5db; margin-bottom: 32px;
  max-width: 420px; line-height: 1.7;
}

/* Quote Form */
.play-circle {
  width: 30px; height: 30px;
  background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.quote-card {
  background: #fff; border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,.22); overflow: hidden;
}
.quote-card-header {
  background: var(--secondary); color: #fff;
  padding: 16px 24px; font-size: 15px; font-weight: 700;
}
.quote-card-header i { margin-right: 8px; }
.quote-card-body { padding: 22px; }
.quote-card label {
  font-size: 11px; font-weight: 700; color: #6b7280;
  text-transform: uppercase; letter-spacing: .6px;
  margin-bottom: 5px; display: block;
}
.quote-card .form-control,
.quote-card .form-select {
  border: 1.5px solid var(--border); border-radius: 6px;
  font-size: 14px; font-family: 'Inter', sans-serif;
  padding: 9px 12px; color: var(--dark);
  transition: border-color .2s, box-shadow .2s;
}
.quote-card .form-control:focus,
.quote-card .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(255,90,9,.12); outline: none;
}
.btn-submit {
  background: var(--primary); color: #fff; border: none;
  padding: 12px; font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700; border-radius: 6px;
  width: 100%; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-submit:hover { background: #b00301; transform: translateY(-1px); }

/* ── ABOUT SECTION ──────────────────────── */
.about-section { background: var(--light-bg); padding: 96px 0; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 430px; object-fit: cover; border-radius: 10px; }
.about-badge {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--primary); color: #fff;
  padding: 18px 22px; border-radius: 10px;
  text-align: center; box-shadow: 0 8px 24px rgba(207,4,2,.25);
}
.about-badge .num { font-size: 36px; font-weight: 900; line-height: 1; }
.about-badge .lbl { font-size: 12px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; opacity: .9; margin-top: 2px; }
.about-list { list-style: none; padding: 0; margin: 16px 0; }
.about-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; margin-bottom: 10px; }
.about-list li i { color: var(--secondary); margin-top: 3px; font-size: 14px; flex-shrink: 0; }
.highlight-box {
  background: #fff; border: 1.5px solid var(--border);
  border-left: 4px solid var(--secondary);
  border-radius: 8px; padding: 18px 20px; margin-top: 20px;
}
.hb-row { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.hb-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--dark); }
.hb-item i { color: var(--secondary); font-size: 14px; }

/* ── SERVICES SECTION ───────────────────── */
.services-section { padding: 66px 0; background: #fff; }
.service-card {
  border: 1.5px solid var(--border); border-radius: 10px;
  overflow: hidden; height: 100%; background: #fff;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,.1); border-color: var(--secondary); }
.service-card img { height: 200px; width: 100%; object-fit: cover; transition: transform .35s; }
.service-card:hover img { transform: scale(1.03); }
.service-card .card-body { padding: 20px; }
.service-icon {
  width: 44px; height: 44px; background: var(--secondary);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 18px; margin-bottom: 12px;
}
.service-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }
.btn-learn {
  color: var(--secondary); font-size: 14px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center;
  gap: 5px; margin-top: 10px; transition: gap .2s;
}
.btn-learn:hover { gap: 9px; }

/* ── WHY CHOOSE US ──────────────────────── */
.why-section {
  background:
    linear-gradient(rgba(30,30,30,.50), rgba(30,30,30,.78)),
    url('../images/lets-start-moving-03.jpg') center/cover no-repeat;
  padding: 96px 0;
}
.why-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.why-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;
}
.why-item h5 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.why-item p { font-size: 14.5px; color: #c8ccd2; margin: 0; line-height: 1.65; }

/* ── VIDEO CTA ──────────────────────────── */
.video-cta {
  background: #cf0402; padding: 50px 0; color: #fff;
  position: relative; overflow: hidden;
}
.video-cta::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; background: rgba(255,255,255,.06);
  border-radius: 50%; pointer-events: none;
}
.video-cta h2 { font-size: 34px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.video-cta p { font-size: 16px; opacity: .88; max-width: 500px; }
.btn-white-solid {
  background: #fff; color: var(--secondary);
  font-size: 14px; font-weight: 700;
  padding: 12px 28px; border-radius: 6px; border: none;
  cursor: pointer; transition: background .2s, transform .15s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-white-solid:hover { background: #f3f4f6; transform: translateY(-1px); color: var(--secondary); }

/* ── TESTIMONIALS ───────────────────────── */
.testimonials-section { background: var(--light-bg); padding: 96px 0; }
.testimonial-card {
  background: #fff; border-radius: 10px; padding: 28px;
  border: 1.5px solid var(--border); margin: 4px 10px 20px;
  position: relative; height: 100%;
}
.quote-mark {
  font-size: 52px; line-height: 1; color: var(--secondary);
  font-family: Georgia, serif; opacity: .2;
  position: absolute; top: 12px; left: 18px;
}
.stars { color: #f59e0b; font-size: 13px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.75; padding-top: 8px; }
.reviewer {
  display: flex; align-items: center; gap: 12px;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border);
}
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.reviewer-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.reviewer-loc { font-size: 12px; color: var(--muted); margin-top: 1px; }

#testimonialCarousel { padding: 0 32px; }
.carousel-control-prev,
.carousel-control-next {
  width: 40px; height: 40px; background: var(--secondary);
  border-radius: 50%; top: 40%; transform: translateY(-50%); opacity: 1;
}
.carousel-control-prev { left: -6px; }
.carousel-control-next { right: -6px; }
.carousel-control-prev:hover,
.carousel-control-next:hover { background: #e04f08; opacity: 1; }
.carousel-indicators { bottom: -8px; }
.carousel-indicators [data-bs-target] {
  background-color: var(--secondary); border-radius: 50%;
  width: 8px; height: 8px; border: none; opacity: .3;
}
.carousel-indicators .active { opacity: 1; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 991px) {
  .hero h1 { font-size: 32px; }
  .section-title { font-size: 26px; }
  .about-badge { left: 0; }
}
@media (max-width: 767px) {
  .hero { padding: 56px 0; min-height: auto; }
  .hero h1 { font-size: 26px; }
  .about-section, .services-section, .why-section, .testimonials-section { padding: 64px 0; }
}
