.vehicle-categories {
  background: linear-gradient(180deg, #0f172a, #0b1222);
  padding: 80px 120px;
}

.section-title {
  text-align: center;
  color: #e2e8f0;
  font-size: 2rem;
  margin-bottom: 50px;
}

.categories-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.category-card {
  background: linear-gradient(145deg, #16213a, #0f172a);
  border: 1px solid rgba(56,189,248,0.25);
  border-radius: 16px;
  padding: 28px 22px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* text-align: center; */
}

.category-card h3 {
  color: #f8fafc;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.category-card img {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.6));
}

.category-card p {
  color: #cbd5f5;
  font-size: 0.95rem;
  line-height: 1.45;
}


.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56,189,248,0.6);
  box-shadow: 0 20px 40px rgba(0,0,0,0.75);
}



@media (max-width: 768px) {
  .vehicle-categories {
    padding: 50px 16px;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }

  .category-card {
    padding: 22px 18px;
  }

  .category-card img {
    max-height: 110px;
  }

  .category-card h3 {
    font-size: 1.15rem;
  }

  .category-card p {
    font-size: 0.9rem;
  }
}


@media (prefers-color-scheme: dark) {
  html {
    filter: none !important;
  }

  img, video {
    filter: none !important;
  }
}
