/* Single Vehicle Page Styles */

/* Vehicle Hero */
.vehicle-hero {
  background: linear-gradient(135deg, #0a0f1c 0%, #1e293b 50%, #0f172a 100%);
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
}

.vehicle-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(239,68,68,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.vehicle-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.vehicle-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(239,68,68,0.3);
}

.vehicle-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.vehicle-category {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  margin-bottom: 32px;
  font-weight: 600;
}

.vehicle-hero-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.hero-spec {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.hero-spec-icon {
  font-size: 28px;
  line-height: 1;
}

.hero-spec-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.hero-spec-value {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.vehicle-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.vehicle-hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.vehicle-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.vehicle-placeholder {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.vehicle-placeholder-icon {
  font-size: 64px;
  opacity: 0.3;
}

.vehicle-placeholder p {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

/* Vehicle Description */
.vehicle-description {
  padding: 80px 5%;
  background: #fff;
}

.vehicle-description h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 24px;
  color: #1e293b;
}

.vehicle-content {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
}

.vehicle-content p {
  margin-bottom: 16px;
}

/* Specifications Section */
.vehicle-specs-section {
  padding: 80px 5%;
  background: #f8fafc;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.spec-category {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.spec-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-color: #cbd5e1;
}

.spec-category-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.spec-value {
  font-size: 15px;
  color: #1e293b;
  font-weight: 700;
  text-align: right;
}

/* Contact CTA */
.vehicle-contact-cta {
  padding: 80px 5%;
  background: linear-gradient(135deg, #0a0f1c 0%, #1e293b 100%);
}

.cta-box {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.cta-box h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-box p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn-outline svg {
  vertical-align: middle;
}

/* Related Vehicles */
.related-vehicles {
  padding: 80px 5%;
  background: #fff;
}

.related-vehicles .models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
  .vehicle-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .vehicle-hero-image {
    order: -1;
  }
  
  .vehicle-hero-specs {
    grid-template-columns: 1fr;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-box {
    padding: 40px 24px;
  }
}

@media (max-width: 640px) {
  .vehicle-hero {
    padding: 100px 5% 60px;
  }
  
  .vehicle-hero-actions {
    flex-direction: column;
  }
  
  .vehicle-hero-actions .btn-primary,
  .vehicle-hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
  
  .spec-category {
    padding: 24px;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .cta-actions .btn-primary,
  .cta-actions .btn-outline {
    width: 100%;
  }
}
