#our-cars {
  background: linear-gradient(
    180deg,
    rgba(27, 27, 27, 0.95),
    rgba(14, 14, 14, 0.95)
  );
  padding: 32px;
  color: white;
}

#our-cars h2 {
  color: #fff;
  font-size: 2rem;
  position: relative;
  &::after {
    content: "";
    display: block;
    width: 185px;
    height: 3px;
    background: gold;
    margin: 10px auto 0;
  }
}

/* #our-cars .vehicle-card:hover .card-image img {
  /* transform: scale(0.5); */
/* }  */

#our-cars .cta-section {
  text-align: center;
  margin-top: 60px;

  .view-all-btn {
    background: linear-gradient(135deg, #ffc40c, #ffb800);
    color: #000000;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* box-shadow: 0 8px 25px rgba(255, 196, 12, 0.3); */

    &:hover {
      transform: translateY(-2px);
      /* box-shadow: 0 12px 35px rgba(255, 196, 12, 0.4); */
      color: #000000;
    }
  }
}

#our-cars .car-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background: #1e1e1e;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  transition: all 0.3s ease;
  /* padding: 8px; */
  padding-bottom: 16px;
  margin-bottom: 16px;

  &:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
  }
}

#our-cars .car-card {
  img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ffc40c;
    color: #000;
    padding: 3px 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
  }

  .car-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 10px;
  }

  .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffc40c;
  }

  .old-price {
    text-decoration: line-through;
    color: #aaa;
    margin-left: 8px;
  }
}

#our-cars .car-card .book-btn {
  width: 80%;
  margin-top: 10px;
  border: 2px solid #ffc40c;
  background-color: transparent;
  color: #ffffff;
  font-weight: 600;
  padding: 6px 20px;
  transition: 0.2s;

  &:hover {
    background-color: #e6af00;
    color: #000;
  }
}

#our-cars .car-card .car-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

#our-cars .car-card .car-tags .tag {
  background-color: #2f2f2f;
  color: #ccc;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 500;
}
