/* Base Styles */
:root {
  --primary-bg: #050505;
  --dark: #0b0b0b;
  --secondary-bg: #1e1e1e;
  --gold: #FEE07F;
  --dark-gold: #fdd656;
  --text-secondary: #cccccc;
  --black: #000000;
  --white: #FFFFFF;
  --gray: #f5f5f5;
  --dark-gray: #333333;
  --transition-speed: 0.3s;
  --transition: all 0.3s ease; 
}


/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  color: #575858;
}

/* ===== NAVIGATION BAR ===== */
.navbar {
  background-color: rgba(0, 0, 0, 0.8) !important;
  transition: background-color 0.8s ease;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.9) !important;
}

.navbar-brand img {
  height: auto;
  transition: transform 0.5s ease;
}

.navbar-brand img:hover {
  transform: scale(1.1);
}


.nav-link {
  color: #FFFFFF !important;
  margin-left: 20px;
  font-weight: bold;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.5s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #FEE07F;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #FEE07F !important;
}

/* Mobile Navbar  */
@media (max-width: 992px) {
  .nav-link {
    margin-left: 0;
    padding: 0.5rem 0.75rem;
    display: inline-block;
  }
  
  .nav-link::after {
    left: 0.75rem;
  }
  
  .nav-link:hover::after {
    width: calc(100% - 1.5rem);
  }
}

.nav-link:active {
  border: none !important;
  transform: translateY(2px);
  transition: transform 0.05s ease;
}




/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #FFFFFF;
  text-align: left;
  padding: 0 20px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 3;
  animation: fadeInUp 1.5s ease-out;
}


.hero-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFFFFF;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-content .tagline {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #FEE07F;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 2s ease-out;
}

.hero-content .btn-primary {
  outline: none !important;
  background-color: transparent;
  border: 2px solid #FEE07F;
  color: #FEE07F;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.8s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-content .btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(254, 224, 127, 0.3), transparent);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.8s ease;
  z-index: -1;
}

.hero-content .btn-primary:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.hero-content .btn-primary:hover {
  color: #424242;
  background-color: #FEE07F;
  box-shadow: 0 0 15px #FEE07F, 0 0 30px #FEE07F;
}

.hero-content .btn-primary:active {
  transform: translateY(4px) scale(0.98);
  animation: click-pulse 0.4s ease;
  border: 2px solid #FEE07F;
  box-shadow: 0 0 10px #FEE07F, 
              0 0 20px rgba(254, 224, 127, 0.7),
              0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

.hero-content .btn-primary:focus{
  outline: none;
  border: 2px solid #FEE07F;
}

.hero-section .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.hero-section .background-image.active {
  opacity: 1;
}


/* ===== KEYFRAMES  ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes click-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(254, 224, 127, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(254, 224, 127, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(254, 224, 127, 0);
  }
}

/* ===== About Us ===== */
.about-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #E0E0E0;
  line-height: 1.6;
  background-color: var(--dark);
  padding-top:90px;
}

.about-header {
  position: relative;
  padding-bottom: 15px;
}
.about-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.about-title .about-title-decorator {
  color: rgba(254,224,127,0.5);
  margin-right: 15px;
  font-size: 2rem;
}

.about-subtitle {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.divider-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0 15px;
}

.divider-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 16px;
}

/* About Cards */
.about-card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  background: var(--dark-gray);
  text-align: center;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
  height: 100%;
  opacity: 0;

}
/* === General fade-in-up animation === */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Custom order: Middle → Left → Right */
.about-card.middle-card {
  transition-delay: 0.3s;
}

.about-card.left-card {
  transition-delay: 0.8s;
}

.about-card.right-card {
  transition-delay: 1.3s;
}



.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(254, 224, 127, 0.3);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(254, 224, 127, 0.1) 0%, rgba(51, 51, 51, 0) 100%);
  z-index: -1;
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--dark);
  transition: all 0.3s ease;
}

.about-card:hover .card-icon {
  background: #FFFFFF;
  color: var(--dark-gold);
  transform: rotateY(180deg);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.card-text {
  font-size: 1rem;
  color: #E0E0E0;
}

.stats-section {
  background: rgba(212, 175, 55, 0.05);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  margin: 40px 0;
}

.stats-row {
  display: flex;
  align-items: center;
}

.stat-item {
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: rgba(212, 175, 55, 0.3);
}

.stat-item .counter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
  transition: all 0.3s ease;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === About Us Section Animations ===*/
@keyframes countUp {
  from { 
      opacity: 0;
      transform: translateY(20px);
  }
  to { 
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 767.98px) {
  .about-title {
      font-size: 2rem;
  }
  
  .about-card {
      margin-bottom: 30px;
  }

  .stats-row {
      flex-wrap: wrap;
  }
  
  .stat-item {
      flex: 0 0 50%;
      padding: 25px 15px;
  }
  
  .stat-item:nth-child(2)::after,
  .stat-item:nth-child(4)::after {
      display: none;
  }
  
  .stat-item:nth-child(odd)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 60%;
      width: 1px;
      background: rgba(212, 175, 55, 0.3);
  }
}

@media (max-width: 991.98px) {
  
  .stat-item {
      padding: 30px 15px;
  }
  
  .stat-item .counter {
      font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .stat-item {
      flex: 0 0 100%;
  }
  
  .stat-item::after {
      display: none !important;
  }
}

/* ===== SERVICES SECTION ===== */
.services-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  padding: 80px 0;
  background-color: var(--primary-bg);
  background: radial-gradient(ellipse at bottom, #0a0a0a 0%, #000000 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.services-header {
  position: relative;
  padding-bottom: 15px;
}
.services-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.services-title .services-title-decorator {
  color: rgba(254,224,127,0.5);
  margin-right: 15px;
  font-size: 2rem;
}

.services-subtitle {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
}

.service-card {
  background-color: var(--secondary-bg);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(254, 224, 127, 0.1) 0%, rgba(254, 224, 127, 0) 100%);
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(254,224,127,0.5);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background-color: rgba(254, 224, 127, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.service-icon i {
  font-size: 2rem;
  color: var(--gold);
}

.service-card:hover .service-icon {
  background-color: rgba(254, 224, 127, 0.2);
  transform: rotate(10deg);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--white);
}

.service-description {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.service-link i {
  margin-left: 8px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #ffffff;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Animation for cards when they appear in viewport */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.service-card {
  opacity: 0;
  animation-fill-mode: forwards;
}
.services-section .row {
  perspective: 1500px; /* Creates 3D space for children */
  transform-style: preserve-3d; /* Ensures children maintain 3D positioning */
}

/* Middle card - pops forward */
.row .col-md-4:nth-child(2) .service-card {
  transform: translateZ(20px) scale(1.02);
  z-index: 10 ;
}

/* Side cards - pushed back slightly */
.row .col-md-4:first-child .service-card {
  transform: translateX(-10px) translateZ(10px) scale(0.98);
}

.row .col-md-4:last-child .service-card {
  transform: translateX(10px) translateZ(10px) scale(0.98);
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .services-title {
      font-size: 1.5rem;
  }

  .services-title .services-title-decorator {
      font-size: 1.8rem;
  }
  
  .service-card {
      padding: 25px;
  }
}

/* =====  CTA  ===== */
.cta-section {
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner {
  margin-top: 100px;
  background: linear-gradient(90deg, rgba(20,20,20,0.7) 0%, rgba(30,30,30,0.8) 100%);
  border-radius: 16px;
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(254, 224, 127, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(254,224,127,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  z-index: -1;
}

.cta-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.sub-text{
  font-family: 'Exo 2', sans-serif;
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
}

.typewriter {
  letter-spacing: 1px;
  animation: typing 3.5s steps(40, end) forwards;
}

.service-cta {
  text-align: center;
  position: relative;
}

.magnetic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 30px;
  background: transparent;
  border: 2px solid #FEE07F;
  color: #FEE07F;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}

.magnetic-btn svg {
  transition: transform 0.3s ease;
}

.magnetic-btn path,
.magnetic-btn polyline {
  stroke: #FEE07F;
  stroke-width: 2;
  fill: none;
  transition: all 0.3s ease;
}

.magnetic-btn:hover {
  background: #FEE07F;
  color: #000;
  box-shadow: 0 0 20px rgba(254, 224, 127, 0.5);
}

.magnetic-btn:hover path,
.magnetic-btn:hover polyline {
  stroke: #000;
}

.magnetic-btn:hover svg {
  transform: translateX(5px);
}
.magnetic-btn:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 0 5px rgba(254, 224, 127, 0.3);
  transition: all 0.1s ease;
}

/* Keyframes */
@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}



@media (max-width: 1200px) {
  .cta-banner {
    padding: 40px;
  }
  .cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .cta-title {
    font-size: 1.6rem;
  }
  .typewriter {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 30px 20px;
  }
  .cta-title {
    font-size: 1.4rem;
  }
  .typewriter {
    font-size: 0.95rem;
  }
  .magnetic-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
  .magnetic-btn svg {
    width: 12px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 1.2rem;
  }
  .typewriter {
    font-size: 0.7rem;
  }
  .magnetic-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}


/* ===== Footer ======   */
.footer-section {
  background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
  color: #fff;
  padding: 70px 0 30px;
  font-family: 'Exo 2', sans-serif;
  display: flex;
  justify-content: center;
  
}
.footer-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FEE07F;
  margin: 0;
  letter-spacing: 1px;
}

/* SHIMMEE TEXT  */
.shimmer-text {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg,#FEE07F,  #ffffff, #FEE07F);
  background-size: 200% auto;
  color: #FEE07F;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.footer-tagline {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin: 0;
  font-size: 0.97rem;
}

.footer-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  color: #FEE07F;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.underline-container {
  position: relative;
  display: inline-block;
}

.underline-container::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FEE07F;
  transform-origin: left;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  width: 18px;
  height: 18px;
  fill: #FEE07F;
  flex-shrink: 0;
}

.contact-item a,
.contact-item span {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: #FEE07F;
}
.contact-item span:hover {
  color: #FEE07F;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(254, 224, 127, 0.1);
  color: var(--gold-accent);
  transition: all var(--transition-speed) ease;
  text-decoration: none;
  font-size: 1.1rem;
}

.social-link:hover {
  background-color: var(--gold-accent);
  color: var(--secondary-bg);
  transform: translateY(-3px);
}

.facebook:hover {
  background-color: #3b5998;
  color: white;
}

.linkedin:hover {
  background-color: #0077b5;
  color: white;
}

.instagram:hover {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  color: white;
}
.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
}


/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-title {
    margin-bottom: 20px;
  }
  
  .social-icons {
    justify-content: flex-start;
  }
}


/* Vehicles Styles */
body .main-content{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  margin-top: 130px;
  margin-bottom: 30px;
  padding: 0;
  box-sizing: border-box;
}

.vehicles_container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Filter Section */
.filter-section {
  margin-bottom: 3rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.filter-container {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
}

label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select select {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 2px solid var(--black);
  border-radius: 4px;
  appearance: none;
  background-color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.custom-select select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(254, 224, 127, 0.3);
}

.custom-arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--black);
  transition: var(--transition);
}

.custom-select:hover .custom-arrow {
  color: var(--gold);
}

/* Vehicle Grid */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}


.vehicle-card {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.10);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.1);

}

.vehicle-card.reveal {
   animation: fadeInUpCards 0.6s ease-out forwards;
}
.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.16),
    0 16px 48px rgba(0, 0, 0, 0.12);
}


.vehicle-image {
  width: 100%;
  height: 250px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.vehicle-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.03);
}

.vehicle-details {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.vehicle-make-model {
  margin-bottom: 1rem;
}

.vehicle-make {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
}

.vehicle-model {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin-top: 0.2rem;
  line-height: 1.2;
}

.vehicle-specs {
  margin-top: auto;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-label {
  font-weight: 600;
  color: var(--dark-gray);
}

.spec-value {
  text-align: right;
  color: var(--black);
}

.armour-level {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background-color: var(--black);
  color: var(--gold);
  font-weight: 700;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

@keyframes fadeInUpCards {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Responsive Design */
@media (max-width: 768px) {
  .vehicle-grid {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .logo {
      font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .filter-container {
      width: 100%;
  }
  
  .vehicle-grid {
      grid-template-columns: 1fr;
  }
}