*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'Open Sans', sans-serif;
}
body{
  overflow-x: hidden;
  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;
  }
}

.enquire-section{
  min-height: 92vh;
  padding: 3rem 0;
  background-color: black;
  color: white;
}

.enquire-container{
  max-width: 60%;
  width: 60%;
  margin: 0;
  margin-left: 5.5vw;
}

.form-heading{
  margin-bottom: 3rem;
  text-align: left;
}

.form-heading h2{
  font-family: 'Georama', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.form-heading p{
  font-size: 0.9rem;
}

 /*Layout Style */

 .enquire-form{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
 }

 .form-columns{
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 3rem;
 max-width: 100%;
 }

 .form-column{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
 }

 /* Group Style */
 .form-group{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
 }

 .form-group h3{
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
 }

 .form-group.full-width{
  grid-column: 1 / -1;
 }

 /* Input Style */
 .form-group input, .form-group select, .form-group textarea{
  padding: 0.75rem;
  background-color: black;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: 1rem;
  color: white;
  transition: border-color 0.3s ease;
 }

 .form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #666;
}

.form-group textarea{
  resize: vertical;
  min-height: 100px;
  font-family: 'Open Sans', sans-serif;
}

.form-group select{
  appearance: none;
   background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23ffffff' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
   background-repeat: no-repeat;
   background-position: right 0.75rem center; 
   background-size: 0.65rem;
    
}

/* Consent Section */
.consent-section{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checkbox-group{
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"]{
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: white;
}

.checkbox-group label{
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.4;
  cursor: pointer;
}

.marketing-consent{
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.marketing-consent p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 0.5rem;
}

/* Submit */

.form-submit{
  display: flex;
  justify-content: flex-start;
  margin-top: 2rem;
}

.submit-btn{
  background-color: white;
  color: black;
  border: none;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.submit-btn:hover{
  background-color: #f0f0f0;
}
/*For Tablet*/
@media (max-width: 768px) {
  .enquire-container {
    width: 100%;      /*Full width on tablet - no blank space */
    max-width: 100%;  /*Full width on tablet */
    margin-left: 0;   /*Remove left margin */
    padding: 0 5vw;   /*Add padding instead of margin */
  }
  
  .form-heading h1 {
    font-size: 2rem;
  }
  
  .form-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-column {
    gap: 1rem;
  }
  
  .submit-btn {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
  }
  
}
/*For Mobile*/
@media (max-width: 480px) {
  .enquire-section {
    padding: 2rem 0;
  }
  
  .enquire-container {
    width: 100%;      /* CHANGED: Full width on mobile - no blank space */
    max-width: 100%;  /* CHANGED: Full width on mobile */
    padding: 0 4vw;   /* CHANGED: Consistent padding */
  }
  
  .form-heading h1 {
    font-size: 1.75rem;
  }
  
  .form-heading p {
    font-size: 1rem;
  }
  
  .submit-btn {
    width: 100%;
    min-width: auto;
  }
  
  .main {
    padding: 0 3vw;
  }
}

.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: '-';
  }
}