/* ── MOBILE FIRST ── */
.contact-main {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  z-index: 1;
  position: relative;
}

.contact-content h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5em;
  color: white;
  font-weight: 400;
  margin-bottom: 10px;
}

.contact-content p {
  font-family: "Montserrat", sans-serif;
  color: white;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.contact-content p a {
  color: white;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.social-icons img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-family: "Orbitron", sans-serif;
  color: white;
  font-size: 1em;
  font-weight: 400;
  display: block;
  margin-bottom: 8px;
}

.required {
  font-weight: 400;
  font-size: 0.8em;
  font-family: "Montserrat", sans-serif;
  color: white;
}

.name-fields {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}

.name-fields input {
  flex: 1;
  width: auto;
  min-width: 0;
}

.contact-image {
  display: none;
}

input,
textarea {
  width: 100%;
  background: rgba(200, 200, 220, 0.3);
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9em;
  outline: none;
  box-sizing: border-box;
}

textarea {
  border-radius: 12px;
  resize: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

button[type="submit"] {
  background: #cc44cc;
  color: white;
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 12px 40px;
  font-size: 1em;
  cursor: pointer;
}

button[type="submit"]:hover {
  background: #aa22aa;
}


/* ── DESKTOP ── */
@media (min-width: 768px) {
  .contact-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px;
    gap: 40px;
  }

  .contact-content {
    flex: 1;
    max-width: 55%;
  }

  .contact-content h1 {
    font-size: 4em;
  }

  .name-fields {
    flex-direction: row;
    gap: 20px;
  }

  .contact-image {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
  }

  #orb-canvas {
    width: 450px;
    height: 450px;
    display: block;
  }
}