/* Contact Section */
body,html {
  background-color: #101826; /* ✅ Keep body separate from sections */
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  width: 100%;
}


#contact {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, #101826, #0D1424);
    color: #fff;
    box-sizing: border-box;
    text-align: center; /* Center the "CONTACT" heading */
    height: 100%;
  }
  
  .section-header {
    margin-bottom: 40px;
    font: 300 60px 'Oswald', sans-serif;
    color: #ffffff;
    text-shadow: 0px 4px 10px rgba(0, 150, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 6px;
  }
  
  /* Wrapper: horizontally center everything, side by side */
  .contact-wrapper {
    display: flex;
    justify-content: center;  /* Centers columns horizontally */
    align-items: flex-start;  /* Top-align both columns */
    max-width: 840px;
    margin: 0 auto;           /* Center the wrapper in the page */
    gap: 40px;                /* Space between the form and contact info */
  }
  
  /* Left Column: Form */
  .form-horizontal {
    width: 100%;
    max-width: 400px;
    font-family: 'Lato', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 15px; /* spacing between inputs */
  }
  
  /* Inputs & Textarea */
  .form-control,
  textarea {
    width: 100%;
    background-color: #000;
    color: #fff;
    border: 1px solid #333;
    padding: 10px;
    font-size: 16px;
    letter-spacing: 1px;
  }
  
  /* Send Button */
  .send-button {
    margin-top: 10px;
    height: 40px;
    width: 105%;
    background-color: #00d2ff;
    border: none;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 2px;
    transition: background 0.2s ease-in-out;
  }
  
  .send-button:hover {
    background-color: #00aaff;
  }
  
  .alt-send-button {
    width: 100%;
    height: 100%;
    transition: all 0.2s ease-in-out;
  }
  .alt-send-button:hover {
    transform: translate3d(0, -29px, 0);
  }
  
  .send-text {
    display: block;
    margin-top: 10px;
    font: 700 12px 'Lato', sans-serif;
    letter-spacing: 2px;
  }
  
  /* Right Column: Direct Contact Info */
  .direct-contact-container {
    width: 100%;
    max-width: 400px;
    text-align: left;  /* Left-align text (optional) */
    padding-left: 30px;
    height: 100%;
  }
  
  .contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .list-item {
    line-height: 4;
    color: #ffffff;
    text-shadow: 0px 4px 10px rgba(0, 150, 255, 0.6);
    margin-left: 10px;
    align-items: center;
  }
  
  .contact-text {
    font: 300 18px 'Lato', sans-serif;
    letter-spacing: 1.9px;
    color: #ffffff;
    text-shadow: 0px 4px 10px rgba(0, 150, 255, 0.6);
    margin-left: 20px;
  }
  
  .contact-text a {
    color: #ffffff;
    text-shadow: 0px 4px 10px rgba(0, 150, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-text a:hover {
    color: #fff;
  }
  
  /* Social Media Icons */
  .social-media-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
  }
  .social-media-list li {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #00d2ff;
    text-shadow: 0px 4px 10px rgba(0, 150, 255, 0.6);
    text-align: center;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
  }
  .social-media-list li a {
    color: #fff;
    font-size: 22px;
    display: inline-block;
    width: 60px;
    height: 60px;
  }
  .social-media-list li:hover {
    background-color: #fff;
  }
  .social-media-list li:hover a {
    color: #000;
  }
  
  hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    margin: 20px 0;
  }
  
  .copyright {
    font: 200 14px 'Oswald', sans-serif;
    color: #555;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 20px;
  }

  #human-check {
    background-color: #000000;
    border: 1px solid #ccc;
    text-shadow: 0px 4px 10px rgba(0, 150, 255, 0.6);
    padding: 8px;
    margin-top: 5px;
    width: 100%;
    border-radius: 5px;
}
  label[for="human-check"] {
    color: #ffffff;
    text-shadow: 0px 4px 10px rgba(0, 150, 255, 0.6);
    font-size: 14px;
}

.confirm-send-btn {
  margin-top: 20px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #101826;
  background-color: #00d2ff;
  text-shadow: 0px 4px 10px rgba(0, 150, 255, 0.6);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 210, 255, 0.2);
}

.confirm-send-btn:hover {
  background-color: #00d2ff;
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(0, 210, 255, 0.5);
  transform: translateY(-2px);
}

.confirm-send-btn:active {
  transform: scale(0.96);
  box-shadow: 0 2px 6px rgba(0, 210, 255, 0.4);
}
  
  /* -----------------------------------
     Responsive Adjustments
  ----------------------------------- */
  
  @media screen and (max-width: 768px) {
    html, body {
      height: 100%;
      margin: 0;
      padding: 0;
    }
    #contact {
      height: 100%;/* Make contact fill the viewport height */
      overflow-y: auto;   /* Enable vertical scrolling if content exceeds viewport */
      box-sizing: border-box;
    }
    .contact-wrapper {
      flex-direction: column;
      align-items: center;
      margin: 0 auto;
    }
    .direct-contact-container {
      margin-top: 40px;
      text-align: center;
      margin: 0 auto;
      max-width: 280px;
      padding-left: 0;
    }
    .form-control,
    textarea {
      width: 280px;
      margin: 0 auto;
    }
    .send-button {
      width: 280px;
      margin: 0 auto;
    }
    .social-media-list {
      justify-content: center;
    }
    .social-media-list li {
      width: 50px;
      height: 50px;
      line-height: 50px;
    }
    .social-media-list li a {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }
    /* Override left margins to ensure centering */
    .list-item {
      margin-left: 0 !important;
    }
    .contact-text {
      margin-left: 15px !important;
    }
  }