/* ========================================
   SYNAPSE — Contact Page Specific Styles
   ======================================== */

/* Contact Hero */
.contact-hero {
  position: relative;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 40%, rgba(107, 33, 168, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(0, 240, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Terminal Container */
.terminal-container {
  position: relative;
  overflow: hidden;
}

.terminal-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.03), transparent 70%);
  pointer-events: none;
}

.terminal-header {
  position: relative;
  z-index: 2;
}

/* Terminal Form */
.terminal-form input,
.terminal-form textarea,
.terminal-form select {
  transition: all 0.3s var(--transition-smooth);
}

.terminal-form input:hover,
.terminal-form textarea:hover,
.terminal-form select:hover {
  border-color: rgba(0, 240, 255, 0.3);
}

.terminal-form input:focus,
.terminal-form textarea:focus,
.terminal-form select:focus {
  border-color: var(--neon-accent);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.terminal-form option {
  background: var(--deep-space);
  color: var(--text-primary);
}

/* Channel Cards */
.channel-card {
  position: relative;
  overflow: hidden;
}

.channel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transition: left 0.6s var(--transition-smooth);
}

.channel-card:hover::before {
  left: 100%;
}

/* Form Response Animation */
#form-response {
  position: relative;
}

#form-response::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--neon-accent), var(--nebula-purple));
}

/* Responsive */
@media (max-width: 768px) {
  .terminal-body {
    padding: 1.5rem !important;
    min-height: auto !important;
  }
  
  .terminal-form button {
    width: 100%;
  }
}
