body {
  margin:0;
  font-family: Arial, sans-serif;
  background:#f9f9f9;
}

.hero {
  background: url("images/hero.jpg") center/cover no-repeat;
  height: 70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
}

.overlay {
  text-align:center;
  background: rgba(0,0,0,.6);
  padding:30px;
}

.call {
  display:inline-block;
  background:#ff7a00;
  padding:12px 20px;
  color:white;
  margin-top:10px;
  text-decoration:none;
  border-radius:6px;
}

.inventory-grid {
  display:grid;
  gap:15px;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  padding:20px;
}

.car-card {
  text-decoration:none;
  color:black;
  background:white;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 5px 10px rgba(0,0,0,.1);
}

.car-card img {
  width:100%;
  height:200px;
  object-fit:cover;
}

.card-body {
  padding:15px;
}

.price {
  color:#ff7a00;
  font-size:20px;
  font-weight:bold;
}

.gallery-container {
  overflow-x: scroll;
  display:flex;
}

.slider img {
  width:100%;
  max-width:450px;
  margin-right:10px;
  border-radius:10px;
}

.details {
  padding:20px;
}

.sticky-call {
  position:fixed;
  bottom:15px;
  right:15px;
  background:#ff7a00;
  color:white;
  padding:15px 25px;
  text-decoration:none;
  border-radius:50px;
  z-index:999;
}
iframe {
  width:100%;
  height:300px;
  border:none;
}
