/* Fleet Slider Custom Styles */
.fleet-section {
  position: relative;
  overflow: hidden;
}

.fleet-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(195, 160, 89, 0.15);
}

.fleet-card-img {
  position: relative;
  padding: 30px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
  overflow: hidden;
}

.fleet-card-img img {
  max-width: 90%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.1));
}

.fleet-card:hover .fleet-card-img img {
  transform: scale(1.08) rotate(-1deg);
}

.fleet-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #111;
  color: #c3a059;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.fleet-badge.badge-premium {
  background: #c3a059;
  color: #fff;
}

.fleet-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.fleet-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.fleet-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.fleet-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #444;
  font-weight: 500;
}

.feature-item i {
  color: #c3a059;
  font-size: 16px;
}

.fleet-action {
  margin-top: auto;
}

.btn-fleet-book {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  background: #111;
  color: #fff !important;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-fleet-book span {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-fleet-book:hover {
  background: #c3a059;
  box-shadow: 0 5px 15px rgba(195, 160, 89, 0.3);
}

.btn-fleet-book:hover span {
  transform: translateX(5px);
}

/* Customizing Splide elements */
.fleet-splide .splide__pagination {
  bottom: -40px;
}

.fleet-splide .splide__pagination__page.is-active {
  background: #c3a059;
  transform: scale(1.3);
}

.fleet-splide .splide__arrow {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0.8;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
}

.fleet-splide .splide__arrow:hover {
  opacity: 1;
  background: #111;
}

.fleet-splide .splide__arrow:hover svg {
  fill: #fff;
}

.fleet-splide .splide__arrow--prev {
  left: -20px;
}

.fleet-splide .splide__arrow--next {
  right: -20px;
}

@media (max-width: 1200px) {
  .fleet-splide .splide__arrow--prev {
    left: 0px;
  }

  .fleet-splide .splide__arrow--next {
    right: 0px;
  }
}