/* ===============================
   FLEET PAGE – LUXURY THEME
   =============================== */

.fleet-page {
  padding: 40px 0 70px;
  background: linear-gradient(to bottom, #0b0b0b 0%, #141414 100%);
}

.fleet-page-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.fleet-page-hero {
  text-align: center;
  margin-bottom: 55px;
}

.fleet-page-hero h1 {
  font-family: "Playfair Display SC", serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--gold);
  margin-bottom: 12px;
}

.fleet-page-hero .lead {
  color: #fff;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.7;
  max-width: 920px;
  margin: 0 auto;
}

.fleet-page-intro,
.fleet-page-seo,
.fleet-page-cta {
  text-align: center;
  margin-bottom: 70px;
}

.fleet-page-intro h2,
.fleet-page-seo h2,
.fleet-page-cta h2 {
  font-family: "Playfair Display SC", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--gold);
  margin-bottom: 22px;
}

.fleet-page-intro p,
.fleet-page-seo p,
.fleet-page-cta p {
  color: #fff;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.75;
  max-width: 980px;
  margin: 0 auto 18px;
}

.fleet-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.fleet-vehicle-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(180deg, #1b1b1b 0%, #111111 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fleet-vehicle-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(212, 175, 55, 0.06);
}

.fleet-vehicle-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.fleet-vehicle-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 28px;
}

.fleet-vehicle-content h3 {
  font-family: "Playfair Display SC", serif;
  font-size: 1.55rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.fleet-vehicle-content p {
  color: #e8e8e8;
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.fleet-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.fleet-spec {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
}

.fleet-spec span {
  display: block;
  color: #c9c9c9;
  font-size: 0.84rem;
  margin-bottom: 4px;
}

.fleet-spec strong {
  color: var(--gold);
  font-size: 0.98rem;
  font-weight: 700;
}

.fleet-vehicle-content ul {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
}

.fleet-vehicle-content li {
  color: #f1f1f1;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.fleet-vehicle-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.fleet-page-cta .cta-button {
  display: inline-block;
  margin-top: 10px;
  padding: 1rem 2.5rem;
  background-color: var(--gold);
  color: var(--dark-bg);
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.fleet-page-cta .cta-button:hover {
  background-color: var(--btn-hover);
  transform: translateY(-3px);
}

@media (max-width: 1100px) {
  .fleet-page-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 700px) {
  .fleet-page-container {
    padding: 0 16px;
  }

  .fleet-vehicle-card img {
    height: 240px;
  }

  .fleet-vehicle-content {
    padding: 20px 18px 22px;
  }

  .fleet-vehicle-content h3 {
    font-size: 1.28rem;
  }

  .fleet-spec-grid {
    grid-template-columns: 1fr;
  }

  .fleet-vehicle-content p,
  .fleet-vehicle-content li {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}