/* ======================================================
   ABOUT FLEET — Premium Zapex
====================================================== */

.about-fleet {
  padding: 6rem 1rem;
  background: #f8f9fa;
}

.about-fleet__header {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}

.about-fleet__pretitle {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-dark-blue);
  margin-bottom: 0.4rem;
}

.about-fleet__header h2 {
  font-size: 2.4rem;
  color: var(--color-blue-grey-900);
  margin-bottom: 1rem;
}

.about-fleet__desc {
  color: var(--color-blue-grey-600);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* GRID */
.about-fleet__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* CARD */
.fleet-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (hover: hover) {
  .fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.16);
  }
}

.fleet-card__image {
  height: 220px;
  overflow: hidden;
}

.fleet-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

@media (hover: hover) {
  .fleet-card:hover .fleet-card__image img {
    transform: scale(1.07);
  }
}

.fleet-card__content {
  padding: 1.6rem;
}

.fleet-card__content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.fleet-card__content p {
  color: var(--color-blue-grey-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.fleet-card__specs {
  background: #f0f3f4;
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}
