/* contactUs */
#contactUs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 30px;
    font-family: 'Heebo', sans-serif;
    background-image: linear-gradient(to top, #0d1f32, #07111c);
    background-color: #07111c;
}
    .formContainer{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 60%;
      border-radius: 20px;
      padding: 20px 0;
      text-align: center;
      box-shadow: 0 4px 8px rgba(255, 255, 255, 0.4);
      background: transparent;
    }

    @media (max-width: 1300px) {
    .formContainer {
        width: 100%;
     }
   }

    .formContainer h2 {
      text-align: center;
      color: rgb(192, 192, 192);
      font-weight: 800;
      font-size: clamp(20px, 2.4vw, 28px);
    }

    #leadForm {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      text-align: center;
      gap: 20px;
      width: 100%;
    }

    @media (max-width: 1300px) {
    #leadForm {
        gap: 10px;
     }
   }

    input, textarea  {
      padding: 15px 15px;
      margin-bottom: 5px;
      border: 1px solid #4a5765;
      text-align: center;
      border-radius: 10px;
      color: rgb(192, 192, 192);
      font-size: 1rem;
      font-family: "Assistant", sans-serif;
      font-weight: 400;
      font-size: clamp(16px, 3vw, 16px);
      transition: border-color 0.3s;
      width: clamp(200px, 30%, 350px);
      box-sizing: border-box;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      background-color: transparent;
    }
    textarea {
      margin-bottom: 0;
    }

    input, textarea:focus {
      outline: none;
    }

    @media (max-width: 1300px) {
    input, textarea {
         width: 80%;
     }
   }

#leadForm .privacy-row{
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

#leadForm .privacy-row input[type="checkbox"]{
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #01cb4b;
}

#leadForm .privacy-row label{
  line-height: 1.5;
  cursor: pointer;
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: white;
}

#leadForm .privacy-row a{
  text-decoration: underline;
  color: rgb(192, 192, 192);
}

#leadForm a:visited{
  color: #07111c;
}

    #sendBtn {
      padding: 15px 20px;
      /* margin-bottom: 1.00rem; */
        background: linear-gradient(
    135deg,
    #6b4a0a,
    #c9a23f,
    #f5e3a2,
    #c9a23f,
    #6b4a0a
  );
      color: #07111c;
      border: none;
      border-radius: 10px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s;
      width: 30%;
      font-family: "Assistant", sans-serif;
      font-weight: 700;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    @media (max-width: 1300px) {
    #sendBtn {
         width: 70%;
         margin-top: 20px;
     }
   }

    #sendBtn:hover {
  background: linear-gradient(
    135deg,
    #7a550f,
    #d6b24c,
    #fff0c6,
    #d6b24c,
    #7a550f
  );    }

    #responseMessage {
      color: rgb(92, 92, 92);
      font-family: 'Assistant', sans-serif;
      font-weight: 400;
      font-size: 20px;
    }