/* 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;
     }
   }

    input, textarea  {
      padding: 15px 20px;
      margin-bottom: 1.00rem;
      border:none;
      text-align: center;
      border-radius: 50px;
      font-size: 1rem;
      font-family: 'Assistant', sans-serif;
      font-weight: 400;
      font-size: clamp(16px, 3vw, 18px);
      transition: border-color 0.3s;
      width: clamp(200px, 30%, 400px);
      box-sizing: border-box;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    textarea {
      margin-bottom: 0;
    }

    input, textarea:focus {
      border-color: #007bff;
      outline: none;
    }

    @media (max-width: 1300px) {
    input, textarea {
         width: 80%;
     }
   }

    #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;
    }