*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
  scroll-behavior:smooth;
}

body{
  background:#0d0d0d;
  color:#fff;
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

/* HEADER */

header{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  padding:18px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  backdrop-filter:blur(12px);
  background:rgba(0,0,0,0.45);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img{
    width:100px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px){
    .logo img{
        width: 90px;
    }
}

nav{
  display:flex;
  gap:35px;
}

nav a{
  color:#fff;
  font-size:15px;
  position:relative;
}

nav a::after{
  content:'';
  position:absolute;
  width:0%;
  height:2px;
  left:0;
  bottom:-5px;
  background:#ffcc00;
  transition:.4s;
}

nav a:hover::after{
  width:100%;
}

.nav-btn{
  padding:12px 24px;
  background:#ffcc00;
  color:#111;
  border-radius:40px;
  font-weight:600;
  transition:.4s;
}

.nav-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(255,204,0,0.35);
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  padding:130px 8% 80px;
  background:
  linear-gradient(to right, rgba(0,0,0,0.88), rgba(0,0,0,0.35)),
  url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
}

.hero-text{
  max-width:650px;
}

.tag{
  display:inline-block;
  background:rgba(255,204,0,0.15);
  color:#ffcc00;
  padding:10px 20px;
  border-radius:40px;
  margin-bottom:25px;
  border:1px solid rgba(255,204,0,0.4);
}

.hero h1{
  font-size:72px;
  line-height:1.1;
  margin-bottom:20px;
}

.hero h1 span{
  color:#ffcc00;
}

.hero p{
  font-size:17px;
  color:#d5d5d5;
  line-height:1.8;
  margin-bottom:35px;
}

.hero-btns{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  padding:15px 32px;
  border-radius:50px;
  font-weight:600;
  transition:.4s;
}


.btn-outline{
  border:1px solid rgba(255,255,255,0.2);
  color:#fff;
  background:rgba(255,255,255,0.05);
}

.btn:hover{
  transform:translateY(-4px);
}

/* HERO FORM */

.hero-form{
  width:420px;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:30px;
  padding:40px 30px;
  box-shadow:0 20px 50px rgba(0,0,0,0.4);
}

.hero-form h2{
  font-size:34px;
  margin-bottom:30px;
  color:#ffcc00;
  text-align:center;
}

.input-box{
  margin-bottom:20px;
}

.input-box input,
.input-box select{
  width:100%;
  height:58px;
  border:none;
  outline:none;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:14px;
  padding:0 18px;
  color:#fff;
  font-size:15px;
}

.input-box input::placeholder{
  color:#ddd;
}

.input-box select{
  color:#ddd;
}

.input-box option{
  color:#000;
}

.form-btn{
  width:100%;
  height:58px;
  border:none;
  border-radius:14px;
  background:#ffcc00;
  color:#111;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:.4s;
}

.form-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(255,204,0,0.3);
}

/* STATS */

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-top:50px;
}

.stat-box{
  background:rgba(255,255,255,0.05);
  padding:25px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.08);
}

.stat-box h2{
  color:#ffcc00;
  font-size:38px;
}

.stat-box p{
  margin-top:10px;
  color:#cfcfcf;
}

/* CARS */

.cars{
  padding:100px 8%;
  background:#111;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title span{
  color:#ffcc00;
  letter-spacing:2px;
}

.section-title h2{
  font-size:48px;
  margin-top:10px;
}

.car-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.car-card{
  background:#1a1a1a;
  border-radius:28px;
  overflow:hidden;
  transition:.4s;
  border:1px solid rgba(255,255,255,0.08);
}

.car-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 40px rgba(0,0,0,0.4);
}

.car-img{
  height:240px;
  overflow:hidden;
}

.car-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.car-card:hover img{
  transform:scale(1.08);
}

.car-content{
  padding:25px;
}

.car-content h3{
  font-size:28px;
  margin-bottom:10px;
}

.price{
  color:#ffcc00;
  font-size:22px;
  font-weight:700;
  margin-bottom:15px;
}

.car-content p{
  color:#cfcfcf;
  line-height:1.7;
  margin-bottom:25px;
}

.features{
  display:flex;
  justify-content:space-between;
  margin-bottom:25px;
  color:#ddd;
}

.book-btn{
  width:100%;
  display:inline-block;
  text-align:center;
  padding:14px;
  border-radius:15px;
  background:#ffcc00;
  color:#111;
  font-weight:700;
  transition:.4s;
}

.book-btn:hover{
  transform:scale(1.03);
}

/* CTA */

.cta{
  padding:100px 8%;
  text-align:center;
  background:
  linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
  url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
}

.cta h2{
  font-size:55px;
  margin-bottom:20px;
}

.cta p{
  max-width:700px;
  margin:auto;
  color:#ddd;
  line-height:1.8;
  margin-bottom:35px;
}

/* FOOTER */

footer{
  background:#000;
  padding:30px 8%;
  text-align:center;
}

footer p{
  color:#aaa;
}

/* RESPONSIVE */

@media(max-width:991px){

  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero-form{
    width:100%;
    max-width:500px;
  }

  .hero h1{
    font-size:52px;
  }

  .stats{
    grid-template-columns:1fr;
  }

  nav{
    display:none;
  }
}

@media(max-width:600px){

  .hero{
    padding-top:140px;
  }

  .hero h1{
    font-size:40px;
  }

  .section-title h2{
    font-size:34px;
  }

  .cta h2{
    font-size:36px;
  }

  .hero-form{
    padding:30px 20px;
  }

  .hero-form h2{
    font-size:28px;
  }
}*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
  scroll-behavior:smooth;
}

body{
  background:#0d0d0d;
  color:#fff;
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

/* HEADER */

header{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  padding:18px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  backdrop-filter:blur(12px);
  background:rgba(0,0,0,0.45);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
  font-size:32px;
  font-weight:800;
  color:#ffcc00;
  letter-spacing:2px;
}

nav{
  display:flex;
  gap:35px;
}

nav a{
  color:#fff;
  font-size:16px;
  font-weight:500;
  position:relative;
}

nav a::after{
  content:'';
  position:absolute;
  width:0%;
  height:2px;
  left:0;
  bottom:-5px;
  background:#ffcc00;
  transition:.4s;
}

nav a:hover::after{
  width:100%;
}

.nav-btn{
  padding:12px 24px;
  background:#ffcc00;
  color:#111;
  border-radius:40px;
  font-weight:600;
  transition:.4s;
}

.nav-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(255,204,0,0.35);
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  padding:130px 8% 80px;
  background:
  linear-gradient(to right, rgba(0,0,0,0.88), rgba(0,0,0,0.35)),
  url('r_car.jpeg');

  background-size:cover;
  background-position:center;
}

.hero-text{
  max-width:650px;
}

.tag{
  display:inline-block;
  background:rgba(255,204,0,0.15);
  color:#ffcc00;
  padding:10px 20px;
  border-radius:40px;
  margin-bottom:25px;
  border:1px solid rgba(255,204,0,0.4);
}

.hero h1{
  font-size:72px;
  line-height:1.1;
  margin-bottom:20px;
}

.hero h1 span{
  color:#ffcc00;
}

.hero p{
  font-size:17px;
  color:#d5d5d5;
  line-height:1.8;
  margin-bottom:35px;
}

.hero-btns{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  padding:15px 32px;
  border-radius:50px;
  font-weight:600;
  transition:.4s;
}

.btn-primary{
  background:#ffcc00;
  color:#111;
}

.btn-outline{
  border:1px solid rgba(255,255,255,0.2);
  color:#fff;
  background:rgba(255,255,255,0.05);
}

.btn:hover{
  transform:translateY(-4px);
}

/* HERO FORM */

.hero-form{
  width:420px;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:30px;
  padding:40px 30px;
  box-shadow:0 20px 50px rgba(0,0,0,0.4);
}

.hero-form h2{
  font-size:34px;
  margin-bottom:30px;
  color:#ffcc00;
  text-align:center;
}

.input-box{
  margin-bottom:20px;
}

.input-box input,
.input-box select{
  width:100%;
  height:58px;
  border:none;
  outline:none;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:14px;
  padding:0 18px;
  color:#fff;
  font-size:15px;
}

.input-box input::placeholder{
  color:#ddd;
}

.input-box select{
  color:#ddd;
}

.input-box option{
  color:#000;
}

.form-btn{
  width:100%;
  height:58px;
  border:none;
  border-radius:14px;
  background:#ffcc00;
  color:#111;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:.4s;
}

.form-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(255,204,0,0.3);
}

/* STATS */

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-top:50px;
}

.stat-box{
  background:rgba(255,255,255,0.05);
  padding:25px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.08);
}

.stat-box h2{
  color:#ffcc00;
  font-size:38px;
}

.stat-box p{
  margin-top:10px;
  color:#cfcfcf;
}

/* CARS */

.cars{
  padding:100px 8%;
  background:#111;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title span{
  color:#ffcc00;
  letter-spacing:2px;
}

.section-title h2{
  font-size:48px;
  margin-top:10px;
}

.car-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.car-card{
  background:#1a1a1a;
  border-radius:28px;
  overflow:hidden;
  transition:.4s;
  border:1px solid rgba(255,255,255,0.08);
}

.car-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 40px rgba(0,0,0,0.4);
}

.car-img{
  height:240px;
  overflow:hidden;
}

.car-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.car-card:hover img{
  transform:scale(1.08);
}

.car-content{
  padding:25px;
}

.car-content h3{
  font-size:28px;
  margin-bottom:10px;
}

.price{
  color:#ffcc00;
  font-size:22px;
  font-weight:700;
  margin-bottom:15px;
}

.car-content p{
  color:#cfcfcf;
  line-height:1.7;
  margin-bottom:25px;
}

.features{
  display:flex;
  justify-content:space-between;
  margin-bottom:25px;
  color:#ddd;
}

.book-btn{
  width:100%;
  display:inline-block;
  text-align:center;
  padding:14px;
  border-radius:15px;
  background:#ffcc00;
  color:#111;
  font-weight:700;
  transition:.4s;
}

.book-btn:hover{
  transform:scale(1.03);
}

/* CTA */


.cta{
    padding:110px 8%;
    text-align:center;
    background:
    linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.78)),
    url('showroom-bg.jpg');

    background-size:cover;
    background-position:center;
}

.cta-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(255,204,0,0.12);
    border:1px solid rgba(255,204,0,0.35);
    color:#ffcc00;
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:25px;
}

.cta h2{
    font-size:56px;
    margin-bottom:20px;
    line-height:1.2;
}

.cta p{
    max-width:760px;
    margin:auto;
    color:#d7d7d7;
    line-height:1.9;
    font-size:17px;
}

.showroom-box{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.showroom-item{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    padding:35px 25px;
    border-radius:24px;
    transition:0.4s ease;
}

.showroom-item:hover{
    transform:translateY(-8px);
    border-color:rgba(255,204,0,0.4);
    box-shadow:0 18px 40px rgba(0,0,0,0.35);
}

.showroom-item h3{
    color:#ffcc00;
    margin-bottom:18px;
    font-size:22px;
}

.showroom-item p{
    color:#eee;
    line-height:1.8;
    font-size:15px;
}

.cta .btn{
    margin-top:45px;
}

@media(max-width:768px){

    .cta h2{
        font-size:38px;
    }

    .cta p{
        font-size:15px;
    }

    .showroom-item{
        padding:28px 20px;
    }
}

/* FOOTER */

footer{
  background:#000;
  padding:30px 8%;
  text-align:center;
}

footer p{
  color:#aaa;
}

/* RESPONSIVE */

@media(max-width:991px){

  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero-form{
    width:100%;
    max-width:500px;
  }

  .hero h1{
    font-size:52px;
  }

  .stats{
    grid-template-columns:1fr;
  }

  nav{
    display:none;
  }
}

@media(max-width:600px){

  .hero{
    padding-top:140px;
  }

  .hero h1{
    font-size:40px;
  }

  .section-title h2{
    font-size:34px;
  }

  .cta h2{
    font-size:36px;
  }

  .hero-form{
    padding:30px 20px;
  }

  .hero-form h2{
    font-size:28px;
  }
}



/* HERO */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:130px 8% 80px;
    overflow:hidden;
}

/* SLIDER */

.hero-slider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-2;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s ease;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* OVERLAY */

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        to right,
        rgba(0,0,0,0.82),
        rgba(0,0,0,0.45)
    );
    z-index:-1;
}

/* SLIDER BUTTONS */

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);
    color:#fff;
    font-size:24px;
    cursor:pointer;
    transition:0.4s ease;
    z-index:10;
}

.slider-btn:hover{
    background:#ffcc00;
    color:#111;
}

.prev{
    left:30px;
}

.next{
    right:30px;
}

/* MOBILE */

@media(max-width:768px){

    .hero{
        flex-direction:column;
        text-align:center;
        padding-top:140px;
    }

    .slider-btn{
        width:45px;
        height:45px;
        font-size:20px;
    }

    .prev{
        left:15px;
    }

    .next{
        right:15px;
    }
}


/* FLOATING BUTTONS */

.floating-btns{
  position:fixed;
  right:25px;
  bottom:25px;
  display:flex;
  flex-direction:column;
  gap:15px;
  z-index:9999;
}

.whatsapp-btn,
.call-btn{
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  color:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,0.3);
  transition:.4s;
}

.whatsapp-btn{
  background:#ffcc00;
    box-shadow:0 10px 25px rgba(0,0,0,0.3);

}

.call-btn{
  background:#ffcc00;
  color:#111;
}

.whatsapp-btn:hover,
.call-btn:hover{
  transform:scale(1.12);
}


