/* contactUs */
#contactUs {
    padding: 50px 30px;
    background-image: linear-gradient(to top, antiquewhite, white);
}
    .formContainer{
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      width: 100%;
      text-align: center;
    }

    .formContainer h2 {
      text-align: center;
      color: rgb(68, 58, 44);
      font-weight: 600;
      font-size: clamp(30px, 3vw, 32px);
      margin-bottom: 50px;
      font-family: "Fredoka", sans-serif;
    }

    #whatsAppGroupLink {
    color: rgb(68, 58, 44);
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 500;
    font-size: clamp(16px, 3vw, 20px);
    font-family: "Fredoka", sans-serif;
    width: fit-content;
    background-image: linear-gradient(to top, rgb(255, 221, 177), rgb(230, 199, 160));
}

#whatsAppGroupLink:hover {
  background-image: linear-gradient(to top, rgb(230, 199, 160), rgb(255, 210, 151));
}

    .formContainer h3 {
      margin-top: 0;
      margin-bottom: 30px;
      font-family: "Fredoka", sans-serif;
      font-weight: 500;
      font-size: clamp(18px, 3vw, 24px);
      color: rgb(68, 58, 44);
    }

    #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;
     }
   }

  .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

    input, textarea  {
      padding: 10px 20px;
      border: 2px solid antiquewhite;
      text-align: center;
      border-radius: 50px;
      font-size: 1rem;
      font-family: 'Assistant', sans-serif;
      font-weight: 400;
      font-size: clamp(16px, 3vw, 16px);
      transition: border-color 0.3s;
      /* width: clamp(300px, 30%, 400px); */
      width: 400px;
      box-sizing: border-box;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      background: none;
    }
    textarea {
      margin-bottom: 0;
    }

    input, textarea:focus {
      border-color: antiquewhite;
      outline: none;
    }

    @media (max-width: 768px) {
    input, textarea {
         width: 100%;
     }
   }

  #leadForm .privacy-row{
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
  }

  #leadForm .privacy-row input[type="checkbox"]{
    width: 18px;
    height: 18px;
    margin-top: 4px;
    flex-shrink: 0;
    accent-color: #cb0104;
  }

  #leadForm .privacy-row label{
    line-height: 1.5;
    cursor: pointer;
    font-family: "Assistant", sans-serif;
    font-weight: 400;
    color: rgb(84, 84, 84);
  }

  #leadForm .privacy-row a{
  text-decoration: underline;
    color: #cb0104;
  }

  #leadForm a:visited{
    color: #cb0104;
  }

    #sendBtn {
      padding: 15px 20px;
      margin-bottom: 1.00rem;
      background-image: linear-gradient(to top, rgb(255, 221, 177), rgb(255, 221, 177));
      color: rgb(92, 92, 92);
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s;
      width: 20%;
      font-family: "Fredoka", sans-serif;
      font-weight: 600;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    @media (max-width: 1300px) {
    #sendBtn {
         width: 70%;
         margin-top: 20px;
     }
   }

    #sendBtn:hover {
      background-image: linear-gradient(to top, rgb(255, 210, 151), rgb(255, 210, 151));
    }

    #responseMessage {
      color: rgb(92, 92, 92);
      font-family: 'Assistant', sans-serif;
      font-weight: 400;
      font-size: 20px;
    }