/* FLEET SECTION */
.fleet-section {
  padding: 100px 20px;
  background: #0d0d0d;
  color: #fff;
}

.fleet-section .container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.fleet-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #f1c40f;
}

.fleet-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 40px;
}

.fleet-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-10px);
}

.fleet-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.fleet-card h2 {
  font-size: 1.3rem;
  color: #f1c40f;
  margin-bottom: 10px;
}

.fleet-card ul {
  text-align: left;
  padding-left: 20px;
  color: #ccc;
}
