*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Roboto',sans-serif;
}

a{
  text-decoration:none;
  color:inherit;
}
.container{
  max-width:1200px;
  margin:auto;
  padding:40px 20px;
}
.btn{
    display:inline-block;
    background:#dbaf0e;
    color:#fff;
    padding:12px 25px;
    border-radius:6px;
    border: none;
    font-weight:700;
    transition:0.3s;
}

.btn:hover{background:#e65c00;}

/* NAVIGATION */
/* NAVBAR */

nav{
  position: sticky;
  top: 0;
  width: 100%;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 80px;
}
 

/* LOGO */

.logo img{
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  width: 200px;
  margin-left: -40px;
}

/* NAV LINKS */

.nav-links{
  display: flex;
  gap: 30px;
}

.nav-links a{
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover color */

.nav-links a:hover{
  color: white;
}

/* Premium underline effect */

.nav-links a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #c9a45c;
  transition: width 0.3s ease;
}

.nav-links a:hover::after{
  width: 100%;
}

/* BURGER MENU STYLING */
.burger {
  display: none; /* hide on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 1100;
}

.burger div {
  height: 3px;
  background: #f5f5f5; /* off-white for premium look */
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* show on mobile */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
}

/* Burger active animation */
.burger.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active div:nth-child(2) {
  opacity: 0;
}

.burger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* NAV LINKS SLIDE IN */
.nav-links {
  display: flex;
  gap: 30px;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 80vh;
    width: 250px;
    background: #1a1a1a; /* premium dark background */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 15px 0;
    color: #f5f5f5;
  }
}

/* HERO */
header{
background-image: url(Images/mian.jfif.png);
background-size:cover;
background-position:center;
color:#fff;
text-align:center;
padding:140px 20px;
}
@media screen and (min-width:768px){ 
  .hero-content{
   text-align: left;
   margin-left: 70px;
  }
  
}

.hero-content h1{
  margin-top: -30px;
  
}




.hero-buttons .btn{
  margin-right: 20px;
}

.btn-outline{
background:transparent;
border:2px solid #fff;
}

.fast-response{
margin-top:15px;
font-size:0.95rem;
opacity:0.9;
}

header h1{
  color: #dbaf0e;
    font-size:3rem;
    margin-bottom:20px;
}
header p{
    font-size:1.2rem;
    margin-bottom:25px;
}



/* SECTION TITLES */
.section-title{
text-align:center;
font-size:2rem;
margin-bottom:40px;
color:#004080;
}

/* CAR GRID */
.cars{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.car-card{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
position: relative;
}

.badge{
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff0000;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 4px;
    font-weight: 700;
}

.car-card:hover{
transform:translateY(-5px);
}

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

.car-card-content{
padding:20px;
}

/* INFO SECTIONS */
.info-section{
background:#fff;
padding:60px 20px;
}

.info-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.testimonial-card h4 {
  font-size: 15px;
  font-weight: 600;
}

.stars {
  color: gold;
  font-size: 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.why-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
}

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

.why-content {
  padding: 20px;
  text-align: center;
}

.why-content i {
  font-size: 22px;
  color: #25D366;
  margin-bottom: 10px;
}

.why-content h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.why-content p {
  font-size: 14px;
  color: #555;
}

/*Financing*/
.financing-intro {
  text-align: center;
  max-width: 700px;
  margin: 10px auto 30px;
  color: #555;
}

.finance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.finance-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.finance-card:hover {
  transform: translateY(-5px);
}

.finance-card i {
  font-size: 24px;
  color: #25D366;
  margin-bottom: 10px;
}

.finance-card h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

.finance-card p {
  font-size: 14px;
  color: #555;
}

.finance-cta {
  text-align: center;
  margin-top: 30px;
}

/*About*/
.about-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.about-text p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.about-video {
  width: 100%;
  max-width: 500px; /* controls desktop size */
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
}

.about-video video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .about-video video {
    height: 220px;
  }
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #25D366;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1; /* image on top for mobile */
  }
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 30px auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-answer p {
  padding: 10px 0;
  color: #555;
  font-size: 14px;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* FOOTER */
.footer {
  background: #111;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: #fff;
}

.logo2 img{
  width: 200px;
  margin-top: -70px;
  margin-left: -40px;
}

/* WhatsApp button */
.footer-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: 0.3s;
}


.footer-whatsapp:hover {
  background: #1ebe5d;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

/* SCROLL ANIMATION */
.hidden{
opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;
}

.show{
opacity:1;
transform:translateY(0);
}

/* MOBILE */
@media(max-width:768px){

.nav-links{
position:absolute;
right:0;
top:60px;
background:#000;
flex-direction:column;
width:200px;
padding:20px;
display:none;
}

.nav-links.active{
display:flex;
}

.burger{
display:flex;
}

header h1{font-size:2rem;}
}


/* PREMIUM TRANSPARENT FLOATING CTA */
.mobile-cta {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 9999;
}

/* Buttons */
.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 12px 22px;
  border-radius: 35px;
  
  /* Transparent background with subtle blur */
  background: rgba(26, 26, 26, 0.6); 
  backdrop-filter: blur(8px);

  color: #f5f5f5;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

/* Hover effect */
.mobile-cta a:hover {
  background: rgba(26, 26, 26, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

/* Optional: gold accent for "Book Test Drive" */
.mobile-cta a:last-child {
  border: none
 
}

.hero-slider {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Dark overlay for readability */
.slider-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
}

.slider-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.slider-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.slider-content p {
  max-width: 600px;
  margin: auto;
  margin-bottom: 25px;
  font-size: 16px;
}

/* BRAND SECTION */
.brand-section {
  padding: 70px 20px;
  background: #ffffff;
  text-align: center;
}

.brand-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
  color: #111;
}

/* Button Container */
.brand-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

/* Brand Buttons */
.brand-buttons button {
  background: #f5f5f5;
  border: none;
  padding: 20px 30px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo Images */
.brand-buttons button img {
  height: 45px;
  width: auto;
  object-fit: cover;
 
}

/* Hover Effect */
.brand-buttons button:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  background: #111;
}

.brand-buttons button:hover img {
  filter: brightness(1) invert(1);
}

/* Active State (Add with JS) */
.brand-buttons button.active {
  background: #111;
}

.brand-buttons button.active img {
  filter: brightness(0) invert(1);
}

/* All Button Special Styling */
.brand-buttons button:last-child {
  font-weight: 600;
  background: #222;
  color: #fff;
}

.brand-buttons button:last-child:hover {
  background: #000;
}

/* Responsive */
@media (max-width: 600px) {
  .brand-buttons {
    gap: 15px;
  }

  .brand-buttons button {
    padding: 15px 20px;
    min-width: 100px;
  }

  .brand-buttons button img {
    height: 35px;
  }
}
.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 0;
}

.car-card {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
}

.car-card img {
  width: 100%;
  border-radius: 8px;
}

.book-btn {
  margin-top: 15px;
  padding: 12px 20px;
  width: 100%;
  background: linear-gradient(135deg, #000, #000);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.book-btn:hover {
  background: linear-gradient(135deg, #002d5a, #004080);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 64, 128, 0.4);
}

.book-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 99999; /* VERY HIGH */
}

.modal-content {
  background: #fff;
  width: 100%;
  max-width: 600px;
  max-height: 90vh; /* Prevent overflow */
  overflow-y: auto; /* Scroll inside modal */
  border-radius: 15px;
  padding: 30px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 25px;
  cursor: pointer;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

.modal-hero {
  position: relative;
}

.modal-hero img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.price-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #111;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
}

.modal-details h2 {
  margin-bottom: 5px;
}

.tagline {
  color: #666;
  margin-bottom: 20px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.spec-grid div {
  background: #f5f5f5;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.spec-grid strong {
  font-size: 13px;
  color: #555;
}

.spec-grid span {
  font-weight: 600;
  margin-top: 4px;
}

.urgency-box {
  background: #ffe9e9;
  color: #cc0000;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.luxury-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #000, #333);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.contact-section {
  padding: 50px 20px;
  background: #f5f5f5;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.contact-section form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-section input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

#formMessage {
  margin-top: 15px;
  font-weight: 600;
}

.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  z-index: 999;
  transition: all 0.3s ease;
}

/* Hover */
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* Pulse effect */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: pulse 1.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Icon */
.whatsapp-btn img {
  width: 20px;
  height: 20px;
}

/* Hover */
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-item i {
  color: #25D366; /* WhatsApp green works, or pick a brand color */
  min-width: 25px;
  margin-top: 5px;
}

.info-item h3 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
}

.info-item p {
  margin: 0;
  color: #555;
  font-size: 14px;
}

/*view cars button*/
.view-more-btn {
  margin: 30px auto;
  display: block;
  padding: 12px 25px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.3s ease;
}

.view-more-btn:hover {
  background: #444;
}

/* Modal Hero */
.modal-hero {
  position: relative;
  width: 100%;
  max-width: 800px; /* adjust based on modal size */
  margin: auto;
  overflow: hidden;
}

.modal-hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Image Navigation Buttons */
.img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5); /* semi-transparent */
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 2rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  z-index: 10;
  user-select: none;
}

.img-nav:hover {
  background: rgba(0,0,0,0.7);
  transform: translateY(-50%) scale(1.1);
}

#prev-img {
  left: 10px;
}

#next-img {
  right: 10px;
}

/* Optional: make them disappear on small screens but leave swipe enabled */
@media (max-width: 600px) {
  .img-nav {
    padding: 10px 14px;
    font-size: 1.8rem;
  }
}

.how-it-works {
  padding: 60px 20px;
  background: #f9fafb;
  text-align: center;
}

.how-it-works h2 {
  font-size: 30px;
  margin-bottom: 40px;
  color: #111827;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.step {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.step h3 {
  margin-bottom: 10px;
  color: #2563eb;
  font-size: 18px;
}

.step p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.upload-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #000000;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s ease;
}

.upload-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}