/* Metinsiz, görsel odaklı ana banner */
.hero {
  min-height: 720px;
}

.hero::after {
  display: none;
}

.hero-slide::after {
  background:
    linear-gradient(180deg, rgba(4, 8, 15, 0.02) 45%, rgba(4, 8, 15, 0.55) 100%),
    linear-gradient(90deg, rgba(4, 8, 15, 0.12), rgba(4, 8, 15, 0.02) 70%);
}

/* Bannerın altında ilerleyen servis ve slogan alanı */
.motion-slogan {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% -40%, rgba(40, 83, 170, 0.4), transparent 42%),
    #080d16;
}

.motion-road {
  position: relative;
  height: 205px;
}

.motion-road::before,
.motion-road::after {
  position: absolute;
  right: 0;
  left: 0;
  content: "";
}

.motion-road::before {
  bottom: 30px;
  height: 3px;
  opacity: 0.65;
  background: repeating-linear-gradient(90deg, #d9aa32 0 62px, transparent 62px 104px);
  animation: road-lines 2.8s linear infinite;
}

.motion-road::after {
  bottom: 13px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.motion-convoy {
  position: absolute;
  bottom: 36px;
  left: 0;
  display: flex;
  align-items: center;
  gap: clamp(25px, 3vw, 50px);
  width: max-content;
  transform: translateX(-105%);
  animation: drive-across 15s linear infinite;
  will-change: transform;
}

.motion-message {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.7vw, 68px);
  font-weight: 780;
  letter-spacing: -2.8px;
  line-height: 1;
  white-space: nowrap;
}

.motion-message span {
  color: #78a5ff;
  font-weight: 420;
}

.moving-van {
  position: relative;
  width: 208px;
  height: 96px;
  flex: 0 0 208px;
  filter: drop-shadow(0 12px 10px rgba(0, 0, 0, 0.35));
  animation: van-suspension 900ms ease-in-out infinite alternate;
}

.van-body {
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
  height: 72px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px 33px 9px 9px;
  background: linear-gradient(180deg, #fff 0%, #eef1f5 64%, #cfd5dd 100%);
  clip-path: polygon(0 10%, 65% 10%, 73% 0, 87% 0, 100% 47%, 100% 84%, 0 84%);
}

.van-body::before {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, #183f95, #366bc5 72%, #183f95);
}

.van-window {
  position: absolute;
  top: 13px;
  height: 23px;
  border: 2px solid #eef2f6;
  border-radius: 5px;
  background: linear-gradient(145deg, #22364b, #7390aa);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.van-window-one {
  left: 18px;
  width: 40px;
}

.van-window-two {
  left: 61px;
  width: 40px;
}

.van-window-three {
  left: 104px;
  width: 33px;
}

.van-window-front {
  right: 23px;
  width: 39px;
  transform: skewX(-13deg);
  transform-origin: bottom;
}

.van-brand {
  position: absolute;
  bottom: 23px;
  left: 28px;
  color: #141922;
  font: 850 13px/1 Inter, "Segoe UI", sans-serif;
  letter-spacing: 1.6px;
}

.van-brand::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 6px;
  content: "";
  vertical-align: -2px;
  border-radius: 3px 8px 3px 3px;
  background: #2457ad;
  transform: skewX(-12deg);
}

.van-light {
  position: absolute;
  top: 46px;
  right: 1px;
  width: 7px;
  height: 10px;
  border-radius: 3px;
  background: #ffe295;
  box-shadow: 5px 0 12px rgba(255, 218, 117, 0.65);
}

.van-wheel {
  position: absolute;
  z-index: 2;
  bottom: 4px;
  width: 30px;
  height: 30px;
  border: 6px solid #11151b;
  border-radius: 50%;
  background: #8b949e;
  box-shadow: inset 0 0 0 4px #d8dde3;
  animation: wheel-spin 900ms linear infinite;
}

.van-wheel-back {
  left: 31px;
}

.van-wheel-front {
  right: 27px;
}

@keyframes drive-across {
  to {
    transform: translateX(100vw);
  }
}

@keyframes road-lines {
  to {
    background-position: -104px 0;
  }
}

@keyframes van-suspension {
  to {
    transform: translateY(2px);
  }
}

@keyframes wheel-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 850px) {
  .hero {
    min-height: 700px;
  }

  .motion-road {
    height: 178px;
  }

  .motion-convoy {
    bottom: 32px;
    animation-duration: 12s;
  }

  .motion-message {
    font-size: clamp(34px, 8vw, 52px);
    letter-spacing: -2px;
  }

  .moving-van {
    width: 180px;
    height: 86px;
    flex-basis: 180px;
    transform-origin: right bottom;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 650px;
  }

  .motion-road {
    height: 158px;
  }

  .motion-convoy {
    gap: 22px;
    animation-duration: 11s;
  }

  .motion-message {
    font-size: 34px;
  }

  .moving-van {
    width: 166px;
    flex-basis: 166px;
    transform: scale(0.9);
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-convoy {
    left: 50%;
    animation: none;
    transform: translateX(-50%);
  }

  .motion-road::before,
  .moving-van,
  .van-wheel {
    animation: none;
  }
}
