/* ===========================
   ROOT & RESET
=========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #060b14;
  --bg2: #0a1120;
  --card: #0e1829;
  --card2: #111e33;
  --border: rgba(0, 200, 255, 0.12);
  --border2: rgba(0, 200, 255, 0.22);

  --cyan: #00c8ff;
  --cyan2: #00e5ff;
  --teal: #00ffd5;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --orange: #f97316;

  --text: #e8f4f8;
  --text2: #8faabb;
  --text3: #4d7a8f;

  --grad: linear-gradient(135deg, #00c8ff, #8b5cf6);
  --grad2: linear-gradient(135deg, #00ffd5, #00c8ff);

  --font-head: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===========================
   CURSOR
=========================== */
.cursor {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(0,200,255,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s, width 0.2s, height 0.2s;
}

/* ===========================
   PARTICLES
=========================== */
#particles-canvas {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
  opacity: 0.5;
}

/* ===========================
   LOADER
=========================== */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease;
}
.loader.fade-out { opacity: 0; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-letter {
  font-family: var(--font-head);
  font-size: 5rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: pulse 1s infinite;
}
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(0,200,255,0.15);
  border-radius: 99px; margin: 1rem auto 0; overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 99px;
  animation: load-fill 2s ease forwards;
}
@keyframes load-fill { from { width: 0; } to { width: 100%; } }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.5; } }

/* ===========================
   NAV
=========================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(6,11,20,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 800;
  color: var(--text); margin-right: auto;
}
.logo-g { color: var(--cyan); }
.nav-links { display: flex; gap: 0.3rem; list-style: none; }
.nav-link {
  padding: 0.5rem 1rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; color: var(--text2);
  transition: var(--transition);
}
.nav-link:hover { color: var(--cyan); background: rgba(0,200,255,0.08); }
.nav-link.active { color: var(--cyan); }
.nav-cta {
  background: var(--grad); color: #fff; padding: 0.6rem 1.5rem;
  border-radius: 99px; font-size: 0.9rem; font-weight: 600;
  transition: var(--transition); white-space: nowrap;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,200,255,0.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 99px; transition: var(--transition); display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6,11,20,0.97);
  z-index: 999; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu .mob-link {
  display: block; padding: 1rem 2rem; font-size: 2rem;
  font-family: var(--font-head); font-weight: 700;
  color: var(--text2); transition: var(--transition);
}
.mobile-menu .mob-link:hover { color: var(--cyan); }

/* ===========================
   REVEAL ANIMATIONS
=========================== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.revealed { opacity: 1 !important; transform: none !important; }
.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }
.delay-4 { transition-delay: 0.6s !important; }
.delay-5 { transition-delay: 0.75s !important; }

/* ===========================
   LAYOUT UTILITIES
=========================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
.section { padding: 7rem 0; position: relative; overflow: hidden; }
.section-alt { background: var(--bg2); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,200,255,0.1); border: 1px solid var(--border2);
  color: var(--cyan); padding: 0.4rem 1.2rem; border-radius: 99px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15;
}
.gradient-text {
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ===========================
   BUTTONS
=========================== */
.btn-glow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--grad); color: #fff;
  padding: 0.85rem 2rem; border-radius: 99px;
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); border: none; cursor: pointer;
}
.btn-glow:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,200,255,0.4); }
.btn-glow.full-width { width: 100%; justify-content: center; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1.5px solid var(--border2); color: var(--text);
  padding: 0.85rem 2rem; border-radius: 99px;
  font-weight: 500; font-size: 0.95rem; transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #25d366; color: #fff;
  padding: 0.85rem 2rem; border-radius: 99px;
  font-weight: 600; font-size: 0.95rem; transition: var(--transition);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,0.4); }

/* ===========================
   HERO
=========================== */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 6rem 2rem 3rem; position: relative; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute; border-radius: 50%;
  filter: blur(80px); animation: float 8s ease-in-out infinite;
}
.shape-1 {
  width: 500px; height: 500px;
  background: rgba(0,200,255,0.06);
  top: -100px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: rgba(139,92,246,0.06);
  bottom: 0; left: -100px;
  animation-delay: -3s;
}
.shape-3 {
  width: 300px; height: 300px;
  background: rgba(0,255,213,0.05);
  top: 50%; left: 50%;
  animation-delay: -6s;
}
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-container {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,255,213,0.08); border: 1px solid rgba(0,255,213,0.25);
  color: var(--teal); padding: 0.5rem 1.2rem; border-radius: 99px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem;
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer { 0%,100%{box-shadow:0 0 0 0 rgba(0,255,213,0.15)} 50%{box-shadow:0 0 20px 4px rgba(0,255,213,0.2)} }
.hero-title {
  font-family: var(--font-head); font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800; line-height: 1.05; margin-bottom: 1rem;
}
.hero-roles {
  font-size: 1.3rem; color: var(--text2); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.3rem; flex-wrap: wrap;
}
.role-rotating { color: var(--cyan); font-weight: 600; min-width: 220px; }
.role-cursor { color: var(--cyan); animation: blink 1s infinite; font-weight: 300; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-desc { color: var(--text2); font-size: 1rem; margin-bottom: 2rem; max-width: 520px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex; gap: 2rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: inline-block;
}
.stat-plus { display: inline-block; font-size: 1.5rem; font-weight: 700; color: var(--cyan); vertical-align: top; margin-top: 8px; }
.stat-label { font-size: 0.75rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.1em; }
.stat-divider { width: 1px; background: var(--border); align-self: stretch; }

/* Hero avatar */
.hero-right { display: flex; align-items: center; justify-content: center; }
.hero-avatar-wrapper { position: relative; width: 340px; height: 340px; }
.avatar-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid rgba(0,200,255,0.2);
  animation: spin-ring 12s linear infinite;
}
.ring-1 { animation-duration: 12s; }
.ring-2 { inset: 20px; animation-duration: 18s; animation-direction: reverse; border-color: rgba(139,92,246,0.2); }
.ring-3 { inset: 40px; animation-duration: 24s; border-color: rgba(0,255,213,0.15); }
@keyframes spin-ring { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.hero-avatar {
  position: absolute; inset: 60px;
  border-radius: 50%; background: var(--card2);
  border: 2px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(0,200,255,0.15), inset 0 0 40px rgba(0,200,255,0.05);
}
.hero-avatar span {
  font-family: var(--font-head); font-size: 6rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.floating-badge {
  position: absolute; width: 50px; height: 50px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; border: 1.5px solid var(--border2);
  background: var(--card); box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.b1 { top: 10px; left: 50%; transform: translateX(-50%); color: #dd0031; animation: bob 3s ease-in-out infinite; }
.b2 { right: 0; top: 50%; transform: translateY(-50%); color: #ff2d20; animation: bob 3s ease-in-out infinite 0.5s; }
.b3 { bottom: 10px; left: 50%; transform: translateX(-50%); color: #4285f4; animation: bob 3s ease-in-out infinite 1s; }
.b4 { left: 0; top: 50%; transform: translateY(-50%); color: #8892be; animation: bob 3s ease-in-out infinite 1.5s; }
@keyframes bob { 0%,100%{transform:translateY(-50%) scale(1)} 50%{transform:translateY(calc(-50% - 8px)) scale(1.1)} }
.b1, .b3 { animation: bob-h 3s ease-in-out infinite; }
@keyframes bob-h { 0%,100%{transform:translateX(-50%) scale(1)} 50%{transform:translateX(calc(-50% - 8px)) scale(1.1)} }
.b3 { animation-delay: 1s; }

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text3); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--text3), transparent); animation: scroll-anim 1.5s ease-in-out infinite; }
@keyframes scroll-anim { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ===========================
   ABOUT
=========================== */
.about-grid { display: grid; grid-template-columns: 360px 1fr; gap: 4rem; align-items: start; }
.about-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; position: sticky; top: 100px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.about-avatar-card {
  text-align: center; margin-bottom: 1.5rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--border);
}
.about-avatar-inner {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--card2); border: 2px solid var(--border2);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 3rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 1rem; box-shadow: 0 0 30px rgba(0,200,255,0.2);
  border: 2px solid rgba(0,200,255,0.3);
}
.about-location { font-size: 0.85rem; color: var(--text2); display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.about-location i { color: var(--cyan); }
.about-quick-info { display: flex; flex-direction: column; gap: 0.8rem; }
.qi-item {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.9rem; color: var(--text2); padding: 0.6rem;
  border-radius: var(--radius-sm); transition: var(--transition);
}
.qi-item:hover { background: rgba(0,200,255,0.06); color: var(--text); }
.qi-item i { color: var(--cyan); width: 18px; text-align: center; }
.about-content p { color: var(--text2); margin-bottom: 1rem; }
.sub-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.sub-title i { color: var(--cyan); }
.education-timeline { margin-top: 2.5rem; }
.edu-item {
  display: flex; gap: 1.2rem; margin-bottom: 1.5rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--border);
}
.edu-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.edu-year {
  background: rgba(0,200,255,0.1); color: var(--cyan);
  border: 1px solid var(--border2); border-radius: var(--radius-sm);
  padding: 0.3rem 0.8rem; font-size: 0.8rem; font-weight: 700;
  height: fit-content; white-space: nowrap;
}
.edu-degree { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.2rem; }
.edu-inst { font-size: 0.82rem; color: var(--text3); display: flex; align-items: center; gap: 0.4rem; }

/* ===========================
   SKILLS
=========================== */
.skills-categories { display: flex; flex-direction: column; gap: 2.5rem; }
.skill-category {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}
.cat-title {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  color: var(--cyan); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.skills-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.skill-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--card2); border: 1px solid var(--border);
  padding: 0.6rem 1.2rem; border-radius: 99px;
  font-size: 0.9rem; font-weight: 500; color: var(--text2);
  transition: var(--transition); cursor: default;
}
.skill-pill:hover { border-color: var(--cyan); color: var(--text); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,200,255,0.15); }
.skill-icon { font-size: 1rem; }
.angular { color: #dd0031; }
.html { color: #e34f26; }
.css { color: #1572b6; }
.js { color: #f7df1e; }
.bootstrap { color: #7952b3; }
.ajax { color: var(--cyan); }
.laravel { color: #ff2d20; }
.php { color: #8892be; }
.ci { color: #ee4323; }
.wp { color: #21759b; }
.firebase { color: #ffca28; }
.db { color: var(--teal); }
.google { color: #4285f4; }
.gis { color: var(--teal); }
.ps { color: #001d34; background: linear-gradient(135deg,#001d34,#0a4378); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.git { color: #f05032; }
.seo { color: var(--purple); }
.rwd { color: var(--pink); }

/* ===========================
   EXPERIENCE TIMELINE
=========================== */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--cyan), var(--purple), transparent);
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-dot {
  position: absolute; left: -2.9rem; top: 1.2rem;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--card); border: 2px solid var(--cyan);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 0.9rem;
  box-shadow: 0 0 16px rgba(0,200,255,0.3);
  transition: var(--transition);
}
.timeline-item:hover .timeline-dot { background: var(--cyan); color: var(--bg); }
.timeline-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  transition: var(--transition);
}
.timeline-card:hover { border-color: var(--border2); box-shadow: 0 8px 40px rgba(0,0,0,0.3); transform: translateX(4px); }
.tl-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; gap: 1rem; }
.tl-period { font-size: 0.8rem; color: var(--cyan); font-weight: 600; display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.4rem; }
.tl-role { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.3rem; }
.tl-company { font-size: 0.85rem; color: var(--text2); display: flex; align-items: center; gap: 0.4rem; }
.tl-badge {
  padding: 0.3rem 0.9rem; border-radius: 99px;
  font-size: 0.75rem; font-weight: 700; white-space: nowrap;
}
.tl-badge.active { background: rgba(0,255,213,0.1); color: var(--teal); border: 1px solid rgba(0,255,213,0.3); }
.tl-badge.past { background: rgba(139,92,246,0.1); color: var(--purple); border: 1px solid rgba(139,92,246,0.3); }
.tl-desc { color: var(--text2); font-size: 0.9rem; margin-bottom: 1rem; }
.tl-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tl-tags span {
  background: var(--card2); border: 1px solid var(--border);
  padding: 0.25rem 0.8rem; border-radius: 99px;
  font-size: 0.78rem; color: var(--text3);
}

/* ===========================
   PROJECTS
=========================== */
.project-filter { display: flex; gap: 0.6rem; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.5rem 1.4rem; border-radius: 99px;
  background: var(--card); border: 1px solid var(--border);
  color: var(--text2); font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: rgba(0,200,255,0.1); border-color: var(--cyan); color: var(--cyan); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.project-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  transition: var(--transition); position: relative; overflow: hidden;
}
.project-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,200,255,0.03), rgba(139,92,246,0.03));
  opacity: 0; transition: var(--transition);
}
.project-card:hover { border-color: var(--border2); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.project-card:hover::before { opacity: 1; }
.project-card.hidden { display: none; }
.pc-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.pc-icon.govt { background: rgba(0,200,255,0.1); color: var(--cyan); border: 1px solid rgba(0,200,255,0.2); }
.pc-icon.transport { background: rgba(249,115,22,0.1); color: var(--orange); border: 1px solid rgba(249,115,22,0.2); }
.pc-tag { font-size: 0.75rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.pc-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.pc-desc { font-size: 0.88rem; color: var(--text2); margin-bottom: 1rem; }
.pc-tech { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.2rem; }
.pc-tech span {
  background: var(--card2); border: 1px solid var(--border);
  padding: 0.2rem 0.7rem; border-radius: 99px;
  font-size: 0.75rem; color: var(--text3);
}
.pc-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--cyan); font-size: 0.85rem; font-weight: 600;
  transition: var(--transition);
}
.pc-link:hover { gap: 0.8rem; }

/* ===========================
   CONTACT
=========================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-intro { color: var(--text2); margin-bottom: 2rem; font-size: 0.95rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.2rem;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--border2); }
.cc-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,200,255,0.1); color: var(--cyan);
  border: 1px solid rgba(0,200,255,0.2); font-size: 1rem;
}
.cc-icon.phone { background: rgba(0,255,213,0.1); color: var(--teal); border-color: rgba(0,255,213,0.2); }
.cc-icon.email { background: rgba(139,92,246,0.1); color: var(--purple); border-color: rgba(139,92,246,0.2); }
.cc-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); margin-bottom: 0.3rem; }
.cc-value { font-size: 0.88rem; color: var(--text2); line-height: 1.8; }
.cc-value a { color: var(--text); transition: color 0.2s; }
.cc-value a:hover { color: var(--cyan); }
.contact-action-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Contact Form */
.contact-form-wrapper {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
}
.form-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 1.8rem; display: flex; align-items: center; gap: 0.5rem; }
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-size: 0.82rem; color: var(--text2); font-weight: 500; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.form-group label i { color: var(--cyan); font-size: 0.8rem; }
.form-group input, .form-group textarea {
  width: 100%; background: var(--card2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.8rem 1rem;
  color: var(--text); font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: var(--transition); resize: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,200,255,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text3); }

.form-msg {
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500;
  margin-bottom: 1.2rem;
}
.form-msg.success { background: rgba(0,255,213,0.1); border: 1px solid rgba(0,255,213,0.3); color: var(--teal); }
.form-msg.error   { background: rgba(236,72,153,0.1); border: 1px solid rgba(236,72,153,0.3); color: var(--pink); }

/* ===========================
   FOOTER
=========================== */
footer {
  background: #040810;
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; color: var(--text3); }
.footer-links-col h4, .footer-contact-col h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; margin-bottom: 1.2rem; color: var(--text); }
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links-col a { font-size: 0.88rem; color: var(--text3); transition: color 0.2s; display: flex; align-items: center; gap: 0.5rem; }
.footer-links-col a i { font-size: 0.6rem; color: var(--cyan); }
.footer-links-col a:hover { color: var(--cyan); }
.footer-contact-col p { font-size: 0.88rem; color: var(--text3); margin-bottom: 0.7rem; display: flex; align-items: flex-start; gap: 0.6rem; }
.footer-contact-col i { color: var(--cyan); margin-top: 3px; flex-shrink: 0; }
.footer-contact-col a { color: var(--text3); transition: color 0.2s; }
.footer-contact-col a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 1.5rem 2rem;
  text-align: center; font-size: 0.82rem; color: var(--text3);
}
.footer-bottom i { color: var(--pink); }

/* ===========================
   BACK TO TOP
=========================== */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; opacity: 0; transform: translateY(20px);
  transition: var(--transition); box-shadow: 0 4px 20px rgba(0,200,255,0.4);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-card { position: static; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .cursor, .cursor-follower { display: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 1.5rem; }
  .timeline-dot { left: -2.4rem; width: 36px; height: 36px; }
}
