*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'Open Sans', sans-serif;
}
body{
  overflow-x: hidden;
  /* background-color: black; */
}
 .top-container{
  min-height: 100vh;
  width: 100vw;
  background-color: black;

  
}
.main{
  height: 8vh;
  /* border-bottom: 1px solid gray; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5.5vw;
  
}
.header-left, .header-right{
display: flex;
align-items: center;
}
.nav-logo{
  margin-left: 30px;
}
.nav-link{
   font-size: clamp(14px, 1vw, 18px);
  text-decoration: none;
  color: white;
  margin-left: 6vw;
 
}
@media (max-width:990px){
  .nav-link{
    display: none;
  }
}
.nav-logo-profile{
height: 5vh;
margin-right: 0.5vw;
}
.nav-logo-line{
height: 5vh;
margin-right: 0vw;
}
.nav-contact{
    font-size: clamp(14px, 1vw, 18px);
  text-decoration: none;
  color: white;
  margin-right: 3.5vw;
  /* margin-top: 1vh; */
}
@media (max-width:769px){
  .nav-contact{
    display: none;
  }
}

/* .content-main{
  height: 100vh;
  width: 100vw;
  border: 1px solid white;
} */

.content-head{
  color: white;
   font-weight:600;
   font-family: 'Georama', sans-serif;
   /* font-size: 2.8vh;
  height: 13vh; */
  padding: 4vh 0 4vh 6vw;
  margin-bottom: 2rem;
  border-top: 2px solid #333;
  

}
.text{
/* position: relative;
top: 4vh;
left: 6vw; */
font-size: clamp(1.5rem, 2.8vh, 2.5rem);
}

.wrapper{
  width: 100%;
  padding: 0 6vw;
   display: flex;
  flex-direction: column;
  /* gap: 0.8rem; */
  /* border-bottom: 2px solid white; */
}

.row{
  /* height: 40vh;
  width: 75vw; */
  /* border: 1px solid white; */
  /* margin: auto; */
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.column{
  /* height: 40vh;
  width: 22vw; */
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  /* border: 1px solid white; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  margin-bottom: 2rem;
}
.column img{
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
}
.car-name{
  color: white;
  text-align: center;
  font-size: clamp(1.2rem, 1.7rem, 2rem);
   margin: 1rem 0 0.5rem 0;
}
.car-price{
   color: white;
  text-align: center;
   font-size: clamp(0.7rem, 0.8rem, 1rem);
   margin-bottom: 1rem;
}
.row-buttons{
  display: flex;
  gap: 1rem;
  justify-content: center;
  width: 100%;
  margin-top: auto;
 
}
.book{
  color: white;
  background-color: black;
  border: 1px solid white;
  height: 6vh;
  min-height: 40px;
  border-radius: 3rem;
  font-size: clamp(0.8rem, 1rem, 1.1rem);
  padding: 0 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.book:hover{
  background-color: #333; 
}

/* Tablet screens */
@media (max-width: 1024px) {
  .row {
    justify-content: center; /*Center items on tablet */
  }
   .column {
    flex: 0 1 calc(50% - 2rem); /*2 columns on tablet */
  }
}

/* Mobile screens */
@media (max-width: 768px) {
   .main {
    padding: 0 3vw; /*Less padding on mobile */
  }
  .content-head {
    padding-left: 3vw; /*Less padding on mobile */
  }
  
  .wrapper {
    padding: 0 3vw; /*Less padding on mobile */
  }
  
  .column {
    flex: 0 1 100%; /*Full width columns on mobile */
    max-width: 400px; /*not too wide */
  }
  
  .book {
    width: 200px; /*Consistent button width on mobile */
  }
}

.faq-main{
  background-color: black;
  padding: 4rem 0;
  width: 100vw;
  margin-top: 0;
  /* border: 1px solid white; */
}
.faq-container{
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  border-top: 1px solid white;
  /* border: 1px solid white; */
}

.faq-heading{
  color: white;
  font-family: 'Georama', sans-serif;
   font-size: clamp(1.5rem, 3vw, 2rem);
   font-weight: 600;
   padding: 0.5rem;
   text-align: left;
   padding-left: 0;
}

.faq-list{
  display: flex;
  flex-direction: column;
  max-width: 100%;
  margin: 0;
}
.faq-item{
  border-bottom: 1px solid #333;
  /* margin-bottom:2rem ; */
}
.faq-question{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-family: 'Open Sans', sans-serif;
   font-size: clamp(1rem, 1.2vw, 1.2rem);
   font-weight: 600;
   padding: 1rem 0;
   cursor: default;
}
.faq-toggle{
  color: white;
  font-size: 1.8rem;
  font-weight: 300;
  margin-left: 1rem;
  flex-shrink: 0;
  background: none;
  border: none;
}
.footer{
  background-color: #1a1a1a;
  color: white;
  padding: 3rem 0 1rem;
  width: 100vw;
}
.footer-container{
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

/* Top Section */

.footer-top{
  border-bottom: 1px solid #333;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.footer-brand{
  text-align: left;
}
.footer-logo{
  height: 40px;
  margin-bottom: 1rem;
}
.assistance-text{
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 0.5rem;
}
.phone-number{
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-links{
  font-size: 0.9rem;
  color: #ccc;
}

/* Footer Main */

.footer-main{
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column{
  display: flex;
  flex-direction: column;
}
.footer-title{
  font-family: 'Georama', sans-serif;;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}
.footer-links{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a{
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3 ease;
}
.footer-links a:hover{
  color: white;
}

.footer-bottom{
  border-top: 1px solid #333;
  padding: 2rem;
  text-align: center;
}
.footer-legal{
  color: #ccc;
  font-size: 0.8rem;
}
.footer-legal p{
  margin-bottom: 0.5rem;
}
.copyright{
  color: #999;
}

/* Mobile */
@media (max-width: 538px){
  .footer{
    padding: 2rem 0 1rem;
  }

  .footer-main{
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-column{
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
  }

  .footer-column:last-child{
    border-bottom: none;
  }

  .footer-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0;
  }
  .footer-title::after{
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
  }
  .footer-links{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .footer-column.active .footer-links{
    max-height: 500px;
    padding-top: 1rem;
  }

  .footer-column.active .footer-title::after{
    content: '-';
  }
}

 .sticky-actions {
      position: fixed;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      background-color: white;
      border-radius: 50px;
      padding: 8px 16px;
      gap: 10px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
      z-index: 1000;
    }

    .action-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      text-decoration: none;
      color: black;
      font-size: 14px;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .action-btn:hover {
      background-color: #f0f0f0;
    }

    /* Icons */
    .icon {
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .enquire-icon {
      width: 20px;
      height: 20px;
      border: 2px solid black;
      border-radius: 50%;
      position: relative;
    }

    .enquire-icon::before {
      content: '?';
      font-size: 14px;
      font-weight: bold;
    }

    .test-drive-icon {
      width: 20px;
      height: 20px;
      border: 2px solid black;
      border-radius: 50%;
      position: relative;
    }

    .test-drive-icon::before {
      content: '';
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: 2px solid black;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .test-drive-icon::after {
      content: '';
      position: absolute;
      width: 3px;
      height: 5px;
      background-color: black;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 1px;
    }

    .arrow-icon {
      width: 10px;
      height: 10px;
      border-top: 2px solid black;
      border-right: 2px solid black;
      transform: rotate(45deg);
    }

    /* Separator */
    .separator {
      width: 1px;
      height: 24px;
      background-color: #ddd;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .sticky-actions {
        bottom: 20px;
        padding: 8px 12px;
        gap: 8px;
      }

      .action-btn {
        padding: 8px 14px;
        font-size: 13px;
      }

      .action-btn span {
        display: none;
      }

      .separator {
        height: 20px;
      }
    }

    @media (min-width: 769px) {
      .action-btn .icon {
        display: flex;
      }
    }