.contact-page {
  padding: 0 20px;
  min-height: 85vh;
  margin-top: 30px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-intro h1,
.contact-form-section h2,
.contact-info h2 {
  font-size: 2.5rem;
  color: #ff00ff;
  text-align: center;
  margin-bottom: 15px;
  text-shadow:
    0 0 10px #ff00ff,
    0 0 20px #ff00ff,
    0 0 30px #ff00ff;
}

.contact-intro p,
.contact-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #0ff;
  text-shadow: 0 0 6px #0ff;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto 60px auto;
}

.contact-form label {
  font-size: 1rem;
  color: #ff00ff;
  text-shadow: 0 0 8px #ff00ff;
  user-select: none;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  background-color: #1a1a40;
  border: 2px solid #ff00ff;
  border-radius: 8px;
  color: #0ff;
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  padding: 12px 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0ff;
  box-shadow: 0 0 10px #0ff;
}

.contact-form button {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  padding: 15px 25px;
  background: linear-gradient(45deg, #ff00ff, #0ff);
  border: none;
  border-radius: 12px;
  color: #000;
  cursor: pointer;
  font-weight: 700;
  text-shadow:
    0 0 3px #fff;
  box-shadow:
    0 0 10px #ff00ff,
    0 0 20px #0ff;
  transition: background 0.4s ease, color 0.4s ease;
  user-select: none;
}

.contact-form button:hover {
  background: linear-gradient(45deg, #0ff, #ff00ff);
  color: #fff;
  box-shadow:
    0 0 20px #0ff,
    0 0 30px #ff00ff;
}

#thank-you-message {
  text-align: center;
  font-size: 1.1rem;
  color: #0ff;
  margin-top: 30px;

}

@media (max-width: 600px) {
  .contact-intro h1,
  .contact-form-section h2,
  .contact-info h2 {
    font-size: 1.8rem;
  }

  .contact-form {
    max-width: 100%;
  }
}
