/* contact.css – Futuristic Contact Page */

.contact-form-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.futuristic-input {
  background-color: rgba(30, 41, 59, 0.9);
  border: 1px solid #334155;
  color: #f8fafc;
  transition: all 0.3s ease;
}

.futuristic-input::placeholder {
  color: #94a3b8;
}

.futuristic-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
  background-color: rgba(40, 52, 75, 0.95);
  outline: none;
}

.contact-form-box .form-label {
  font-weight: 500;
  color: #cbd5e1;
}

/* 🔵 Glow Hover Enhanced */
.contact-form-box .btn-primary {
  background-color: #6366f1;
  border: none;
  transition: all 0.4s ease;
  box-shadow: 0 0 8px rgba(99, 102, 241, 0.4);
}

.contact-form-box .btn-primary:hover {
  background-color: #4f46e5;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.6), 0 0 25px rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
}

.contact-section {
  padding-top: 6rem;
}

