/* Top Phone Bar */
.top-phone-bar {
  background: var(--primary-yellow);
  color: var(--black);
  padding: 8px 0;
  text-align: center;
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 1001;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-phone-bar a {
  color: var(--black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-phone-bar a:hover {
  color: var(--white);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1000;
  background: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  animation: pulse-whatsapp 2s infinite;
  text-decoration: none;
}

.floating-whatsapp:hover {
  background: #20b358;
  color: white;
  transform: scale(1.1);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
}

.floating-enquire {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, var(--black) 0%, #333 100%);
  color: var(--white);
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  animation: bounce-enquire 3s infinite;
  cursor: pointer;
}

.floating-enquire:hover {
  background:  var(--white);
  color:var(--black);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

@keyframes bounce-enquire {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

/* Vehicle Hero Section */
.vehicle-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vehicle-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,191,0,0.1)"><polygon points="0,0 1000,100 1000,0"/></svg>');
  background-size: 100% 100%;
}

.vehicle-hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out;
}

.vehicle-hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.fleet-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color:  var(--black);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  color: var(--black);
}

/* Enhanced Vehicle Cards */
.vehicle-card {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 420px;
  display: flex;
  flex-direction: column;
  background: white;
  position: relative;
  cursor: pointer;
  animation: fadeInUp 0.8s ease-out;
}

.vehicle-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vehicle-img-container {
  position:relative;
  height: 220px;
  overflow: hidden;
}

.vehicle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.vehicle-card:hover .vehicle-img {
  transform: scale(1.1);
}

.vehicle-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 191, 0, 0.3), rgba(255, 165, 0, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
}

.vehicle-card:hover .vehicle-overlay {
  opacity: 1;
}

.vehicle-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vehicle-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  text-align: center;
}

.vehicle-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
  justify-content: center;
}

.feature-badge {
  background: linear-gradient(135deg, var(--primary-yellow), #ffa500);
  color: #2c2c2c;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

.vehicle-specs {
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.spec-item {
  text-align: center;
  font-size: 0.9rem;
}

.spec-icon {
  color: var(--primary-yellow);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.spec-value {
  font-weight: bold;
  color: #2c2c2c;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c2c2c;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-yellow), #ffa500);
  border-radius: 2px;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* AC/Non-AC Toggle */
.ac-toggle {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.ac-option {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  margin: 0 0.5rem;
  border-radius: 25px;
  border: 2px solid var(--primary-yellow);
  background: white;
  color: #2c2c2c;
  font-weight: bold;
  transition: all 0.3s ease;
}

.ac-option.active {
  background: var(--primary-yellow);
  color: #2c2c2c;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Staggered animation for cards */
.vehicle-card:nth-child(1) { animation-delay: 0.1s; }
.vehicle-card:nth-child(2) { animation-delay: 0.2s; }
.vehicle-card:nth-child(3) { animation-delay: 0.3s; }
.vehicle-card:nth-child(4) { animation-delay: 0.4s; }

/* Why Choose Our Fleet Section */
.why-choose-fleet {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  margin: 4rem 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  animation: slideInLeft 0.8s ease-out;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-yellow), #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #2c2c2c;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .vehicle-hero h1 {
    font-size: 2.5rem;
  }

  .fleet-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .vehicle-card {
    height: auto;
    min-height: 380px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}
