/* ==============================================
   FLEET PAGE - MODERN STYLES
   ============================================== */

/* Stats Section */
.fleet-stats-section {
  padding: 3rem 0;
  background: white;
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

.fleet-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.fleet-stat {
  text-align: center;
  padding: 1rem;
}

.fleet-stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 140, 0, 0.1),
    rgba(255, 140, 0, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1.5rem;
}

.fleet-stat-number {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.fleet-stat-label {
  color: #667085;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Fleet Section */
.fleet-section {
  padding: 4rem 0 5rem;
  background: #fafafa;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* Fleet Card */
.fleet-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 31, 77, 0.12);
}

.fleet-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.fleet-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary), #003366);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 4rem;
}

.fleet-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-secondary);
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50px;
}

.fleet-card-content {
  padding: 1.75rem;
}

.fleet-card-content h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.fleet-card-content p {
  color: #667085;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.fleet-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fleet-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #4a4a4a;
}

.fleet-features li i {
  color: var(--color-secondary);
  font-size: 0.8rem;
}

/* Advantages Section */
.fleet-advantages-section {
  padding: 5rem 0;
  background: white;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.advantage-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(0, 31, 77, 0.02),
    rgba(255, 140, 0, 0.02)
  );
  border-radius: 20px;
  border: 2px solid rgba(0, 31, 77, 0.05);
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-secondary);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary), #ff6b00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
}

.advantage-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.advantage-item p {
  color: #667085;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.fleet-cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--color-primary), #003366);
}

.fleet-cta-content {
  text-align: center;
  color: white;
}

.fleet-cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.fleet-cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.fleet-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--color-secondary);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fleet-cta-btn:hover {
  background: #ff6b00;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.fleet-cta-btn i {
  transition: transform 0.3s ease;
}

.fleet-cta-btn:hover i {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1024px) {
  .fleet-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .fleet-stats-grid {
    padding: 1.5rem;
  }

  .fleet-stat-number {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .fleet-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .fleet-stat {
    padding: 0.5rem;
  }

  .fleet-stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* Animation */
.fleet-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.5s ease forwards;
}

.fleet-card:nth-child(1) {
  animation-delay: 0.1s;
}
.fleet-card:nth-child(2) {
  animation-delay: 0.2s;
}
.fleet-card:nth-child(3) {
  animation-delay: 0.3s;
}
.fleet-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
