*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'Open Sans', sans-serif;
}
body{
  overflow-x: hidden;
  background-color: black;
}
.main{
  height: 8vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5.5vw;
  border-bottom: 1px solid #333;
}
.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;
}
@media (max-width:769px){
  .nav-contact{
    display: none;
  }
}

.content-wrapper{
  display: flex;
  gap: 60px;
}

/* Left Sidebar */
.sidebar {
  flex: 0 0 250px;
}

.flow{
  width: 300px;
  padding-right: 70px;
}
.back-button {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 20px;
  margin-top: 10px;
  margin-left: 40px;
}

.back-arrow{
  width: 15px;
  height: 15px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}

/* Form Area */
.form-area{
  flex: 1;
  min-height: 100vh;
  padding-bottom: 100px;
}

.location-header{
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 25px;
  color: white;
}

.location-tabs{
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
  margin-right: 30px;
}

.tab{
  flex: 1;
  max-width: 280px;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background-color: #2a2a2a;
  color: white;
  transition: all 0.3s;
}

.tab.active{
  background-color: white;
  color: black;
}

.section-header{
  margin-bottom: 30px;
}

.section-title{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
}

.form-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-right: 30px;
  padding-bottom: 30px;
}

 @media (max-width: 1024px) {
      .form-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

     @media (max-width: 768px) {
      .form-grid {
        grid-template-columns: 1fr;
      }

       .content-wrapper{
      flex-direction: column;
    }
    .sidebar{
      flex: none;
    }
    }

    .form-group{
      display: flex;
      flex-direction: column;
    }

    .form-group label{
      font-size: 16px;
      margin-bottom: 8px;
      color: white;
    }

    .form-group input{
      padding: 15px;
      background-color: transparent;
      border: 1px solid #444;
      border-radius: 5px;
      color: white;
      font-size: 16px;
    }

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

    .form-group input::placeholder{
      color: transparent;
    }
   
    .pincode-group{
      position: relative;
    }

    .location-icon{
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translate(-50%);
      color: #666;
      cursor: pointer;
    }

    .checkbox-group{
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 50px;
      margin-top: 10px;
      margin-right: 30px;
    }

    .checkbox-group input[type="checkbox"]{
      width: 20px;
      height: 20px;
      margin-top: 3px;
      cursor: pointer;
      flex-shrink: 0;
    }

    .checkbox-group label{
      font-size: 14px;
      line-height: 1.5;
      color: white;
    }

    .checkbox-group a{
      color: white;
      text-decoration: underline;
    }

    .submit-button{
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 40%;
      max-width: 40%;
      padding: 16px 40px;
      background: linear-gradient(135deg, #7a7a7a 0%, #5a5a5a 100%);
      color: white;
      border: none;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      margin: 0;
      margin-right: 30px;
      margin-bottom: 80px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .submit-button.enabled{
      background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
      color: black;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
    }

    .submit-button.enabled:hover{
      background: linear-gradient(135deg, #f0f0f0 0%, #d0d0d0 100%);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    }

    .arrow-right{
      width: 12px;
      height: 12px;
      border-top: 2px solid currentColor;
      border-right: 2px solid currentColor;
      transform: rotate(45deg);
      margin-left: 5px;
    }

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