/* Fleet Section */
.fleet {
  position: relative;
  padding: 120px 0 130px;
  min-height: 620px;
  background: #0a0a0a;
  overflow: hidden;
}

.fleet-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.fleet-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.55) 38%,
    rgba(10, 10, 10, 0.15) 72%,
    transparent 100%
  );
  z-index: 1;
}

.fleet-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.fleet .container {
  position: relative;
  z-index: 2;
}

.fleet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
}

.fleet-content {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 12px;
}

.fleet-content .section-label {
  font-size: var(--text-sm);
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.fleet-title {
  margin-bottom: 28px;
  font-size: clamp(2.15rem, 4vw, 2.9rem);
  line-height: 1.22;
  letter-spacing: 0.6px;
  word-spacing: 3px;
  color: var(--color-white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.fleet-title .text-red {
  color: var(--color-red);
  display: inline-block;
  margin-top: 6px;
}

.fleet-desc {
  color: #e2e2e2;
  font-size: var(--text-md);
  line-height: 1.95;
  letter-spacing: 0.35px;
  word-spacing: 2px;
  margin-bottom: 36px;
  width: 100%;
  max-width: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.fleet-content .btn {
  font-size: var(--text-sm);
  letter-spacing: 1.5px;
  word-spacing: 2px;
  padding: 16px 32px;
  align-self: flex-start;
}

.fleet-slider-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fleet-slider {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-dark);
  width: 100%;
  flex: 1;
  min-height: 360px;
}

.fleet-track {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
  min-height: 360px;
}

.fleet-slide {
  min-width: 100%;
  position: relative;
  height: 100%;
  min-height: 360px;
}

.fleet-slide-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.fleet-slide-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 1.8px;
  word-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 4px;
}

.fleet-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(10, 10, 10, 0.8);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--transition);
}

.fleet-arrow:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 4px 16px rgba(227, 30, 36, 0.4);
}

.fleet-prev {
  left: 14px;
}

.fleet-next {
  right: 14px;
}

.fleet-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.fleet-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.fleet-dot.active {
  background: var(--color-red);
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 900px) {
  .fleet {
    padding: 96px 0 100px;
    min-height: auto;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
  }

  .fleet-content {
    max-width: 100%;
  }

  .fleet-title {
    font-size: clamp(1.9rem, 6vw, 2.4rem);
    word-spacing: 2px;
  }

  .fleet-desc {
    font-size: var(--text-base);
    line-height: 1.85;
    max-width: 100%;
  }

  .fleet-arrow {
    display: none;
  }

  .fleet-slider,
  .fleet-track,
  .fleet-slide {
    min-height: 280px;
  }

  .fleet-slide-img {
    height: 280px;
    min-height: 280px;
  }
}

@media (max-width: 600px) {
  .fleet {
    padding: 80px 0 88px;
  }

  .fleet-desc {
    font-size: var(--text-sm);
    letter-spacing: 0.25px;
    word-spacing: 1px;
  }

  .fleet-slider,
  .fleet-track,
  .fleet-slide {
    min-height: 240px;
  }

  .fleet-slide-img {
    height: 240px;
    min-height: 240px;
  }
}
