/* CONTACT SECTION */

body {
    font-family: "Stack Sans Notch", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
  }

.contact-section {
    position: relative;
    min-height: 100vh;
    background: url('galaxy2.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 100px 8%;
    display: flex;
    align-items: center;
  }
  
  .contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 20, 0.65);
  }
  
  .contact-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: center;
  }
  
  /* LEFT SIDE */
  
  .contact-info {
    flex: 1;
    color: white;
  }
  
  .small-title {
    letter-spacing: 4px;
    color: #a970ff;
    margin-bottom: 20px;
    font-size: 14px;
  }
  
  .contact-info h1 {
    font-size: 5rem;
    line-height: 0.95;
    font-weight: 900;
    margin-bottom: 30px;
    font-family: "Orbitron", sans-serif;
  }
  
  .contact-info h1 span {
    background: linear-gradient(to right, #7f5cff, #45b6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .line {
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, #7f5cff, #45b6ff);
    border-radius: 100px;
    margin-bottom: 30px;
  }
  
  .contact-text {
    max-width: 500px;
    font-size: 1.1rem;
    color: #d6d6d6;
    margin-bottom: 40px;
    line-height: 1.8;
  }
  
  /* FEATURES */
  
  .features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  
  .feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .feature-box i {
    font-size: 22px;
    color: #7f5cff;
  }
  
  .feature-box h4 {
    margin-bottom: 5px;
  }
  
  .feature-box p {
    color: #bfbfbf;
    font-size: 14px;
  }
  
  /* CONTACT DETAILS */
  
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .detail {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
  }
  
  .detail i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #7f5cff;
    border: 1px solid rgba(255,255,255,0.1);
  }
  
  /* FORM */
  
  .contact-form-wrapper {
    flex: 1;
    background: rgba(12, 12, 30, 0.55);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 30px;
    box-shadow:
      0 0 40px rgba(127,92,255,0.2),
      inset 0 0 30px rgba(255,255,255,0.03);
  }
  
  .contact-form-wrapper h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .contact-form-wrapper p {
    color: #bfbfbf;
    margin-bottom: 30px;
  }
  
  /* INPUTS */
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 18px;
    color: white;
    font-size: 16px;
    outline: none;
    transition: 0.3s ease;
  }
  
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #9d9d9d;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #7f5cff;
    box-shadow: 0 0 20px rgba(127,92,255,0.35);
  }
  
  /* BUTTON */
  
  .contact-form button {
    border: none;
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(to right, #7f5cff, #45b6ff);
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 16px;
  }
  
  .contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(127,92,255,0.4);
  }
  
  .contact-form button i {
    margin-right: 10px;
  }
  
  /* MOBILE */
  
  @media (max-width: 992px) {
  
    .contact-container {
      flex-direction: column;
    }
  
    .contact-info h1 {
      font-size: 3rem;
    }
  
    .contact-form-wrapper {
      width: 100%;
    }
  
  }

  /* RECAPTCHA */

.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
    transform: scale(0.95);
  }
  
  .g-recaptcha {
    overflow: hidden;
    border-radius: 14px;
    box-shadow:
      0 0 25px rgba(127,92,255,0.2);
  }


  /* SUCCESS POPUP */

.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(10px);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.4s ease;
  z-index: 9999;
}

.success-popup.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  width: 90%;
  max-width: 420px;

  background: rgba(12,12,30,.85);

  border:
    1px solid rgba(255,255,255,.1);

  padding: 50px;
  border-radius: 30px;

  text-align: center;
  color: white;

  box-shadow:
    0 0 40px rgba(127,92,255,.35);
}

.popup-content i {
  font-size: 70px;
  color: #7f5cff;
  margin-bottom: 20px;
}

.popup-content h2 {
  margin-bottom: 15px;
}

.popup-content p {
  color: #cfcfcf;
  margin-bottom: 30px;
  line-height: 1.7;
}

.popup-content button {
  border: none;
  padding: 14px 30px;
  border-radius: 14px;

  background:
    linear-gradient(to right,
    #7f5cff,
    #45b6ff);

  color: white;
  cursor: pointer;
  font-weight: bold;
}