/* Fleet Page Specific Styles */
.fleet-hero {
  background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 100%);
  padding: 4rem 0;
  text-align: center;
}

.fleet-hero .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.fleet-hero .hero-content p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Fleet Overview */
.fleet-overview {
  padding: 3rem 0;
  background: var(--background);
  border-bottom: 1px solid var(--border);
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

/* Vehicle Details */
.vehicle-details {
  padding: 5rem 0;
  background: var(--secondary);
}

.vehicle-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vehicle-image {
  text-align: center;
}

.vehicle-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vehicle-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.vehicle-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.vehicle-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.spec-group h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.spec-group ul {
  list-style: none;
}

.spec-group li {
  padding: 0.5rem 0;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
}

.spec-group li:last-child {
  border-bottom: none;
}

.spec-group strong {
  color: var(--foreground);
  font-weight: 600;
}

/* Interior Features */
.interior-features {
  padding: 5rem 0;
  background: var(--background);
}

.interior-features h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Safety Features */
.safety-features {
  padding: 5rem 0;
  background: var(--secondary);
}

.safety-features h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 3rem;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.safety-item {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.safety-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.safety-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.safety-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.safety-item p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* CTA Section */
.fleet-cta {
  padding: 4rem 0;
  background: var(--background);
}

.cta-card {
  background: var(--card);
  border-radius: calc(var(--radius) * 2);
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.cta-card p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .fleet-hero .hero-content h1 {
    font-size: 2rem;
  }

  .fleet-hero .hero-content p {
    font-size: 1rem;
  }

  .overview-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .vehicle-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .vehicle-info h2 {
    font-size: 2rem;
  }

  .vehicle-specs {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .safety-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .interior-features h2,
  .safety-features h2 {
    font-size: 2rem;
  }

  .cta-card {
    padding: 2rem 1rem;
  }

  .cta-card h2 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .fleet-hero {
    padding: 2rem 0;
  }

  .fleet-overview {
    padding: 2rem 0;
  }

  .vehicle-details {
    padding: 3rem 0;
  }

  .interior-features,
  .safety-features {
    padding: 3rem 0;
  }

  .overview-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .vehicle-info h2 {
    font-size: 1.75rem;
  }

  .feature-item,
  .safety-item {
    padding: 1.5rem;
  }

  .feature-icon,
  .safety-icon {
    font-size: 2.5rem;
  }

  .feature-item h3,
  .safety-item h3 {
    font-size: 1.125rem;
  }
}

/* Animation for fleet elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-item {
  animation: fadeInUp 0.6s ease-out;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.feature-item,
.safety-item {
  animation: fadeInUp 0.6s ease-out;
}

.feature-item:nth-child(1) { animation-delay: 0.5s; }
.feature-item:nth-child(2) { animation-delay: 0.6s; }
.feature-item:nth-child(3) { animation-delay: 0.7s; }
.feature-item:nth-child(4) { animation-delay: 0.8s; }
.feature-item:nth-child(5) { animation-delay: 0.9s; }
.feature-item:nth-child(6) { animation-delay: 1.0s; }

.safety-item:nth-child(1) { animation-delay: 1.1s; }
.safety-item:nth-child(2) { animation-delay: 1.2s; }
.safety-item:nth-child(3) { animation-delay: 1.3s; }
.safety-item:nth-child(4) { animation-delay: 1.4s; }
