/* Contact Form Styles */
.contact-section {
  min-height: calc(100vh - 200px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(18, 22, 56, 0.9), rgba(8, 12, 36, 0.9));
  position: relative;
  overflow: hidden;
}

.contact-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/sparks.svg') repeat;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.contact-container h1 {
  margin-bottom: 3rem;
}

.contact-form-container {
  background: rgba(27, 32, 87, 0.5);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
  animation: glowBorder 3s infinite alternate;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 5px;
  background: rgba(8, 12, 36, 0.7);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--text-light);
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.submit-button {
  position: relative;
  display: inline-block;
  background: linear-gradient(45deg, #121638, #1d2466);
  color: var(--primary-color);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: linear-gradient(45deg, #1d2466, #121638);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.ripple-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Animation */
@keyframes glowBorder {
  0% {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 215, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3), 0 0 25px rgba(255, 215, 0, 0.3);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-form-container {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .contact-container h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}