/* --- Fleet Section Styling --- */
.fleet-section {
  background-color: #f8f9fa;
  padding: 100px 0;
  overflow: hidden;
}

/* Badge rotund */
.section-badge-tech {
  display: inline-block;
  background: #2c7a7b;
  color: #fff;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border-radius: 50px !important; /* Maxim rotunjit */
}

.fleet-title {
  font-weight: 800;
  font-size: 2.8rem;
  color: #0b1120;
  line-height: 1.1;
}

.fleet-desc {
  font-size: 1.15rem;
  color: #4b5563;
  border-left: 4px solid #2c7a7b;
  padding-left: 25px;
}

/* --- Carduri cu margini extra-rotunjite --- */
.fleet-card {
  position: relative;
  border-radius: 30px !important; /* Margini foarte rotunjite 2026 style */
  overflow: hidden;
  border: none;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.large-card, .vertical-card { height: 450px; }
.small-card, .stats-card { height: 320px; }

.card-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
}

/* Hover Effect 3D */
.fleet-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0, 86, 179, 0.15);
}

.fleet-card:hover .card-bg-image {
  transform: scale(1.1);
}

/* Etichete (Tags) Rotunjite */
.card-tag {
  display: inline-block;
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fff;
  border-radius: 50px !important; /* Tip pastilă */
}

.tag-perf { background: #0056b3; }
.tag-agab { background: #d4a017; }
.tag-vol { background: #00d2ff; color: #000; }
.tag-cap { background: #10b981; }

.fleet-card h3 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.fleet-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Cardul de statistici / Excellence */
.stats-card {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.icon-wrap-rounded {
  width: 70px;
  height: 70px;
  background: #f0f7ff;
  color: #0056b3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 20px;
  margin: 0 auto;
}

.stats-card h3 { color: #0b1120; }
.stats-card p { color: #64748b; }

.btn-fleet-link {
  margin-top: 15px;
  display: inline-block;
  color: #0056b3;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.3s;
}

.btn-fleet-link:hover {
  gap: 10px;
}

/* Lista specs din cardul mare */
.specs-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  display: flex;
  gap: 20px;
}

.specs-list li {
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 991px) {
  .large-card, .vertical-card { height: 380px; }
}
