/* ============================================
   SUDARSHAN PANI — CYBERPUNK PORTFOLIO
   style.css
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Share+Tech+Mono&family=Rajdhani:wght@300;400;600;700&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --bg: #030712;
  --bg2: #070e1a;
  --bg3: #0a1628;
  --neon-cyan: #00f5ff;
  --neon-pink: #ff0090;
  --neon-yellow: #ffe600;
  --neon-green: #00ff88;
  --neon-purple: #bf00ff;
  --text: #e0e8f0;
  --text-dim: #6b7fa3;
  --border: rgba(0, 245, 255, 0.15);
  --glow-cyan: 0 0 10px #00f5ff, 0 0 30px rgba(0,245,255,0.4);
  --glow-pink: 0 0 10px #ff0090, 0 0 30px rgba(255,0,144,0.4);
  --glow-yellow: 0 0 10px #ffe600, 0 0 30px rgba(255,230,0,0.4);
  --glow-green: 0 0 10px #00ff88, 0 0 30px rgba(0,255,136,0.4);
  --font-main: 'Rajdhani', sans-serif;
  --font-display: 'Orbitron', monospace;
  --font-mono: 'Share Tech Mono', monospace;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }

/* ---- UTILITY ---- */
.neon-cyan  { color: var(--neon-cyan); }
.neon-pink  { color: var(--neon-pink); }
.neon-yellow{ color: var(--neon-yellow); }
.neon-green { color: var(--neon-green); }
.share-tech { font-family: var(--font-mono); }

/* ---- CUSTOM CURSOR ---- */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--neon-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  box-shadow: var(--glow-cyan);
  transition: transform 0.05s, background 0.2s;
  mix-blend-mode: screen;
}
.cursor-trail {
  position: fixed; top: 0; left: 0;
  width: 30px; height: 30px;
  border: 1px solid var(--neon-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  opacity: 0.4;
  transition: transform 0.12s ease, opacity 0.3s;
}

/* ---- SCANLINES ---- */
.scanlines {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  z-index: 9990;
}

/* ---- NOISE ---- */
.noise {
  position: fixed; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9989;
  opacity: 0.03;
  animation: noiseAnim 0.3s steps(2) infinite;
}
@keyframes noiseAnim {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-2%, 2%); }
  50%  { transform: translate(2%, -2%); }
  75%  { transform: translate(-1%, 1%); }
  100% { transform: translate(0,0); }
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: rgba(3,7,18,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: padding 0.3s;
}
.navbar.scrolled {
  padding: 10px 48px;
  background: rgba(3,7,18,0.97);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  letter-spacing: 4px;
}
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 2px;
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
}
.nav-link:hover {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--neon-cyan);
  transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }
.nav-status {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--neon-green);
}
.status-dot {
  width: 8px; height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--neon-green); }
  50% { opacity: 0.4; box-shadow: none; }
}

/* ---- GLITCH EFFECT ---- */
.glitch {
  position: relative;
  display: inline-block;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
}
.glitch::before {
  color: var(--neon-pink);
  animation: glitch1 3.5s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}
.glitch::after {
  color: var(--neon-cyan);
  animation: glitch2 3.5s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}
@keyframes glitch1 {
  0%,90%,100% { transform: translate(0); opacity: 0; }
  92% { transform: translate(-4px, 2px); opacity: 1; }
  94% { transform: translate(3px, -1px); opacity: 1; }
  96% { transform: translate(-2px, 1px); opacity: 1; }
  98% { transform: translate(0); opacity: 0; }
}
@keyframes glitch2 {
  0%,88%,100% { transform: translate(0); opacity: 0; }
  90% { transform: translate(4px, -2px); opacity: 1; }
  93% { transform: translate(-3px, 1px); opacity: 1; }
  95% { transform: translate(2px, -1px); opacity: 1; }
  97% { transform: translate(0); opacity: 0; }
}

/* ---- CURSOR BLINK ---- */
.cursor-blink {
  animation: blink 0.8s step-end infinite;
  color: var(--neon-cyan);
}
@keyframes blink { 50% { opacity: 0; } }

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  from { background-position: 0 0; }
  to   { background-position: 0 60px; }
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  font-size: 0.75rem;
  color: var(--neon-green);
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-shadow: var(--glow-green);
  animation: fadeUp 1s 0.2s ease both;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 40px rgba(0,245,255,0.3);
  animation: fadeUp 1s 0.4s ease both;
}
.hero-lastname {
  display: block;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}
.hero-title-wrap {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.5vw, 1.4rem);
  color: var(--neon-pink);
  letter-spacing: 4px;
  margin: 20px 0 16px;
  text-shadow: var(--glow-pink);
  animation: fadeUp 1s 0.6s ease both;
  min-height: 2rem;
}
.hero-location {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 2px;
  margin-bottom: 40px;
  animation: fadeUp 1s 0.8s ease both;
}
.hero-btns {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s 1s ease both;
}
.btn {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 14px 32px;
  border: none; cursor: none;
  transition: all 0.3s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-primary {
  background: var(--neon-cyan);
  color: var(--bg);
  box-shadow: var(--glow-cyan);
}
.btn-primary:hover {
  background: var(--neon-pink);
  box-shadow: var(--glow-pink);
  transform: translateY(-3px) scale(1.04);
}
.btn-secondary {
  background: transparent;
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  box-shadow: inset 0 0 16px rgba(0,245,255,0.1);
}
.btn-secondary:hover {
  background: rgba(0,245,255,0.1);
  box-shadow: var(--glow-cyan);
  transform: translateY(-3px);
}
.full-width { width: 100%; clip-path: none; }

/* HERO TERMINAL */
.hero-terminal {
  position: relative; z-index: 2;
  margin-top: 60px;
  width: min(520px, 90vw);
  border: 1px solid rgba(0,245,255,0.3);
  border-radius: 6px;
  overflow: hidden;
  animation: fadeUp 1s 1.2s ease both;
  box-shadow: 0 0 30px rgba(0,245,255,0.1);
}
.terminal-bar {
  background: #0d1b2e;
  padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(0,245,255,0.2);
}
.t-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.t-dot.red    { background: #ff5f57; }
.t-dot.yellow { background: #febc2e; }
.t-dot.green  { background: #28c840; }
.terminal-title { font-size: 0.72rem; color: var(--text-dim); margin-left: 8px; }
.terminal-body {
  background: rgba(0,0,0,0.6);
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.t-line { margin-bottom: 6px; color: var(--text); }
.t-out  { color: var(--text-dim); padding-left: 16px; }
.t-prompt { color: var(--neon-cyan); margin-right: 8px; }

.scroll-hint {
  position: absolute;
  bottom: 30px;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 3px;
  animation: floatY 2s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

/* ============================================
   SECTIONS (SHARED)
============================================ */
.section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 60px;
}
.section-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 4px;
  color: #fff;
}
.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,245,255,0.4), transparent);
}

/* ============================================
   ABOUT
============================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start;
}
.about-para {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.9;
}
.about-stats {
  display: flex; gap: 20px; flex-wrap: wrap; margin-top: 40px;
}
.stat-box {
  border: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
  background: var(--bg2);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(0,245,255,0.15);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 2px;
  display: block;
  margin-top: 4px;
}
.about-card {
  position: sticky; top: 100px;
}
.card-inner {
  border: 1px solid rgba(0,245,255,0.25);
  background: var(--bg2);
  padding: 40px 32px;
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(0,245,255,0.05);
  text-align: center;
}
.avatar-wrap {
  position: relative;
  width: 120px; height: 120px;
  margin: 0 auto 32px;
}
.avatar-ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: spin 6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.avatar-core {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--bg3), #1a0530);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(0,245,255,0.2);
}
.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.card-info { text-align: left; }
.info-row {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; gap: 12px;
}
.info-key { min-width: 52px; font-weight: 700; }

/* ============================================
   SKILLS
============================================ */
.skills-section { max-width: 1200px; }
.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.skill-category {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 32px 28px;
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.skill-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(0,245,255,0.08);
}
.cat-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 3px;
  margin-bottom: 24px;
  color: var(--text);
}
.skill-bars { display: flex; flex-direction: column; gap: 16px; }
.skill-item {
  display: grid;
  grid-template-columns: 90px 1fr 36px;
  align-items: center;
  gap: 12px;
}
.skill-name {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
}
.bar-wrap {
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  border-radius: 3px;
  transition: width 1.5s ease;
  box-shadow: 0 0 8px rgba(0,245,255,0.6);
}
.bar-fill.animated { width: var(--w); }
.skill-pct {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--neon-cyan);
  text-align: right;
}
.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 6px 12px;
  border: 1px solid rgba(0,245,255,0.3);
  color: var(--neon-cyan);
  background: rgba(0,245,255,0.05);
  clip-path: polygon(6px 0%, 100% 0%, calc(100%-6px) 100%, 0% 100%);
  transition: all 0.2s;
  letter-spacing: 1px;
}
.tag:hover {
  background: rgba(0,245,255,0.15);
  box-shadow: 0 0 10px rgba(0,245,255,0.3);
}
.domain-list { display: flex; flex-direction: column; gap: 10px; }
.domain-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}
.domain-item:hover { color: var(--text); }
.domain-icon { color: var(--neon-yellow); font-size: 0.9rem; }

/* ============================================
   PROJECTS
============================================ */
.projects-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
}
.projects-grid::-webkit-scrollbar { height: 7px; }
.projects-grid::-webkit-scrollbar-thumb {
  background: rgba(0,245,255,0.22);
  border-radius: 999px;
}
.project-card {
  flex: 0 0 min(100%, 360px);
  min-width: 300px;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 24px 22px;
  border-radius: 4px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  overflow: hidden;
  scroll-snap-align: start;
}
.project-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.project-card:hover::before { transform: scaleX(1); }
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,245,255,0.06);
  border-color: rgba(0,245,255,0.3);
}
.project-card.featured {
  border-color: rgba(255,230,0,0.3);
  box-shadow: 0 0 30px rgba(255,230,0,0.05);
}
.project-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 2px;
  padding: 4px 10px;
  border: 1px solid currentColor;
  margin-bottom: 20px;
  animation: glow-pulse 2s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.project-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
}
.project-icon { font-size: 2.2rem; }
.project-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
}
.project-sub {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 1px;
  margin-top: 2px;
}
.project-desc {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  line-height: 1.8;
}
.project-tech { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tech-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 3px 10px;
  background: rgba(191,0,255,0.1);
  border: 1px solid rgba(191,0,255,0.3);
  color: #d98fff;
  letter-spacing: 1px;
  border-radius: 2px;
}
.project-highlights {
  margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.highlight {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  display: flex; gap: 8px;
}
.project-footer { display: flex; gap: 12px; flex-wrap: wrap; }
.proj-btn {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 2px;
  padding: 8px 16px;
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  background: transparent;
  transition: all 0.2s;
  cursor: none;
}
.proj-btn:hover {
  background: var(--neon-cyan);
  color: var(--bg);
  box-shadow: var(--glow-cyan);
}

/* ============================================
   ACHIEVEMENTS
============================================ */
.achievements-list { display: flex; flex-direction: column; gap: 24px; }
.achievement-item {
  display: flex; align-items: center; gap: 28px;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 28px 32px;
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.achievement-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-pink));
}
.achievement-item:hover {
  transform: translateX(8px);
  box-shadow: 0 0 30px rgba(0,245,255,0.08);
}
.ach-icon { font-size: 2.4rem; flex-shrink: 0; }
.ach-content { flex: 1; }
.ach-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.ach-desc {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.ach-badge {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 8px 16px;
  border: 2px solid currentColor;
  flex-shrink: 0;
  text-align: center;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

/* ============================================
   CONTACT
============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-msg {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 40px;
  color: var(--text);
}
.contact-links { display: flex; flex-direction: column; gap: 16px; }
.contact-link {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-dim);
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--bg2);
  border-radius: 3px;
  transition: all 0.3s;
  cursor: none;
}
.contact-link:hover {
  color: var(--text);
  border-color: rgba(0,245,255,0.3);
  transform: translateX(8px);
  background: rgba(0,245,255,0.04);
}
.link-icon {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  width: 28px;
  text-align: center;
}
.form-terminal-bar {
  background: #0d1b2e;
  padding: 10px 16px;
  font-size: 0.75rem;
  color: var(--neon-cyan);
  letter-spacing: 2px;
  border: 1px solid rgba(0,245,255,0.25);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}
.contact-form {
  border: 1px solid rgba(0,245,255,0.25);
  padding: 28px;
  background: var(--bg2);
  border-radius: 0 0 4px 4px;
  display: flex; flex-direction: column; gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.7rem;
  color: var(--neon-cyan);
  letter-spacing: 2px;
}
.form-input {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(0,245,255,0.2);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 12px 16px;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input::placeholder { color: var(--text-dim); }
.form-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0,245,255,0.15);
}
.form-textarea { min-height: 120px; resize: vertical; }

/* ============================================
   FOOTER
============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  text-align: center;
}
.footer-text {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 2px;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .about-grid  { grid-template-columns: 1fr; }
  .about-card  { position: static; }
}
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .section { padding: 80px 20px; }
  .skills-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 12px; }
  .footer { padding: 20px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .achievement-item { flex-direction: column; text-align: center; }
}