*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Segoe UI, Arial, sans-serif;
}

body{
  background:#f5f5f5;
  color:#333;
  line-height:1.6;
}

/* HEADER */
header{
  background:#000;
  position:sticky;
  top:0;
  z-index:1000;
}
nav{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:center;
  gap:30px;
  padding:15px;
}
nav a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
}
nav a:hover{color:#fbc531;}

/* HERO */
.hero{
  background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
  url("https://images.unsplash.com/photo-1605559424843-9c6e51f7a0ec");
  background-size:cover;
  background-position:center;
  color:#fff;
  text-align:center;
  padding:100px 20px;
}
.hero h1{font-size:42px;margin-bottom:15px;}
.hero p{font-size:18px;margin-bottom:25px;}

.btn{
  background:#fbc531;
  color:#000;
  padding:12px 30px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
}
.btn:hover{background:#e1b12c;}

/* SECTION */
.section{
  max-width:1200px;
  margin:auto;
  padding:70px 20px;
}
.section h2{
  text-align:center;
  margin-bottom:40px;
  font-size:32px;
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}
.card{
  background:#fff;
  padding:25px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 8px 25px rgba(0,0,0,.1);
}

/* CAR IMAGES */
.cars img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:10px;
}
.cars p{
  font-weight:bold;
  margin-top:10px;
}

/* CONTACT */
.contact{
  background:#fff;
  padding:40px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 8px 25px rgba(0,0,0,.1);
}

/* FOOTER */
footer{
  background:#000;
  color:#fff;
  text-align:center;
  padding:15px;
}

/* FLOATING BUTTONS */
.floating-buttons{
  position:fixed;
  bottom:25px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:20px;
  z-index:9999;
}
.floating-buttons a{
  width:65px;
  height:65px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  color:#fff;
  text-decoration:none;
  box-shadow:0 4px 10px rgba(0,0,0,.4);
}
.call-btn{background:#0a7cff;}
.whatsapp-btn{background:#25D366;}
