*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

:root{
  --black: #111;
  --white: #fff;
  --red: #d90429;
  --gray: #f4f4f4;
}

body{
  color: var(--black);
  line-height: 1.6;
}

.container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title{
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* HEADER */
header{
  background: var(--black);
  color: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo{ color: var(--red); }
nav a{
  color: var(--white);
  text-decoration: none;
  margin: 0 10px;
}
.btn-call{
  background: var(--red);
  padding: 8px 15px;
  border-radius: 5px;
  color: rgb(255, 255, 255);
}

.btn a{
    text-decoration: none;
     color: rgb(2, 2, 2);

}

.btn i{
    color: #25D366;
}
 

/* HERO */
.hero{
  background: url('../img/backgroundcar.png') center/cover no-repeat; /* ADD YOUR PIC HERE */
  height: 90vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  background-color: #222;
  border: 2px solid red;
}
.hero-content{ width: 100%; }
.hero h2{ font-size: 3rem; margin-bottom: 10px; }
.hero p{ font-size: 1.2rem; margin-bottom: 20px; }


.btn{
  background: var(--red);
  color: var(--white);
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  margin: 5px;
  display: inline-block;
 

}
.btn-outline{
  background: transparent;
  border: 2px solid var(--white);
}

/* INVENTORY */
.car-slider{
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    scrollbar-color: var(--black);
    scrollbar-width: thick;
}

.inventory{ padding: 4rem 0; background: var(--gray); 
}

.car-grid{
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.car-card{
  background: var(--white);
  width: 100%;;
  min-height: 500px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  scroll-snap-align: start;
  object-fit: cover;
  object-position: center;

}
.car-card img{ /* ADD YOUR PIC HERE */
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 2px solid red;
   border-radius: 10px;
   object-position: center;
   flex-shrink: 0;
}


.car-info{ padding: 15px;
      border: 2px solid red;
      border-radius: 10px;
}


.price{ color: var(--red); font-weight: bold; font-size: 1.2rem; }



.btn-small{
  background: var(--black);
  color: var(--white);
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
}

/* WHY US */
.why-us{ padding: 4rem 0; 
     border: 2px solid red; 
}


.features{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  text-align: center;
}
.feature{ padding: 20px; }

/* ABOUT */

.about{ padding: 4rem 0; background: var(--gray); 
  border: 2px solid red;
}

.about-wrap{
  display: flex;
  gap: 30px;
  align-items: center;
  border: 2px solid red;
  padding: 10px;
}
.about-img{
  flex: 1;
  height: 300px;
   background: url('../img/showroom.png') center/cover no-repeat;/* ADD YOUR PIC HERE */
}
.about-text{ flex: 1; }



/* TESTIMONIALS */
.testimonials{ padding: 4rem 0; 
  border: 2px solid red;}
.testi-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  
}
.testi{
  background: var(--gray);
  padding: 20px;
  border-radius: 10px;
}

/* CONTACT */
.contact{ padding: 4rem 0; background: var(--gray); 
  border: 2px solid red;}


.contact-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.contact-form input,.contact-form textarea{
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-info i{
color: red;
}

.contact-info p{
text-decoration: none;
}

.map-container{
    width: 100%;
    height: 100%;
    border: none;
}
.btn-whatsapp{
  background: #25D366;
  color: white;
  padding: 12px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
}

.btn-whatsapp i{
    color: white;
}

/* FOOTER */
footer{
  background: var(--black);
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
    border: 2px solid red;
}
.footer-wrap{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
footer a{ color: var(--white); text-decoration: none; }
.copyright{ border-top: 1px solid #333; padding-top: 1rem; }

/* STICKY WHATSAPP */
.sticky-whatsapp{
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: none;
}

.Followlinks{
 text-decoration: none;
  
}


@media(max-width: 800px){
 .nav{ flex-direction: column; }
 .about-wrap,.contact-wrap{ grid-template-columns: 1fr; flex-direction: column; }
 .hero h2{ font-size: 2rem; }
 .sticky-whatsapp{ display: block; }

  
}

