  /* -------- Layout -------- */
  .contact-section {
    padding: clamp(3rem, 5vw, 6rem) 1rem;
    background: #060a13;
    color: #fff;
    font-family: "Source Sans 3", sans-serif;
  }
  .contact-container {
    max-width: 1320px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
  }
  .left-section {
    display: flex;
    flex-direction: column;
  }
  .contact-form {
    background: rgba(0, 0, 0, 0.4);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(12, 188, 245, 0.12);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
      0 0 40px rgba(12, 188, 245, 0.05);
    position: relative;
  }
  .contact-form::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    height: 4px;
    width: 100%;
    background: #0cbcf5;
    box-shadow: 0 0 20px rgba(12, 188, 245, 0.4);
  }

  /* -------- Typography -------- */
  .main-title {
    font: 800 48px/1 "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-shadow: 0 0 30px rgba(12, 188, 245, 0.2);
    margin: 0 0 20px;
  }
  .title-highlight {
    color: #0cbcf5;
    text-shadow: 0 0 30px rgba(12, 188, 245, 0.4);
  }
  .description {
    font-size: 20px;
    line-height: 1.7;
    margin: 0 0 48px;
    color: #e0e0e0;
  }
  .contact-title,
  .form-title {
    font: 800 32px "Oswald", sans-serif;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(12, 188, 245, 0.3);
    margin: 0 0 24px;
  }
  .contact-title {
    margin-top: 80px;
  }
  .input-label,
  .response-title,
  .checkbox-label {
    font: 600 14px/1.4 "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fafbfc;
  }
  .contact-label {
    font: 600 20px "Oswald", sans-serif;
    text-transform: uppercase;
    margin-bottom: 4px;
    text-shadow: 0 0 20px rgba(12, 188, 245, 0.3);
  }
  .contact-value {
    color: #ccc;
    font-size: 19px;
    text-decoration: none;
    transition: 0.3s;
  }
  .contact-item:hover .contact-value {
    text-decoration: underline;
  }

.contact-form {
  display: flex;        
  flex-direction: column;
  gap: 1.5rem;       
}

.contact-form .checkbox-group {
  gap: 2rem;
}
.input-label {
  display: flex;
  flex-direction: column; /* stacks text then field */
  gap: 0.65rem;           /* vertical space between them */
}

  .contact-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
  }
  .icon-container {
    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    transition: 0.3s;
  }
  .icon-container svg {
    width: 28px;
    height: 28px;
    color: #fff;
    transition: 0.3s;
  }
  .contact-item:hover .icon-container {
    background: #fff;
    box-shadow: 0 0 10px #0cbcf5;
  }
  .contact-item:hover .icon-container svg {
    color: #000;
  }
  .input,
  textarea {
    width: 100%;
    padding: 20px 24px;
    background: #0f1316;
    border: 2px solid rgba(12, 188, 245, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 17px;
    transition: 0.3s;
    font-family: "Source Sans 3", sans-serif;
  }
  .input:focus,
  textarea:focus {
    outline: none;
    border-color: #0cbcf5;
    box-shadow: 0 0 20px rgba(12, 188, 245, 0.1);
  }
  textarea {
    min-height: 100px;
    resize: vertical;
  }
  .checkbox-group {
    display: flex;
    gap: 40px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
  }
  .checkbox-input {
    width: 18px;
    height: 18px;
    accent-color: #0cbcf5;
  }
  .submit-btn {
    display: block;
    width: 100%;
    padding: 20px 48px;
    border: none;
    border-radius: 12px;
    background: #fafbfc;
    color: #060a13;
    font: 800 18px "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 0 30px rgba(12, 188, 245, 0.2);
    cursor: pointer;
    transition: 0.3s;
    
  }
  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(12, 188, 245, 0.4);
    background: #1ac4fa;
  }

  /* -------- Breakpoints -------- */
  @media (max-width: 1199px) {
    .contact-container {
      gap: 64px;
      max-width: 940px;
    }
    .main-title {
      font-size: 36px;
    }
    .contact-title,
    .form-title {
      font-size: 26px;
    }
  }
  @media (max-width: 991px) {
    .contact-container {
      grid-template-columns: 1fr;
      gap: 48px;
      padding-inline: 0;
      max-width: 760px;
    }
    .contact-title {
      margin-top: 40px;
    }
  }
  @media (max-width: 767px) {
    .contact-container {
      padding-inline: 0;
      max-width: 560px;
      gap: 32px;
    }
    .main-title {
      font-size: 32px;
    }
    .contact-title,
    .form-title {
      font-size: 24px;
    }
  }
  @media (max-width: 575px) {
    .contact-container {
      max-width: 360px;
      padding-inline: 0;
    }
    .main-title {
      font-size: 26px;
      margin: 10px 0;
    }
    .description {
      font-size: 14px;
      margin: 0 0 24px;
    }
    .submit-btn {
      padding: 16px;
      font-size: 16px;
      height: 44px;
    }
  }


















