   .contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
  max-width: 1100px;  /* flexible upper bound */
  width: 100%;        /* takes full available width */
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(10, 13, 23, 0.05);
  backdrop-filter: blur(190px);
  border-radius: 20px;
  margin: 0 auto;
  height: auto;       /* let content decide height */
}


    .contact-wrapper {
  margin: 0 auto; /* centers it horizontally */
}

    /* Left form */
    .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  /* min-width: 280px; */
  padding: 40px;
}

    .form-heading h2 {
      font-family: 'Mansfield', serif;
      font-size: 30px;
      font-weight: 600;
      background: linear-gradient(90deg, #FFFFFF 0%, rgba(255,255,255,0) 50%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .form-heading p {
      font-size: 16px;
      opacity: 0.8;
    }

    .form-group {
      display: flex;
      gap: 14px;
    }

    input, textarea {
      flex: 1;
      padding: 12px 14px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 5px;
      color: white;
      font-size: 14px;
    }

    textarea {
      height: 100px;
      resize: none;
    }

    .submit-btn {
      background: #E3F919;
      color: #000;
      font-weight: 500;
      border: none;
      border-radius: 5px;
      padding: 12px;
      cursor: pointer;
      transition: 0.2s;
    }
    .submit-btn:hover {
      background: #c5dc15;
    }

    /* Right card */
    .contact-info {
  position: relative;
  flex: 1;
  /* min-width: 280px; */
  background: linear-gradient(180deg, #202020 0%, rgba(32,32,32,0.1) 100%);
  border-radius: 40px;
  padding: 40px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.contact-info h3 {
  font-family: 'Mansfield', serif;
  font-size: 24px;
  margin-bottom: 20px;
}

    .contact-info p {
      font-size: 18px;
      margin: 15px 0;
    }
    
    .contact-info {
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}


.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #181818;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.icon-circle img {
  width: 18px;  /* adjust based on your icons */
  height: auto;
  filter: brightness(0) invert(1); /* makes icons white if they're black */
}


@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form, .contact-info {
    width: 100%;
    padding: 20px;
  }

  .form-group {
    flex-direction: column;
    gap: 10px;
  }

  /* Center align contact info on mobile */
  .contact-info {
    text-align: center;
  }

  .contact-item {
    justify-content: center; /* centers icon + text */
  }
}

@media (max-width: 480px) {
  .form-heading h2 {
    font-size: 24px;
  }
  .form-heading p {
    font-size: 14px;
  }
  input, textarea {
    font-size: 13px;
  }
  .contact-info h3 {
    font-size: 20px;
  }
  .contact-info p {
    font-size: 15px;
  }
}