/**
 * Vehicle / Services section – fleet cards, fare modes, rate card
 * Drop Cars – Premium intercity taxi
 */

/* Our Taxi – Explore Our Options (Chennai-style) */
.fleet-showcase {
  padding: 3rem 0;
  background: var(--blue-subtle);
}

.fleet-showcase .eyebrow {
  text-align: center;
}

.fleet-showcase h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.fleet-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.fleet-filter__btn {
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.fleet-filter__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.fleet-filter__btn--active {
  background: var(--accent-gradient);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
}

.fleet-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.fleet-showcase__card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}

.fleet-showcase__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.fleet-showcase__img {
  padding: 2.5rem 1.5rem;
  background: radial-gradient(circle at center, #ffffff 40%, #f1f5f9 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fleet-showcase__img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
}

.fleet-showcase__img img {
  height: clamp(100px, 15vw, 140px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.fleet-showcase__card:hover .fleet-showcase__img img {
  transform: scale(1.08) translateX(5px);
}

.fleet-showcase__content {
  padding: 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fleet-showcase__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.fleet-showcase__head h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.fleet-showcase__head span {
  font-weight: 800;
  color: #0ea5e9;
  font-size: 1.15rem;
}

.fleet-showcase__category {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0 0 1.5rem;
  font-weight: 500;
}

.fleet-showcase__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  font-size: 0.95rem;
  color: var(--gray-600);
  display: grid;
  gap: 0.6rem;
}

.fleet-showcase__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fleet-showcase__features li span {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.fleet-showcase__features li.pricing-detail {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--gray-200);
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 600;
}

.fleet-showcase__content .btn-primary {
  margin: auto auto 0 auto;
  width: fit-content;
  min-width: 160px;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services {
  padding: 2.5rem 0;
}

.services__layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.services__visual {
  margin: 0;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.services__visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
}

.services__visual figcaption {
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--gray-400);
}

.benefits {
  padding-left: 1.2rem;
  color: var(--gray-400);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.fleet-card {
  background: var(--gray-100);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  box-shadow: inset 0 0 0 1px var(--gray-200);
}

.fleet-card--highlight {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow);
}

.fleet-card__title {
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.fleet-card ul {
  padding-left: 1.1rem;
  margin: 0.6rem 0 0;
  color: inherit;
}

.fare-modes {
  background: var(--white);
  border-radius: 20px;
  padding: 1.2rem 1.5rem;
  box-shadow: inset 0 0 0 1px var(--gray-200);
}

.fare-modes__title {
  font-weight: 700;
  margin: 0 0 0.8rem;
}

.fare-modes__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.rate-card {
  background: var(--blue);
  color: var(--white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.rate-card h3 {
  color: var(--white);
}

.rate-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.rate-card li {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.rate-card__note {
  font-size: 0.85rem;
  margin-top: 1.2rem;
  opacity: 0.8;
}
