/* ----------------------
   BODY STYLE
------------------------- */

body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box; 
  overflow-x: hidden;
  overflow-y: hidden;
}



/* ----------------------
   FORM
------------------------- */

.contactSection {
    background-color: #fff;
    padding: 100px 20px 50px 20px;
    margin-top: 70px;
  }

  .contactContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
  }

  .contactForm {
    flex: 1;
    max-width: 600px;
    background-color: #f9fcff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .contactTitle {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.0;
  }

  .contactDescription {
    font-size: 16px;
    color: #777;
    margin-bottom: 25px;
    line-height: 1.1;
    padding-right: 20px;
  }

  .contactFormField {
    margin-bottom: 10px;
  }

  .contactLabel {
    font-size: 14px;
    color: #444;
    display: block;
    margin-bottom: 10px;
  }

  .contactInput, .contactTextarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
  }

  .contactInput::placeholder, 
  .contactTextarea::placeholder{
      font-size: 14px;
  }

  .contactTextarea {
    height: 100px;
    resize: vertical;
  }

  .contactSubmitButton {
    background: linear-gradient(135deg, #ff7511, #fe0909);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 17px;
    border-radius: 30px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
  }

  .contactSubmitButton:hover {
    background: linear-gradient(135deg, #fe0909, #ff7511);
  }

  .contactImage {
    flex: 1;
    max-width: 600px;
    text-align: center;
  }

  .contactImageContent {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .phoneWrapper {
    display: flex;
    gap: 10px;
  }

  .countryCodeSelect {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    flex-basis: 30%;
  }

  .phoneInput {
    flex-basis: 70%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
  }

  #responseMessage {
    margin-top: 20px;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
  }

  #responseMessage.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
  }

  #responseMessage.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
  }

  @media (max-width: 768px) {
    .contactContainer {
      flex-direction: column;
    }

    .contactImage {
      margin-top: 30px;
    }

    .contactTitle{
      font-size: 25px;
    }
    .contactDescription{
      font-size: 14px;
    }
  }