/* ==========================================================================
   MAPS TOWING — SINGLE SERVICE PAGE (shared template)
   ========================================================================== */

/* --- Hero --- */
.svc-hero {
  background: var(--graphite-850);
  height: 580px;
  padding: 44px var(--side-pad) 52px;
  overflow: hidden;
}

.svc-hero__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 112px;
}

.svc-hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.svc-hero__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 750px;
  max-width: 100%;
}

.svc-hero__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-hero__title {
  font-size: 72px;
  font-weight: 700;
  line-height: 78px;
  color: var(--graphite-50);
  text-shadow: 0 4px 32px rgba(255, 56, 0, 0.12), 0 4px 40px rgba(0, 0, 0, 0.32);
}

.svc-hero__title span {
  color: var(--primary-2);
}

.svc-hero__sub {
  font-size: 16px;
  line-height: 22px;
  color: var(--graphite-250);
  max-width: 700px;
}

.svc-hero__ctas {
  display: flex;
  gap: 12px;
}

.svc-hero__media {
  flex: none;
  width: 592px;
  height: 364px;
  -webkit-mask-image: url("../img/svc-hero.webp");
  mask-image: url("../img/svc-hero.webp");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.svc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-16);
}

/* --- Overview --- */
.svc-overview {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 72px var(--side-pad) 144px;
}

.svc-overview__row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.svc-overview__title {
  font-size: 44px;
  font-weight: 600;
  line-height: 50px;
  color: var(--graphite-950);
  width: 650px;
  max-width: 100%;
}

.svc-overview__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 650px;
  max-width: 100%;
}

.svc-overview__block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-overview__h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: var(--graphite-950);
}

.svc-overview__p {
  font-size: 16px;
  line-height: 22px;
  color: var(--graphite-700);
}

.svc-overview__divider {
  display: block;
  width: 100%;
  height: 2px;
}

/* --- Vehicles we tow --- */
.veh {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 144px var(--side-pad) 72px;
}

.veh__head {
  align-self: center;
}

.veh__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.veh__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 440px;
  max-width: 100%;
}

.veh-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--graphite-50);
  border: 1px solid var(--graphite-150);
  border-radius: var(--r-16);
}

.veh-chip__icn {
  display: grid;
  place-items: center;
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: var(--r-40);
  background: var(--grad-primary);
  filter: drop-shadow(0 4px 14px rgba(255, 56, 0, 0.24));
}

.veh-chip__icn img {
  width: 20px;
  height: 20px;
}

.veh-chip__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.veh-chip__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: var(--graphite-900);
}

.veh-chip__sub {
  font-size: 16px;
  line-height: 22px;
  color: var(--graphite-700);
}

.veh__img {
  width: 432px;
  height: 300px;
  object-fit: cover;
  border-radius: var(--r-16);
}

/* --- How it works (service variant) --- */
.hiw--service {
  padding-bottom: 72px;
}

/* --- Related services --- */
.related {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 72px var(--side-pad) 144px;
}

.related__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ==========================================================================
   MOBILE
   ========================================================================== */
@media (max-width: 1023.98px) {
  .svc-hero {
    height: 812px;
    padding: 96px var(--side-pad-mobile) 40px;
  }

  .svc-hero__inner {
    padding-top: 0;
  }

  .svc-hero__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .svc-hero__text {
    width: 100%;
    gap: 20px;
  }

  .svc-hero__title {
    font-size: 44px;
    line-height: 50px;
  }

  .svc-hero__ctas {
    flex-direction: column;
    gap: 8px;
  }

  .svc-hero__ctas .btn {
    width: 100%;
    height: 48px;
    padding: 12px 20px;
  }

  .svc-hero__media {
    width: 100%;
    max-width: 358px;
    height: 248px;
    align-self: center;
  }

  .svc-overview {
    gap: 24px;
    padding: 72px var(--side-pad-mobile) 144px;
  }

  .svc-overview__row {
    flex-direction: column;
  }

  .svc-overview__title {
    font-size: 32px;
    line-height: 38px;
    width: 100%;
  }

  .svc-overview__info {
    width: 100%;
  }

  .svc-overview__h3 {
    font-size: 18px;
    line-height: 22px;
  }

  .veh {
    gap: 24px;
    padding: 144px var(--side-pad-mobile) 72px;
  }

  .veh__body {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .veh__list {
    width: 100%;
    gap: 16px;
  }

  .veh-chip__icn {
    width: 48px;
    height: 48px;
  }

  .veh-chip__icn img {
    width: 16px;
    height: 16px;
  }

  .veh__img {
    width: 100%;
    height: 220px;
  }

  .related {
    gap: 24px;
    padding: 72px var(--side-pad-mobile) 144px;
  }

  .related__grid {
    grid-template-columns: 1fr;
  }
}
