





/* ============================================
   PREMIUM FLEET SECTION STYLES
   ============================================ */

.section-fleet-premium {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

/* Section Header */
.section-header-premium {
  max-width: 600px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #F8CD00;
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}

.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #F8CD00, #FFE55C);
}

.color-primary
.heading-premium {
  font-size: 48px;
  font-weight: 700;
  /* color: #0a0a0a; */
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #F8CD00 0%, #D4A700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* View All Button */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0a0a0a;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-view-all::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F8CD00, #D4A700);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.btn-view-all:hover {
  border-color: #F8CD00;
  color: #0a0a0a;
}

.btn-view-all:hover::before {
  transform: translateX(0);
}

.btn-view-all svg {
  transition: transform 0.3s ease;
}

.btn-view-all:hover svg {
  transform: translateX(4px);
}

/* Fleet Grid - Bento Box Layout */
.fleet-grid-container {
  position: relative;
  z-index: 2;
}

/* Fleet Cards */
.fleet-card-premium {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
}

.fleet-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Featured Card (First Item) */
.fleet-card-featured {
  flex-direction: row;
}

@media (max-width: 991px) {
  .fleet-card-featured {
    flex-direction: column;
  }
}

.fleet-card-featured .fleet-image-wrapper {
  flex: 0 0 60%;
  max-width: 60%;
}

@media (max-width: 991px) {
  .fleet-card-featured .fleet-image-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.fleet-card-featured .fleet-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

/* Image Container */
.fleet-image-wrapper {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fleet-image-container {
  position: relative;
  padding-top: 75%; /* 4:3 Aspect Ratio */
  overflow: hidden;
}

.fleet-card-featured .fleet-image-container {
  padding-top: 65%;
  height: 100%;
}

.fleet-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-card-premium:hover .fleet-image-container img {
  transform: scale(1.05);
}

/* Overlay */
.fleet-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.fleet-card-premium:hover .fleet-overlay {
  opacity: 1;
}

.btn-quick-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #0a0a0a;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fleet-card-premium:hover .btn-quick-view {
  transform: translateY(0);
}

.btn-quick-view:hover {
  background: #F8CD00;
  color: #0a0a0a;
}

/* Badges */
.fleet-badge {
  position: absolute;
  z-index: 10;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fleet-badge-popular {
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #F8CD00, #D4A700);
  color: #0a0a0a;
}

.fleet-badge-class {
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: #0a0a0a;
  backdrop-filter: blur(10px);
}

/* Content */
.fleet-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fleet-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.fleet-title a {
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.fleet-title a:hover {
  color: #D4A700;
}

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

/* Specs Grid */
.fleet-specs {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s ease;
}

.fleet-card-premium:hover .spec-icon {
  background: #F8CD00;
  color: #0a0a0a;
}

.spec-info {
  display: flex;
  flex-direction: column;
}

.spec-value {
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.2;
}

.spec-label {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-item-highlight .spec-icon {
  background: rgba(248, 205, 0, 0.1);
  color: #F8CD00;
}

/* Footer CTA */
.fleet-footer {
  margin-top: auto;
}

.btn-fleet-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: #001F5F;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid #0a0a0a;
}

.btn-fleet-book:hover {
  background: #F8CD00;
  border-color: #F8CD00;
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(248, 205, 0, 0.3);
}

.btn-fleet-book svg {
  transition: transform 0.3s ease;
}

.btn-fleet-book:hover svg {
  transform: translateX(4px);
}

/* Mobile CTA */
.btn-view-all-mobile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0a0a0a;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 14px 28px;
  background: #f8f9fa;
  border-radius: 50px;
  border: 2px solid #e0e0e0;
}

/* Background Decorations */
.fleet-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.deco-line-fleet {
  position: absolute;
  top: 10%;
  right: 0;
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 205, 0, 0.3), transparent);
}

.deco-circle-fleet {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(248, 205, 0, 0.1);
  border-radius: 50%;
}

/* Empty State */
.empty-state {
  padding: 40px;
  color: #999;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-fleet-premium {
    padding: 80px 0;
  }

  .heading-premium {
    font-size: 36px;
  }

  .fleet-specs {
    grid-template-columns: repeat(2, 1fr);
  }

  /* .spec-item:last-child {
    display: none; /* Hide 3rd spec on mobile
  } */
}

@media (max-width: 576px) {
  .fleet-card-featured .fleet-content {
    padding: 24px;
  }

  .fleet-title {
    font-size: 18px;
  }
}

/* Animation Classes for Wow.js */
.wow {
  visibility: hidden;
}