:root {
  --bg: #0b0f14;
  --card: rgba(255,255,255,0.04);
  --text: #e6e6e6;
  --muted: #9aa4b2;
  --neon: #00ffaa;
  --border: rgba(255,255,255,0.08);
}

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

body {
  font-family: 'JetBrains Mono', monospace;
  background: radial-gradient(circle at top, #111827, #020617);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 40px 24px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.logo {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--neon);
  text-shadow: 0 0 10px rgba(0,255,170,0.4);
}

nav a {
  margin-left: 24px;
  color: var(--muted);
  transition: color 0.3s;
}

nav a:hover {
  color: var(--neon);
}

.contact-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.contact-hero h1 span {
  color: var(--neon);
  text-shadow: 0 0 12px rgba(0,255,170,0.6);
}

.contact-hero p {
  color: var(--muted);
  margin-bottom: 32px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(12px);
  text-align: center;
  transition: all 0.3s ease;
}

.card svg {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  fill: var(--neon);
  filter: drop-shadow(0 0 6px var(--neon));
  transition: transform 0.3s, filter 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0,255,170,0.3);
}

.card:hover svg {
  transform: scale(1.2);
  filter: drop-shadow(0 0 15px var(--neon));
}

.card img.card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 6px var(--neon));
  transition: transform 0.3s, filter 0.3s;
}

.card:hover img.card-icon {
  transform: scale(1.2);
  filter: drop-shadow(0 0 15px var(--neon));
}

.card h3 {
  color: var(--neon);
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-form h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.contact-form form {
  display: grid;
  gap: 16px;
  max-width: 600px;
}

.contact-form input,
.contact-form textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  color: var(--text);
  font-family: inherit;
  resize: none;
}

.contact-form button {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--neon);
  background: transparent;
  color: var(--neon);
  cursor: pointer;
  box-shadow: 0 0 18px rgba(0,255,170,0.25);
  transition: all 0.3s ease;
}

.contact-form button:hover {
  box-shadow: 0 0 30px rgba(0,255,170,0.45);
}

.note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

footer {
  margin-top: 80px;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}
