:root {
  --bg: #090c28;
  --bg2: #1a1442;
  --accent: #9b7bff;
  --accent2: #b97bff;
  --muted: #cbbaff;
  font-family: 'Inter', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  color: #fff;
  min-height: 100vh;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 36px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  font-weight: 800;
  letter-spacing: 1px;
  color: white;
  font-size: 1.2rem;
}

.nav nav a {
  margin-left: 18px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.nav nav a.active {
  color: var(--accent2);
}

/* CONTACT SECTION */
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 3rem 1.5rem;
  text-align: center;
}

.contact-card {
  background: linear-gradient(145deg, rgba(80, 40, 150, 0.6), rgba(30, 10, 70, 0.7));
  border: 1px solid rgba(200, 150, 255, 0.3);
  box-shadow: 0 0 40px rgba(150, 100, 255, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  padding: 2.5rem 3rem;
  max-width: 600px;
  width: 100%;
  text-align: left;
  animation: glowPulse 3s ease-in-out infinite alternate;
}

.contact-card h1 {
  font-size: 1.8rem;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(190, 130, 255, 0.6);
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* FORM STYLES */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: var(--accent2);
  box-shadow: 0 0 15px rgba(180, 120, 255, 0.5);
}

textarea {
  resize: none;
  height: 100px;
}

button {
  background: linear-gradient(90deg, #7a3cff, #b27cff);
  border: none;
  padding: 0.9rem 1.5rem;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 0 25px rgba(180, 120, 255, 0.5);
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(200, 150, 255, 0.7);
}

/* CONTACT INFO */
.contact-info {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-info a {
  color: var(--accent2);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 1.5rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 3rem;
}

/* Glow Animation */
@keyframes glowPulse {
  0% { box-shadow: 0 0 25px rgba(160, 120, 255, 0.25); }
  100% { box-shadow: 0 0 50px rgba(190, 140, 255, 0.55); }
}

/* Responsive */
@media (max-width: 640px) {
  .contact-card {
    padding: 2rem;
  }
}
