/* ═══════════════════════════════════════════════════════════
   VINOD AI SEO ASSISTANT — PREMIUM DARK FUTURISTIC STYLES
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --neon-cyan: #00F5FF;
  --neon-purple: #BF5AF2;
  --neon-pink: #FF2D78;
  --neon-green: #39FF14;
  --neon-blue: #0A84FF;
  --dark-900: #020408;
  --dark-800: #060C14;
  --dark-700: #0A1628;
  --dark-600: #0F1F3D;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.07);
}

/* ── Base Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark-900);
  color: #e2e8f0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(0, 245, 255, 0.25); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-900); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple)); border-radius: 3px; }

/* ═══════════════════════════════════════════════════════════
   LOADER
   ═══════════════════════════════════════════════════════════ */
#loader {
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-content { position: relative; display: flex; flex-direction: column; align-items: center; }
.loader-ring {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--neon-cyan);
  animation: spin 1s linear infinite;
}
.loader-ring-2 {
  width: 110px; height: 110px;
  border-top-color: var(--neon-purple);
  animation-duration: 1.5s;
  animation-direction: reverse;
}
.loader-ring-3 {
  width: 140px; height: 140px;
  border-top-color: var(--neon-pink);
  animation-duration: 2s;
}
.loader-text { animation: blink 1.2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:0.4} 50%{opacity:1} }
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
   ═══════════════════════════════════════════════════════════ */
.text-gradient {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 50%, var(--neon-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-cyan {
  background: linear-gradient(135deg, var(--neon-cyan), #00a8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════════════
   GLASS MORPHISM
   ═══════════════════════════════════════════════════════════ */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.glass-dark {
  background: rgba(6, 12, 20, 0.85);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn-primary {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 245, 255, 0.35); }
.btn-primary:active { transform: translateY(0); }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-ghost {
  background: transparent;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 245, 255, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 245, 255, 0.15);
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
#navbar {
  background: transparent;
}
#navbar.scrolled {
  background: rgba(2, 4, 8, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.logo-icon {
  background: linear-gradient(135deg, rgba(0,245,255,0.15), rgba(191,90,242,0.15));
  border: 1px solid rgba(0,245,255,0.3);
  transition: all 0.3s ease;
}
.logo-icon:hover {
  box-shadow: 0 0 20px rgba(0,245,255,0.4);
  border-color: var(--neon-cyan);
}
.nav-link {
  position: relative;
  text-decoration: none;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--neon-cyan);
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }
.mobile-nav-link {
  display: block;
  color: #9ca3af;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.3s ease;
}
.mobile-nav-link:hover { color: var(--neon-cyan); }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}

/* Animated Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,245,255,0.12) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(191,90,242,0.1) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation-delay: -3s;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,45,120,0.08) 0%, transparent 70%);
  top: 50%; left: 40%;
  animation-delay: -6s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Hero Profile */
.hero-profile-wrap {
  width: 320px; height: 380px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 60px rgba(0,245,255,0.2), 0 0 120px rgba(191,90,242,0.1);
}
@media (max-width: 640px) {
  .hero-profile-wrap { width: 260px; height: 310px; }
}
.hero-profile-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(1.05) contrast(1.05);
  transition: transform 0.6s ease;
}
.hero-profile-wrap:hover .hero-profile-img { transform: scale(1.03); }
.hero-profile-glow {
  position: absolute;
  inset: -2px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Hero Rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  pointer-events: none;
}
.hero-ring-outer {
  width: 480px; height: 480px;
  border-color: rgba(0,245,255,0.1);
  animation: spin 25s linear infinite;
  background: conic-gradient(from 0deg, transparent 70%, rgba(0,245,255,0.15) 100%);
}
.hero-ring-inner {
  width: 380px; height: 380px;
  border-color: rgba(191,90,242,0.1);
  animation: spin 18s linear infinite reverse;
  background: conic-gradient(from 0deg, transparent 70%, rgba(191,90,242,0.15) 100%);
}
@media (max-width: 768px) {
  .hero-ring-outer { width: 360px; height: 360px; }
  .hero-ring-inner { width: 280px; height: 280px; }
}

/* Floating Cards */
.float-card {
  position: absolute;
  z-index: 20;
  animation: floatCard 4s ease-in-out infinite;
}
.float-card-1 { top: 5%; left: -10%; animation-delay: 0s; }
.float-card-2 { top: 20%; right: -8%; animation-delay: -1s; }
.float-card-3 { bottom: 25%; left: -12%; animation-delay: -2s; }
.float-card-4 { bottom: 8%; right: -5%; animation-delay: -3s; }
@media (max-width: 1024px) {
  .float-card-1 { left: -5%; }
  .float-card-2 { right: -3%; }
  .float-card-3 { left: -5%; }
  .float-card-4 { right: -2%; }
}
@media (max-width: 768px) {
  .float-card { display: none; }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Stat Pills */
.stat-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Tech Pills */
.tech-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #9ca3af;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.tech-pill:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0,245,255,0.05);
}

/* Scroll Indicator */
.scroll-indicator {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--neon-cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ═══════════════════════════════════════════════════════════
   SECTION UTILITIES
   ═══════════════════════════════════════════════════════════ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,245,255,0.08);
  border: 1px solid rgba(0,245,255,0.2);
  color: var(--neon-cyan);
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}
.section-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon-cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.section-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.4;
}
.section-orb-left {
  background: radial-gradient(circle, rgba(0,245,255,0.08) 0%, transparent 70%);
  left: -200px; top: 50%; transform: translateY(-50%);
}
.section-orb-right {
  background: radial-gradient(circle, rgba(191,90,242,0.08) 0%, transparent 70%);
  right: -200px; top: 50%; transform: translateY(-50%);
}
.section-orb-center {
  background: radial-gradient(circle, rgba(255,45,120,0.06) 0%, transparent 70%);
  left: 50%; top: 50%; transform: translate(-50%, -50%);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════ */
.about-brain-card {
  position: relative;
  overflow: hidden;
}
.brain-glow {
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,245,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 999px;
  animation: progressLoad 1.5s ease-out forwards;
  transform-origin: left;
}
@keyframes progressLoad {
  from { width: 0 !important; }
}
.about-feature-card {
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}
.about-feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
}
.feature-card-large {
  grid-column: span 2;
}
@media (max-width: 1024px) {
  .feature-card-large { grid-column: span 2; }
}
@media (max-width: 640px) {
  .feature-card-large { grid-column: span 1; }
}
.feature-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--glass-border);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,245,255,0.2);
  background: rgba(255,255,255,0.06);
}
.feature-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.feature-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #9ca3af;
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}
.feature-glow {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 150px; height: 150px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.feature-card:hover .feature-glow { opacity: 1; }
.feature-glow-cyan { background: radial-gradient(circle, rgba(0,245,255,0.2) 0%, transparent 70%); }
.feature-glow-purple { background: radial-gradient(circle, rgba(191,90,242,0.2) 0%, transparent 70%); }
.feature-glow-pink { background: radial-gradient(circle, rgba(255,45,120,0.2) 0%, transparent 70%); }
.feature-glow-green { background: radial-gradient(circle, rgba(57,255,20,0.2) 0%, transparent 70%); }
.feature-glow-blue { background: radial-gradient(circle, rgba(10,132,255,0.2) 0%, transparent 70%); }

/* ═══════════════════════════════════════════════════════════
   CHAT SECTION
   ═══════════════════════════════════════════════════════════ */
.chat-container {
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 60px rgba(0,245,255,0.08), 0 0 120px rgba(191,90,242,0.05);
}
.chat-header {
  background: rgba(255,255,255,0.02);
}
.chat-messages {
  scrollbar-width: thin;
  scrollbar-color: rgba(0,245,255,0.3) transparent;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(0,245,255,0.3); border-radius: 2px; }
.ai-bubble {
  background: rgba(0,245,255,0.05);
  border: 1px solid rgba(0,245,255,0.1);
}
.user-bubble {
  background: linear-gradient(135deg, rgba(191,90,242,0.15), rgba(255,45,120,0.1));
  border: 1px solid rgba(191,90,242,0.2);
}
.chat-msg-user {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex-direction: row-reverse;
}
.quick-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #9ca3af;
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
  white-space: nowrap;
}
.quick-btn:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0,245,255,0.05);
}
.chat-input {
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.chat-input:focus {
  box-shadow: 0 0 0 1px rgba(0,245,255,0.3);
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
}
.typing-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon-cyan);
  animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; background: var(--neon-purple); }
.typing-dot:nth-child(3) { animation-delay: 0.4s; background: var(--neon-pink); }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-8px); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════ */
.service-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--glass-border);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,245,255,0.2);
}
.service-icon-wrap {
  position: relative;
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(0,245,255,0.2);
  animation: spin 8s linear infinite;
}
.service-icon-ring-purple { border-color: rgba(191,90,242,0.2); animation-direction: reverse; }
.service-icon-ring-pink { border-color: rgba(255,45,120,0.2); }
.service-icon-ring-green { border-color: rgba(57,255,20,0.2); animation-direction: reverse; }
.service-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
  font-size: 0.8rem;
}
.service-cta {
  color: #6b7280;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-hover-glow {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,245,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-hover-glow-purple { background: radial-gradient(circle, rgba(191,90,242,0.1) 0%, transparent 70%); }
.service-hover-glow-pink { background: radial-gradient(circle, rgba(255,45,120,0.1) 0%, transparent 70%); }
.service-hover-glow-green { background: radial-gradient(circle, rgba(57,255,20,0.1) 0%, transparent 70%); }
.service-card:hover .service-hover-glow { opacity: 1; }

/* CTA Service Card */
.service-cta-card { border: 1px solid rgba(0,245,255,0.15); }
.cta-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,245,255,0.05) 0%, rgba(191,90,242,0.05) 50%, rgba(255,45,120,0.05) 100%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   PORTFOLIO SECTION
   ═══════════════════════════════════════════════════════════ */
.portfolio-card {
  transition: all 0.4s ease;
  border: 1px solid var(--glass-border);
}
.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,245,255,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.portfolio-img-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}
.portfolio-card:hover .portfolio-img-bg { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,4,8,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-tag {
  background: rgba(0,245,255,0.15);
  border: 1px solid rgba(0,245,255,0.3);
  color: var(--neon-cyan);
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-family: 'Space Mono', monospace;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════ */
.testimonial-card {
  border: 1px solid var(--glass-border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 8rem;
  font-family: 'Syne', sans-serif;
  color: rgba(0,245,255,0.05);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,245,255,0.15);
  background: rgba(255,255,255,0.06);
}
.verified-badge {
  background: rgba(57,255,20,0.1);
  border: 1px solid rgba(57,255,20,0.2);
  color: var(--neon-green);
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-family: 'Space Mono', monospace;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════ */
.contact-info-card {
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}
.contact-info-card:hover {
  border-color: rgba(0,245,255,0.2);
  transform: translateX(4px);
}
.form-label {
  display: block;
  color: #9ca3af;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  outline: none;
}
.form-input:focus {
  border-color: rgba(0,245,255,0.4);
  background: rgba(0,245,255,0.03);
  box-shadow: 0 0 0 3px rgba(0,245,255,0.08);
}
.form-input::placeholder { color: #4b5563; }
.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 2.5rem;
}
.form-select option {
  background: #0a1628;
  color: #fff;
}

/* Social Buttons */
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-btn:hover {
  background: rgba(0,245,255,0.1);
  border-color: rgba(0,245,255,0.3);
  color: var(--neon-cyan);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,245,255,0.2);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-purple), transparent);
}
.footer-link {
  color: #6b7280;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-link:hover {
  color: var(--neon-cyan);
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════════ */
.toast {
  border: 1px solid rgba(57,255,20,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: toastSlide 0.4s ease;
}
.toast.error { border-color: rgba(255,45,120,0.3); }
@keyframes toastSlide {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ═══════════════════════════════════════════════════════════
   PARTICLES CANVAS
   ═══════════════════════════════════════════════════════════ */
#particles {
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE MENU ANIMATION
   ═══════════════════════════════════════════════════════════ */
.mobile-menu {
  animation: menuSlide 0.3s ease;
}
@keyframes menuSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   MENU TOGGLE ANIMATION
   ═══════════════════════════════════════════════════════════ */
#menuToggle.open .menu-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#menuToggle.open .menu-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#menuToggle.open .menu-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.menu-bar {
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE TWEAKS
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-right { display: flex; justify-content: center; margin-top: 2rem; }
  .hero-ring-outer, .hero-ring-inner { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: span 1; }
}

@media (max-width: 480px) {
  .hero-profile-wrap { width: 220px; height: 270px; }
  .stat-num { font-size: 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════
   NEON GLOW UTILITIES
   ═══════════════════════════════════════════════════════════ */
.glow-cyan { box-shadow: 0 0 20px rgba(0,245,255,0.4); }
.glow-purple { box-shadow: 0 0 20px rgba(191,90,242,0.4); }
.glow-pink { box-shadow: 0 0 20px rgba(255,45,120,0.4); }

/* ═══════════════════════════════════════════════════════════
   ANIMATED GRADIENT BORDER
   ═══════════════════════════════════════════════════════════ */
.gradient-border {
  position: relative;
}
.gradient-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gradient-border:hover::before { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   HERO LEFT STAGGER
   ═══════════════════════════════════════════════════════════ */
.hero-left .reveal-up:nth-child(1) { animation-delay: 0s; }
.hero-left .reveal-up:nth-child(2) { animation-delay: 0.1s; }
.hero-left .reveal-up:nth-child(3) { animation-delay: 0.2s; }
.hero-left .reveal-up:nth-child(4) { animation-delay: 0.3s; }