/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap");

/* Reset default gaps and set fonts*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --color-black: #0a0a0a;
  --color-dark: #1a1a1a;
  --color-orange: #ff6b35;
  --color-orange-light: #ff8c5a;
  --color-orange-dark: #e5511b;
  --color-white: #ffffff;
  --color-gray: #a0a0a0;
  --color-gray-light: #e5e5e5;
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Space Grotesk', sans-serif;
}

body {
  background-color: var(--color-black);
  color: var(--color-white);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  line-height: 1.6;
  overflow-anchor: none;
}

/* Particle Background */
.particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particles-bg::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

/* ========== FUTURISTIC CYBERPUNK HERO SECTION ========== */
header {
  min-height: 100vh;
  width: 100%;
  background-image: url(./img/hero-pic.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Dark Gradient Overlay */
header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
  z-index: 1;
}

/* Film Grain Texture */
header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
  opacity: 0.4;
  z-index: 2;
  pointer-events: none;
  animation: grain 8s steps(10) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(3%, -15%); }
  50% { transform: translate(12%, 9%); }
  70% { transform: translate(9%, 4%); }
  90% { transform: translate(-1%, 7%); }
}

/* ========== PREMIUM TECH NAVBAR ========== */
.premium-nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10000;
  padding: 0;
  background: transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}

/* Tech Corner Brackets */
.nav-bracket {
  position: absolute;
  width: 25px;
  height: 25px;
  border: 2px solid rgba(255, 107, 53, 0);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 10;
}

.nav-bracket::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 2px;
  background: rgba(255, 107, 53, 0.6);
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-bracket::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 8px;
  background: rgba(255, 107, 53, 0.6);
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Top Left Bracket */
.nav-bracket-tl {
  top: 6px;
  left: 12px;
  border-right: none;
  border-bottom: none;
}

.nav-bracket-tl::before {
  top: -2px;
  left: -2px;
}

.nav-bracket-tl::after {
  top: -2px;
  left: -2px;
}

/* Top Right Bracket */
.nav-bracket-tr {
  top: 6px;
  right: 12px;
  border-left: none;
  border-bottom: none;
}

.nav-bracket-tr::before {
  top: -2px;
  right: -2px;
}

.nav-bracket-tr::after {
  top: -2px;
  right: -2px;
}

/* Bottom Left Bracket */
.nav-bracket-bl {
  bottom: 6px;
  left: 12px;
  border-right: none;
  border-top: none;
  opacity: 0;
}

.nav-bracket-bl::before {
  bottom: -2px;
  left: -2px;
}

.nav-bracket-bl::after {
  bottom: -2px;
  left: -2px;
}

/* Bottom Right Bracket */
.nav-bracket-br {
  bottom: 6px;
  right: 12px;
  border-left: none;
  border-top: none;
  opacity: 0;
}

.nav-bracket-br::before {
  bottom: -2px;
  right: -2px;
}

.nav-bracket-br::after {
  bottom: -2px;
  right: -2px;
}

/* Scan Line Effect */
.nav-scan-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 107, 53, 0.8) 50%,
    transparent 100%
  );
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
  opacity: 0;
  transition: all 0.5s ease;
  pointer-events: none;
}

/* Initial State (Transparent) */
.premium-nav .nav-bracket-tl,
.premium-nav .nav-bracket-tr {
  border-color: rgba(255, 107, 53, 0.2);
}

.premium-nav .nav-bracket-tl::before,
.premium-nav .nav-bracket-tl::after,
.premium-nav .nav-bracket-tr::before,
.premium-nav .nav-bracket-tr::after {
  opacity: 0.4;
}

/* Scrolled State (Morphing Tech Panel) */
.premium-nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.1),
              0 5px 20px rgba(0, 0, 0, 0.3);
}

.premium-nav.scrolled .nav-bracket {
  border-color: rgba(255, 107, 53, 0.5);
}

.premium-nav.scrolled .nav-bracket::before,
.premium-nav.scrolled .nav-bracket::after {
  opacity: 1;
}

.premium-nav.scrolled .nav-bracket-bl,
.premium-nav.scrolled .nav-bracket-br {
  opacity: 1;
}

.premium-nav.scrolled .nav-scan-line {
  opacity: 1;
  left: 0;
  animation: navScanPulse 3s ease-in-out infinite;
}

@keyframes navScanPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.7;
    transform: scaleX(1.02);
  }
}

/* Nav Container */
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.6rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 5001;
  gap: 1.5rem;
}

/* Logo Styling */
.logo-wrapper {
  position: relative;
  flex-shrink: 0;
}

.logo-frame {
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}

.logo-frame::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 1px solid rgba(255, 107, 53, 0);
  border-radius: 4px;
  transition: all 0.4s ease;
  pointer-events: none;
}

.logo-wrapper:hover .logo-frame::before {
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.3),
              inset 0 0 15px rgba(255, 107, 53, 0.1);
}

.logo-wrapper .logo {
  width: 100px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: all 0.4s ease;
  display: block;
}

.logo-wrapper:hover .logo {
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 107, 53, 0.6));
  transform: translateY(-2px);
}

/* Navigation Links */
.nav-links {
  flex: 1;
  text-align: right;
  display: block;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  align-items: center;
}

.nav-links ul li a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  padding: 0.35rem 0;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.link-bracket {
  color: rgba(255, 107, 53, 0.4);
  font-family: 'Courier New', monospace;
  font-weight: 700;
  opacity: 0;
  transform: translateX(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-text {
  position: relative;
  transition: all 0.3s ease;
}

.link-text::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-orange-light));
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links ul li a:hover .link-bracket {
  opacity: 1;
  color: var(--color-orange);
}

.nav-links ul li a:hover .link-bracket:first-child {
  transform: translateX(-4px);
}

.nav-links ul li a:hover .link-bracket:last-child {
  transform: translateX(4px);
}

.nav-links ul li a:hover .link-text {
  color: var(--color-orange);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.nav-links ul li a:hover .link-text::before {
  width: 100%;
}

/* Contact link - same styling as other nav links */
.cta-content {
  display: inline;
}

.cta-text {
  position: relative;
  transition: all 0.3s ease;
}

.cta-text::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-orange-light));
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover .cta-text {
  color: var(--color-orange);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.nav-cta:hover .cta-text::before {
  width: 100%;
}

/* Tech Grid Overlay */
.tech-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}

/* Scan Line Effect */
.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 107, 53, 0.8) 50%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
  z-index: 3;
  pointer-events: none;
  animation: scanLine 4s linear infinite;
}

@keyframes scanLine {
  0% { top: 0%; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Corner Decorations */
.corner-decoration {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 107, 53, 0.5);
  z-index: 3;
  pointer-events: none;
}

.corner-decoration::before,
.corner-decoration::after {
  content: '';
  position: absolute;
  background: rgba(255, 107, 53, 0.8);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
}

.corner-decoration.top-left {
  top: 100px;
  left: 30px;
  border-right: none;
  border-bottom: none;
}

.corner-decoration.top-left::before {
  width: 20px;
  height: 2px;
  top: -2px;
  left: -2px;
}

.corner-decoration.top-left::after {
  width: 2px;
  height: 20px;
  top: -2px;
  left: -2px;
}

.corner-decoration.bottom-right {
  bottom: 100px;
  right: 30px;
  border-left: none;
  border-top: none;
}

.corner-decoration.bottom-right::before {
  width: 20px;
  height: 2px;
  bottom: -2px;
  right: -2px;
}

.corner-decoration.bottom-right::after {
  width: 2px;
  height: 20px;
  bottom: -2px;
  right: -2px;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  will-change: auto;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  min-height: 400px;
}

/* Hero Text */
.hero-text {
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s both;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Tech Badge */
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-orange);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.2),
              inset 0 0 20px rgba(255, 107, 53, 0.1);
}

.live-indicator {
  width: 10px;
  height: 10px;
  background: #ff0000;
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px #ff0000,
              0 0 20px #ff0000;
}

@keyframes livePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.tech-label {
  text-transform: uppercase;
}

/* Glitch Title */
.hero-title {
  font-family: var(--font-secondary);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--color-white);
  text-transform: uppercase;
  position: relative;
}

.title-line {
  display: block;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
               0 0 40px rgba(255, 107, 53, 0.4);
}

.title-highlight {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.6));
  animation: glitchText 5s infinite;
}

/* Glitch Effect */
@keyframes glitchText {
  0%, 90%, 100% {
    transform: translate(0);
  }
  91% {
    transform: translate(-2px, -2px);
  }
  92% {
    transform: translate(2px, 2px);
  }
  93% {
    transform: translate(-2px, 2px);
  }
  94% {
    transform: translate(2px, -2px);
  }
  95% {
    transform: translate(0);
  }
}

.glitch[data-text]::before,
.glitch[data-text]::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.title-highlight::before {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glitch1 5s infinite;
  z-index: -1;
}

.title-highlight::after {
  background: linear-gradient(135deg, #00ffff, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glitch2 5s infinite;
  z-index: -2;
}

@keyframes glitch1 {
  0%, 90%, 100% {
    opacity: 0;
    transform: translate(0);
  }
  91% {
    opacity: 0.7;
    transform: translate(-3px, -3px);
  }
  93% {
    opacity: 0;
  }
}

@keyframes glitch2 {
  0%, 90%, 100% {
    opacity: 0;
    transform: translate(0);
  }
  92% {
    opacity: 0.7;
    transform: translate(3px, 3px);
  }
  94% {
    opacity: 0;
  }
}

/* Hero Subtitle */
.hero-subtitle {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  color: var(--color-orange);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  opacity: 1;
}

.bracket {
  color: rgba(255, 107, 53, 0.6);
}

.subtitle-text {
  color: var(--color-orange);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}


.hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Neon CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.neon-btn,
.holo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Neon Primary Button */
.neon-btn {
  background: var(--color-orange);
  color: var(--color-white);
  border: 2px solid var(--color-orange);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.4),
              0 0 40px rgba(255, 107, 53, 0.2),
              inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  animation: rotateGlow 4s linear infinite;
  pointer-events: none;
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.neon-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.6),
              0 0 60px rgba(255, 107, 53, 0.4),
              0 10px 30px rgba(0, 0, 0, 0.3);
  background: var(--color-orange-light);
}

.neon-btn svg {
  transition: transform 0.3s ease;
}

.neon-btn:hover svg {
  transform: translateX(5px);
  animation: arrowBounce 0.6s ease infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* Holographic Secondary Button */
.holo-btn {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
}

.holo-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
  pointer-events: none;
}

.holo-btn:hover .holo-effect {
  left: 100%;
}

.holo-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--color-orange);
  color: var(--color-orange);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.3),
              0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Floating Particles */
.particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-orange);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
  animation: floatParticle 10s linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(var(--particle-drift, 50px));
    opacity: 0;
  }
}

/* Futuristic Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeIn 1s ease 1.5s both;
  z-index: 10;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-orange);
  border-radius: 20px;
  position: relative;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--color-orange);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.8);
}

.scroll-indicator span {
  font-size: 0.7rem;
  color: var(--color-orange);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

@keyframes scrollWheel {
  0% {
    top: 8px;
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}

/* ========== CYBERPUNK ABOUT SECTION ========== */
.about {
  width: 90%;
  max-width: 1200px;
  margin: 120px auto;
  padding: 80px 60px;
  position: relative;
  background: linear-gradient(135deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(26, 16, 20, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.2),
              0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transform: translateZ(0);
}

/* Tech Corner Brackets */
.about-bracket {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 107, 53, 0.6);
  z-index: 10;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-bracket::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: rgba(255, 107, 53, 0.8);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
}

.about-bracket::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: rgba(255, 107, 53, 0.8);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
}

/* Top Left Bracket */
.about-bracket-tl {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.about-bracket-tl::before {
  top: -2px;
  left: -2px;
}

.about-bracket-tl::after {
  top: -2px;
  left: -2px;
}

/* Top Right Bracket */
.about-bracket-tr {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
}

.about-bracket-tr::before {
  top: -2px;
  right: -2px;
}

.about-bracket-tr::after {
  top: -2px;
  right: -2px;
}

/* Bottom Left Bracket */
.about-bracket-bl {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
}

.about-bracket-bl::before {
  bottom: -2px;
  left: -2px;
}

.about-bracket-bl::after {
  bottom: -2px;
  left: -2px;
}

/* Bottom Right Bracket */
.about-bracket-br {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

.about-bracket-br::before {
  bottom: -2px;
  right: -2px;
}

.about-bracket-br::after {
  bottom: -2px;
  right: -2px;
}

/* Scan Line Effect */
.about-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 107, 53, 0.8) 50%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
  animation: aboutScanLine 6s linear infinite;
  pointer-events: none;
  z-index: 5;
}

@keyframes aboutScanLine {
  0% { top: 0%; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Tech Grid Background */
.about-tech-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 107, 53, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 53, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

/* Container */
.about-container {
  position: relative;
  z-index: 10;
  text-align: center;
}

/* Tech Badge */
.about-tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-orange);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.2),
              inset 0 0 20px rgba(255, 107, 53, 0.1);
}

.about-live-indicator {
  width: 10px;
  height: 10px;
  background: #00ff00;
  border-radius: 50%;
  animation: aboutLivePulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px #00ff00,
              0 0 20px #00ff00;
}

@keyframes aboutLivePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.about-tech-label {
  text-transform: uppercase;
}

/* Title */
.about-title {
  font-family: var(--font-secondary);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.about-bracket-text {
  color: rgba(255, 107, 53, 0.6);
  font-family: 'Courier New', monospace;
  font-size: 4rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.about-title:hover .about-bracket-text {
  color: var(--color-orange);
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
}

.about-title-text {
  background: linear-gradient(135deg, var(--color-white), rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

/* Content Cards */
.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 107, 53, 0.15) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
  pointer-events: none;
}

.about-card:hover::before {
  left: 100%;
}

.about-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--color-orange);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.3),
              0 10px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
  margin-bottom: 1.5rem;
  color: var(--color-orange);
  display: flex;
  justify-content: center;
}

.card-icon svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
  transition: all 0.3s ease;
}

.about-card:hover .card-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
}

.about-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Neon CTA Button */
.about-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.about-neon-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  background: var(--color-orange);
  color: var(--color-white);
  border: 2px solid var(--color-orange);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.4),
              0 0 40px rgba(255, 107, 53, 0.2);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-glow-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  animation: aboutBtnRotateGlow 4s linear infinite;
  pointer-events: none;
}

@keyframes aboutBtnRotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-neon-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.6),
              0 0 60px rgba(255, 107, 53, 0.4),
              0 15px 40px rgba(0, 0, 0, 0.3);
  background: var(--color-orange-light);
}

.about-neon-btn svg {
  transition: transform 0.3s ease;
}

.about-neon-btn:hover svg {
  transform: translateX(5px);
  animation: aboutArrowBounce 0.6s ease infinite;
}

@keyframes aboutArrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* ========== CYBERPUNK PROJECTS SECTION ========== */
.projects {
  width: 90%;
  max-width: 1400px;
  margin: 120px auto;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(26, 16, 20, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.2),
              0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

/* Tech Corner Brackets */
.projects-bracket {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 107, 53, 0.6);
  z-index: 10;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.projects-bracket::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: rgba(255, 107, 53, 0.8);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
}

.projects-bracket::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: rgba(255, 107, 53, 0.8);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
}

.projects-bracket-tl {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.projects-bracket-tl::before {
  top: -2px;
  left: -2px;
}

.projects-bracket-tl::after {
  top: -2px;
  left: -2px;
}

.projects-bracket-tr {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
}

.projects-bracket-tr::before {
  top: -2px;
  right: -2px;
}

.projects-bracket-tr::after {
  top: -2px;
  right: -2px;
}

.projects-bracket-bl {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
}

.projects-bracket-bl::before {
  bottom: -2px;
  left: -2px;
}

.projects-bracket-bl::after {
  bottom: -2px;
  left: -2px;
}

.projects-bracket-br {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

.projects-bracket-br::before {
  bottom: -2px;
  right: -2px;
}

.projects-bracket-br::after {
  bottom: -2px;
  right: -2px;
}

/* Scan Line Effect */
.projects-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 107, 53, 0.8) 50%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
  animation: projectsScanLine 8s linear infinite;
  pointer-events: none;
  z-index: 5;
}

@keyframes projectsScanLine {
  0% { top: 0%; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Tech Grid Background */
.projects-tech-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 107, 53, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 53, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

/* Container */
.projects-container {
  position: relative;
  z-index: 10;
  margin-bottom: 3rem;
}

/* Tech Badge */
.projects-tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-orange);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.2),
              inset 0 0 20px rgba(255, 107, 53, 0.1);
}

.projects-live-indicator {
  width: 10px;
  height: 10px;
  background: #ff0000;
  border-radius: 50%;
  animation: projectsLivePulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px #ff0000,
              0 0 20px #ff0000;
}

@keyframes projectsLivePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.projects-tech-label {
  text-transform: uppercase;
}

/* Title */
.projects-title {
  font-family: var(--font-secondary);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.projects-bracket-text {
  color: rgba(255, 107, 53, 0.6);
  font-family: 'Courier New', monospace;
  font-size: 4rem;
  font-weight: 700;
  transition: all 0.3s ease;
  line-height: 1;
}

.projects-title:hover .projects-bracket-text {
  color: var(--color-orange);
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
}

.projects-title-text {
  background: linear-gradient(135deg, var(--color-white), rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

/* Subtitle */
.projects-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.5px;
}

/* Projects Grid */
.projects-row {
  position: relative;
  z-index: 10;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

/* Project Cards */
.projects-col {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 107, 53, 0.05);
  border: 2px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.projects-col:hover {
  transform: translateY(-15px);
  border-color: var(--color-orange);
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.4),
              0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Layer */
.layer {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.layer a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
}

.layer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(255, 107, 53, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.layer:hover::before {
  opacity: 1;
}

.layer::after {
  content: "\f144";
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: var(--color-orange);
  font-size: 3.5rem;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.8),
               0 0 40px rgba(255, 107, 53, 0.6);
  z-index: 2;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 10px rgba(255, 107, 53, 1));
}

.layer:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  animation: projectsPulse 1.5s ease-in-out infinite;
}

@keyframes projectsPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.layer img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  background-color: transparent;
  display: block;
}

.layer:hover img {
  transform: scale(1.15);
}

/* ========== CYBERPUNK FOOTER ========== */
footer {
  width: 100%;
  margin-top: 120px;
  padding: 80px 0 0 0;
  background: linear-gradient(135deg,
    rgba(10, 10, 10, 0.98) 0%,
    rgba(26, 16, 20, 0.98) 100%
  );
  border-top: 2px solid rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

/* Tech Corner Brackets */
.footer-bracket {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 107, 53, 0.6);
  z-index: 10;
  pointer-events: none;
}

.footer-bracket::before {
  content: '';
  position: absolute;
  width: 25px;
  height: 2px;
  background: rgba(255, 107, 53, 0.8);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
}

.footer-bracket::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 25px;
  background: rgba(255, 107, 53, 0.8);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
}

.footer-bracket-tl {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.footer-bracket-tl::before {
  top: -2px;
  left: -2px;
}

.footer-bracket-tl::after {
  top: -2px;
  left: -2px;
}

.footer-bracket-tr {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
}

.footer-bracket-tr::before {
  top: -2px;
  right: -2px;
}

.footer-bracket-tr::after {
  top: -2px;
  right: -2px;
}

/* Scan Line */
.footer-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 107, 53, 0.8) 50%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
  animation: footerScanLine 10s linear infinite;
  pointer-events: none;
  z-index: 5;
}

@keyframes footerScanLine {
  0% { left: -100%; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* Tech Grid */
.footer-tech-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

/* Container */
.footer-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

/* Tech Badge */
.footer-tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-orange);
  margin-bottom: 3rem;
  backdrop-filter: blur(10px);
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.footer-live-indicator {
  width: 10px;
  height: 10px;
  background: #00ff00;
  border-radius: 50%;
  animation: footerLivePulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px #00ff00;
}

@keyframes footerLivePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.footer-tech-label {
  text-transform: uppercase;
}

/* Contact Wrapper */
.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: left;
}

/* Sections */
.social-links,
.contact-info {
  padding: 2rem;
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.social-links:hover,
.contact-info:hover {
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

/* Headings */
.social-links h3,
.contact-info h3 {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bracket-text {
  color: rgba(255, 107, 53, 0.6);
  font-family: 'Courier New', monospace;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 107, 53, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.social-icon:hover::before {
  width: 100%;
  height: 100%;
}

.social-icon:hover {
  border-color: var(--color-orange);
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.social-icon i {
  color: var(--color-white);
  font-size: 1.5rem;
  z-index: 2;
  transition: all 0.3s ease;
}

.social-icon:hover i {
  color: var(--color-orange);
  transform: scale(1.1);
}

.social-icon img {
  width: 24px;
  height: 24px;
  z-index: 2;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.social-icon:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 107, 53, 0.8));
}

/* Contact Details */
.contact-details p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-details i {
  color: var(--color-orange);
  font-size: 1.1rem;
  min-width: 20px;
  margin-top: 2px;
}

.contact-details a {
  color: var(--color-orange);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.contact-details a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-orange);
  transition: width 0.3s ease;
}

.contact-details a:hover::after {
  width: 100%;
}

.contact-details a:hover {
  color: var(--color-orange-light);
}

/* Divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 107, 53, 0.5) 50%,
    transparent 100%
  );
  margin: 2rem 0;
}

/* Copyright */
.copyright {
  padding: 2rem 0;
  text-align: center;
}

.copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Developer Signature */
.developer-signature {
  margin-top: 1rem;
  text-align: center;
}

.mse-link {
  color: rgba(255, 255, 255, 0.25) !important;
  font-size: 0.7rem;
  text-decoration: none;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  background: none;
  padding: 0;
}

.mse-link:hover {
  color: rgba(255, 255, 255, 0.4) !important;
  border: none;
  background: none;
}

/* WhatsApp Floating Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4),
              0 0 0 0 rgba(37, 211, 102, 0.4);
  z-index: 10000;
  transition: all 0.3s ease;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6),
              0 0 0 8px rgba(37, 211, 102, 0.2);
  animation: none;
}

.whatsapp-button img {
  width: 32px;
  height: 32px;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4),
                0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4),
                0 0 0 10px rgba(37, 211, 102, 0);
  }
}

/* ========== RESPONSIVE DESIGN ========== */

/* Large Desktop Optimization */
@media (min-width: 1440px) {
  .nav-container {
    padding: 0.65rem 2.5rem;
  }

  .nav-links ul {
    gap: 1.75rem;
  }

  .logo-wrapper .logo {
    width: 110px;
  }

  .nav-links ul li a {
    font-size: 0.875rem;
  }

}

/* Desktop & Laptop */
@media (min-width: 1025px) and (max-width: 1439px) {
  .nav-container {
    padding: 0.6rem 2rem;
  }

  .nav-links ul {
    gap: 1.5rem;
  }

  .logo-wrapper .logo {
    width: 100px;
  }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-container {
    gap: 3rem;
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }

  .nav-links ul {
    gap: 1.5rem;
  }

  .logo-wrapper .logo {
    width: 120px;
  }

  .nav-links ul li a {
    font-size: 0.9rem;
  }


  .premium-nav .nav-bracket {
    width: 35px;
    height: 35px;
  }

  /* About Section - Tablet */
  .about {
    margin: 100px auto;
    padding: 70px 40px;
  }

  .about-bracket {
    width: 50px;
    height: 50px;
  }

  .about-bracket::before {
    width: 16px;
  }

  .about-bracket::after {
    height: 16px;
  }

  .about-title {
    font-size: 3rem;
    gap: 0.75rem;
  }

  .about-bracket-text {
    font-size: 3.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .about-card {
    padding: 2.25rem 1.75rem;
  }

  .about-card p {
    font-size: 1rem;
  }

  .about-neon-btn {
    padding: 1.05rem 2.25rem;
    font-size: 0.95rem;
  }

  /* Projects Section - Tablet */
  .projects {
    margin: 100px auto;
    padding: 70px 40px;
  }

  .projects-bracket {
    width: 50px;
    height: 50px;
  }

  .projects-bracket::before {
    width: 16px;
  }

  .projects-bracket::after {
    height: 16px;
  }

  .projects-title {
    font-size: 3rem;
    gap: 0.75rem;
  }

  .projects-bracket-text {
    font-size: 3.5rem;
  }

  .projects-subtitle {
    font-size: 1rem;
  }

  .projects-row {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
  }

  .layer img {
    height: 260px;
  }

  /* Footer - Tablet */
  .footer-bracket {
    width: 60px;
    height: 60px;
  }

  .footer-bracket::before {
    width: 20px;
  }

  .footer-bracket::after {
    height: 20px;
  }

  .contact-wrapper {
    gap: 2rem;
  }

  .social-links,
  .contact-info {
    padding: 1.75rem;
  }

  .social-links h3,
  .contact-info h3 {
    font-size: 1.3rem;
  }

  .footer-bracket-text {
    font-size: 1.5rem;
  }
}

/* ========== MOBILE RESPONSIVE - FUTURISTIC HERO ========== */

/* Tablet */
@media (max-width: 1024px) {
  .hero-content {
    padding-top: 100px;
  }

  .hero-container {
    max-width: 800px;
    padding: 0 2rem;
  }

  .tech-badge {
    font-size: 0.7rem;
    padding: 0.55rem 1.25rem;
    margin-bottom: 1.75rem;
  }

  .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .hero-description {
    font-size: 1.05rem;
    margin-bottom: 2.25rem;
    line-height: 1.75;
  }

  .hero-cta {
    gap: 0.875rem;
    margin-bottom: 2.5rem;
  }

  .neon-btn,
  .holo-btn {
    padding: 1rem 2.25rem;
    font-size: 0.95rem;
  }

  .corner-decoration {
    width: 60px;
    height: 60px;
  }

  .corner-decoration.top-left {
    top: 90px;
    left: 25px;
  }

  .corner-decoration.bottom-right {
    bottom: 90px;
    right: 25px;
  }

  /* About Section - Tablet General */
  .about {
    width: 92%;
  }

  .about-tech-grid {
    background-size: 35px 35px;
  }

  /* Projects Section - Tablet General */
  .projects {
    width: 92%;
  }

  .projects-tech-grid {
    background-size: 35px 35px;
  }
}

/* Mobile - Landscape and Portrait */
@media (max-width: 768px) {
  /* Remove performance-heavy effects on mobile */
  header::after {
    display: none; /* Remove grain effect */
  }

  .scan-line {
    display: none; /* Remove scan line */
  }

  .tech-grid {
    opacity: 0.3; /* Reduce grid opacity */
    background-size: 30px 30px;
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }

  .nav-links ul {
    gap: 1.5rem;
  }

  header {
    min-height: 100vh;
    padding-bottom: 3rem;
    background-attachment: scroll; /* Fix parallax on mobile */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling iOS */
  }

  .hero-content {
    padding-top: 90px;
    padding-bottom: 2rem;
    min-height: calc(100vh - 90px);
    justify-content: flex-start;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  /* Disable heavy animations on mobile for smooth scroll */
  .btn-glow,
  .cta-glow {
    animation: none;
    display: none;
  }

  .title-highlight {
    animation: none;
  }

  .title-highlight::before,
  .title-highlight::after {
    display: none;
  }

  .glitch::before,
  .glitch::after {
    display: none;
  }

  /* Reduce particle count effect */
  .particle-container {
    opacity: 0.5;
  }

  /* Optimize hero elements */
  .hero-cta,
  .neon-btn,
  .holo-btn {
    will-change: transform;
  }

  .hero-text {
    will-change: opacity, transform;
  }

  /* Prevent layout shift */
  .hero-container {
    contain: layout style;
    max-width: 100%;
    padding: 0 1.25rem;
  }

  /* Simplify button effects on mobile */
  .neon-btn:hover,
  .holo-btn:hover {
    transform: none;
  }

  .holo-effect {
    display: none;
  }

  .neon-btn:active {
    transform: scale(0.98);
  }

  .holo-btn:active {
    transform: scale(0.98);
  }

  /* Tech Badge */
  .tech-badge {
    font-size: 0.6rem;
    padding: 0.45rem 0.9rem;
    margin-bottom: 1.25rem;
    gap: 0.5rem;
  }

  .live-indicator {
    width: 8px;
    height: 8px;
  }

  /* Title */
  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.875rem;
    line-height: 1.2;
  }

  .title-line {
    display: block;
    margin-bottom: 0.25rem;
  }

  /* Subtitle */
  .hero-subtitle {
    font-size: 0.75rem;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
  }

  /* Description */
  .hero-description {
    font-size: 0.9rem;
    max-width: 100%;
    margin-bottom: 1.75rem;
    line-height: 1.65;
  }

  /* CTA Buttons */
  .hero-cta {
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 2rem;
  }

  .neon-btn,
  .holo-btn {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1.75rem;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
  }

  /* Corner Decorations */
  .corner-decoration {
    width: 45px;
    height: 45px;
  }

  .corner-decoration.top-left {
    top: 75px;
    left: 12px;
  }

  .corner-decoration.bottom-right {
    bottom: 70px;
    right: 12px;
  }

  .corner-decoration.top-left::before,
  .corner-decoration.bottom-right::before {
    width: 18px;
  }

  .corner-decoration.top-left::after,
  .corner-decoration.bottom-right::after {
    height: 18px;
  }

  /* Scroll Indicator */
  .scroll-indicator {
    bottom: 1.25rem;
  }

  .scroll-indicator span {
    font-size: 0.65rem;
  }

  .about,
  .projects {
    width: 95%;
  }

  /* About Section - Mobile */
  .about {
    margin: 80px auto;
    padding: 60px 1.5rem;
  }

  .about-bracket {
    width: 40px;
    height: 40px;
  }

  .about-bracket::before {
    width: 14px;
  }

  .about-bracket::after {
    height: 14px;
  }

  .about-bracket-tl,
  .about-bracket-tr {
    top: 15px;
  }

  .about-bracket-bl,
  .about-bracket-br {
    bottom: 15px;
  }

  .about-bracket-tl,
  .about-bracket-bl {
    left: 15px;
  }

  .about-bracket-tr,
  .about-bracket-br {
    right: 15px;
  }

  .about-tech-badge {
    font-size: 0.65rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
  }

  .about-live-indicator {
    width: 8px;
    height: 8px;
  }

  .about-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    gap: 0.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-bracket-text {
    font-size: 2.5rem;
    line-height: 1;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .about-card {
    padding: 2rem 1.5rem;
  }

  .card-icon svg {
    width: 40px;
    height: 40px;
  }

  .about-card p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .about-neon-btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  /* Disable heavy animations on mobile */
  .about-scan-line {
    display: none;
  }

  .btn-glow-effect {
    animation: none;
    display: none;
  }

  .about-card:hover {
    transform: none;
  }

  .about-card:active {
    transform: scale(0.98);
  }

  .about-neon-btn:hover {
    transform: none;
  }

  .about-neon-btn:active {
    transform: scale(0.98);
  }

  /* Projects Section - Mobile */
  .projects {
    margin: 80px auto;
    padding: 60px 1.5rem;
    width: 95%;
  }

  .projects-bracket {
    width: 40px;
    height: 40px;
  }

  .projects-bracket::before {
    width: 14px;
  }

  .projects-bracket::after {
    height: 14px;
  }

  .projects-bracket-tl,
  .projects-bracket-tr {
    top: 15px;
  }

  .projects-bracket-bl,
  .projects-bracket-br {
    bottom: 15px;
  }

  .projects-bracket-tl,
  .projects-bracket-bl {
    left: 15px;
  }

  .projects-bracket-tr,
  .projects-bracket-br {
    right: 15px;
  }

  .projects-tech-badge {
    font-size: 0.65rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
  }

  .projects-live-indicator {
    width: 8px;
    height: 8px;
  }

  .projects-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .projects-bracket-text {
    font-size: 2.5rem;
  }

  .projects-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .projects-container {
    margin-bottom: 2rem;
  }

  .projects-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 30px;
  }

  .layer img {
    height: 240px;
  }

  /* Disable heavy animations on mobile */
  .projects-scan-line {
    display: none;
  }

  .layer:hover::after {
    animation: none;
  }

  .projects-col:hover {
    transform: none;
  }

  .projects-col:active {
    transform: scale(0.98);
  }

  /* Footer - Mobile */
  footer {
    margin-top: 80px;
    padding: 60px 0 0 0;
  }

  .footer-bracket {
    width: 40px;
    height: 40px;
  }

  .footer-bracket::before {
    width: 14px;
  }

  .footer-bracket::after {
    height: 14px;
  }

  .footer-bracket-tl,
  .footer-bracket-tr {
    top: 15px;
  }

  .footer-bracket-tl {
    left: 15px;
  }

  .footer-bracket-tr {
    right: 15px;
  }

  .footer-container {
    padding: 0 1.5rem;
  }

  .footer-tech-badge {
    font-size: 0.65rem;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
  }

  .footer-live-indicator {
    width: 8px;
    height: 8px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .social-links,
  .contact-info {
    padding: 1.5rem;
    text-align: center;
  }

  .social-links h3,
  .contact-info h3 {
    font-size: 1.2rem;
    justify-content: center;
  }

  .footer-bracket-text {
    font-size: 1.4rem;
  }

  .social-icons {
    justify-content: center;
  }

  .contact-details p {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-scan-line {
    display: none;
  }

  .mse-link {
    padding: 0.65rem 1.25rem;
    font-size: 0.75rem;
  }

  .mse-bracket {
    font-size: 0.95rem;
  }

  .mse-name {
    font-size: 0.75rem;
  }

  .whatsapp-button {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-button img {
    width: 28px;
    height: 28px;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  header,
  footer,
  section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .whatsapp-button {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-button img {
    width: 50px;
    height: 50px;
  }
}

/* Smaller phones */
@media (max-width: 480px) {
  header {
    padding-bottom: 2rem;
    min-height: 100vh;
  }

  .hero-content {
    padding-top: 85px;
    padding-bottom: 2rem;
    min-height: calc(100vh - 85px);
  }

  .hero-container {
    padding: 0 1rem;
  }

  /* Tech Badge */
  .tech-badge {
    font-size: 0.55rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1rem;
    gap: 0.4rem;
  }

  .live-indicator {
    width: 7px;
    height: 7px;
  }

  /* Title */
  .hero-title {
    font-size: 1.65rem;
    margin-bottom: 0.75rem;
    line-height: 1.25;
  }

  .title-line {
    margin-bottom: 0.2rem;
  }

  /* Subtitle */
  .hero-subtitle {
    font-size: 0.7rem;
    margin-bottom: 0.875rem;
    letter-spacing: 1px;
  }

  /* Description */
  .hero-description {
    font-size: 0.825rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  /* CTA Buttons */
  .hero-cta {
    margin-bottom: 1.75rem;
    gap: 0.5rem;
  }

  .neon-btn,
  .holo-btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }

  .neon-btn svg {
    width: 15px;
    height: 15px;
  }

  /* Corner Decorations */
  .corner-decoration {
    width: 35px;
    height: 35px;
  }

  .corner-decoration.top-left {
    top: 70px;
    left: 8px;
  }

  .corner-decoration.bottom-right {
    bottom: 60px;
    right: 8px;
  }

  .corner-decoration.top-left::before,
  .corner-decoration.bottom-right::before {
    width: 12px;
  }

  .corner-decoration.top-left::after,
  .corner-decoration.bottom-right::after {
    height: 12px;
  }

  /* Scroll Indicator */
  .scroll-indicator {
    bottom: 1rem;
  }

  .scroll-mouse {
    width: 20px;
    height: 34px;
  }

  .scroll-wheel {
    width: 3px;
    height: 6px;
  }

  .scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 0.8px;
  }

  /* Navigation */
  .nav-container {
    padding: 0.875rem 1rem;
  }

  .logo-wrapper .logo {
    width: 90px;
  }

  /* About Section - Small Mobile */
  .about {
    margin: 60px auto;
    padding: 50px 1rem;
  }

  .about-bracket {
    width: 30px;
    height: 30px;
  }

  .about-bracket::before {
    width: 10px;
  }

  .about-bracket::after {
    height: 10px;
  }

  .about-bracket-tl,
  .about-bracket-tr {
    top: 10px;
  }

  .about-bracket-bl,
  .about-bracket-br {
    bottom: 10px;
  }

  .about-bracket-tl,
  .about-bracket-bl {
    left: 10px;
  }

  .about-bracket-tr,
  .about-bracket-br {
    right: 10px;
  }

  .about-tech-badge {
    font-size: 0.6rem;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1.25rem;
  }

  .about-live-indicator {
    width: 7px;
    height: 7px;
  }

  .about-title {
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
    gap: 0.4rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-bracket-text {
    font-size: 2.25rem;
    line-height: 1;
  }

  .about-content {
    gap: 1.25rem;
    margin-bottom: 1.75rem;
  }

  .about-card {
    padding: 1.75rem 1.25rem;
  }

  .card-icon svg {
    width: 36px;
    height: 36px;
  }

  .about-card p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .about-neon-btn {
    padding: 0.9rem 1.75rem;
    font-size: 0.85rem;
  }

  /* Projects Section - Small Mobile */
  .projects {
    margin: 60px auto;
    padding: 50px 1rem;
  }

  .projects-bracket {
    width: 30px;
    height: 30px;
  }

  .projects-bracket::before {
    width: 10px;
  }

  .projects-bracket::after {
    height: 10px;
  }

  .projects-bracket-tl,
  .projects-bracket-tr {
    top: 10px;
  }

  .projects-bracket-bl,
  .projects-bracket-br {
    bottom: 10px;
  }

  .projects-bracket-tl,
  .projects-bracket-bl {
    left: 10px;
  }

  .projects-bracket-tr,
  .projects-bracket-br {
    right: 10px;
  }

  .projects-tech-badge {
    font-size: 0.6rem;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1.25rem;
  }

  .projects-live-indicator {
    width: 7px;
    height: 7px;
  }

  .projects-title {
    font-size: 1.75rem;
    margin-bottom: 0.875rem;
    gap: 0.4rem;
  }

  .projects-bracket-text {
    font-size: 2.25rem;
  }

  .projects-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }

  .projects-container {
    margin-bottom: 1.75rem;
  }

  .projects-row {
    gap: 1.25rem;
    margin-top: 25px;
  }

  .layer img {
    height: 220px;
  }

  /* Footer - Small Mobile */
  footer {
    margin-top: 60px;
    padding: 50px 0 0 0;
  }

  .footer-bracket {
    width: 30px;
    height: 30px;
  }

  .footer-bracket::before {
    width: 10px;
  }

  .footer-bracket::after {
    height: 10px;
  }

  .footer-bracket-tl,
  .footer-bracket-tr {
    top: 10px;
  }

  .footer-bracket-tl {
    left: 10px;
  }

  .footer-bracket-tr {
    right: 10px;
  }

  .footer-container {
    padding: 0 1rem;
  }

  .footer-tech-badge {
    font-size: 0.6rem;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1.5rem;
  }

  .footer-live-indicator {
    width: 7px;
    height: 7px;
  }

  .contact-wrapper {
    gap: 1.25rem;
    margin-bottom: 1.75rem;
  }

  .social-links,
  .contact-info {
    padding: 1.25rem;
  }

  .social-links h3,
  .contact-info h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
  }

  .footer-bracket-text {
    font-size: 1.3rem;
  }

  .social-icon {
    width: 45px;
    height: 45px;
  }

  .social-icon i {
    font-size: 1.3rem;
  }

  .social-icon img {
    width: 20px;
    height: 20px;
  }

  .contact-details p {
    font-size: 0.85rem;
  }

  .developer-signature {
    gap: 0.4rem;
  }

  .developer-signature > span {
    font-size: 0.7rem;
  }

  .mse-link {
    padding: 0.6rem 1rem;
    font-size: 0.7rem;
  }

  .mse-bracket {
    font-size: 0.85rem;
  }

  .mse-name {
    font-size: 0.7rem;
  }

  .whatsapp-button {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-button img {
    width: 26px;
    height: 26px;
  }
}

/* ========== MOBILE SLIDE-IN TECH PANEL ========== */

/* Tech Hamburger Menu - Hidden on Desktop */
.toggle-button {
  display: none; /* Hidden by default on desktop */
  position: relative;
  width: 32px;
  height: 24px;
  margin-left: auto;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
}

/* Desktop - Ensure hamburger is hidden and nav links are visible */
@media (min-width: 769px) {
  .toggle-button {
    display: none !important;
  }

  .nav-links {
    display: block !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    backdrop-filter: none !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }

  .nav-links::before,
  .nav-links::after {
    display: none !important;
  }

  .nav-links ul {
    flex-direction: row !important;
    gap: 2.5rem !important;
  }

  .nav-links ul li {
    opacity: 1 !important;
    transform: none !important;
    width: auto !important;
  }

  .nav-links ul li a {
    padding: 0.5rem 0 !important;
    border: none !important;
    background: transparent !important;
    margin: 0 !important;
  }
}

.toggle-button .bar {
  position: absolute;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--color-white), var(--color-orange-light));
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-button .bar:nth-child(1) {
  top: 0;
  width: 100%;
}

.toggle-button .bar:nth-child(2) {
  top: 10px;
  width: 80%;
  right: 0;
}

.toggle-button .bar:nth-child(3) {
  top: 20px;
  width: 100%;
}

.toggle-button:hover .bar {
  background: linear-gradient(90deg, var(--color-orange), var(--color-orange-light));
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.5);
}

/* Active State - Smooth X Animation */
.toggle-button.active .bar:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
  width: 100%;
}

.toggle-button.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.toggle-button.active .bar:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

@media (max-width: 768px) {
  .toggle-button {
    display: block;
    position: relative;
    z-index: 10000;
  }

  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100vh;
  }

  /* Ensure navbar stays on top */
  .premium-nav {
    z-index: 10000 !important;
  }

  .nav-container {
    position: relative;
    z-index: 10001 !important;
  }

  /* Overlay Background */
  .nav-links::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                backdrop-filter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: 9998;
  }

  .nav-links.active::before {
    opacity: 1;
    pointer-events: all;
  }

  /* Slide-In Tech Panel */
  .nav-links {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(135deg,
      rgba(10, 10, 10, 0.98) 0%,
      rgba(26, 16, 20, 0.98) 100%
    );
    backdrop-filter: blur(30px);
    padding: 100px 2rem 2rem;
    z-index: 9999;
    overflow-y: auto;
    border-left: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: -5px 0 30px rgba(255, 107, 53, 0.2),
                -10px 0 50px rgba(0, 0, 0, 0.5);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  /* Panel Tech Decorations */
  .nav-links::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
      linear-gradient(rgba(255, 107, 53, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 107, 53, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
  }

  .nav-links.active {
    right: 0;
  }

  /* Menu Items */
  .nav-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
    position: relative;
    z-index: 10000;
  }

  .nav-links ul li {
    width: 100%;
    text-align: left;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 10001;
  }

  .nav-links.active ul li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.active ul li:nth-child(1) {
    transition-delay: 0.15s;
  }

  .nav-links.active ul li:nth-child(2) {
    transition-delay: 0.2s;
  }

  .nav-links.active ul li:nth-child(3) {
    transition-delay: 0.25s;
  }

  .nav-links.active ul li:nth-child(4) {
    transition-delay: 0.3s;
  }

  .nav-links ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    background: rgba(255, 107, 53, 0.05);
    margin-bottom: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .nav-links ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 107, 53, 0.2) 50%,
      transparent 100%
    );
    transition: left 0.6s ease;
  }

  .nav-links ul li a:hover::before {
    left: 100%;
  }

  .nav-links ul li a:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: var(--color-orange);
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3),
                inset 0 0 20px rgba(255, 107, 53, 0.1);
  }

  .nav-links ul li a .link-bracket {
    opacity: 1;
    font-size: 1.2rem;
  }

  .nav-links ul li a:hover .link-bracket {
    color: var(--color-orange);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
  }

  /* Contact link - no special styling on mobile, same as other links */

  /* Close on overlay click */
  .nav-links::before {
    cursor: pointer;
  }

  /* Responsive Navbar Adjustments */
  .premium-nav .nav-bracket {
    width: 30px;
    height: 30px;
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }

  .logo-wrapper .logo {
    width: 100px;
  }

  /* Ensure footer stays below navbar */
  footer {
    z-index: 0 !important;
  }

  footer * {
    z-index: auto !important;
  }
}

/* Smaller Mobile Devices */
@media (max-width: 480px) {
  .nav-links {
    width: 100%;
    max-width: 100vw;
    border-left: none;
    padding: 90px 1.5rem 2rem;
  }

  .nav-links ul li a {
    padding: 1.1rem 1.25rem;
    font-size: 1rem;
  }


  .premium-nav .nav-bracket {
    display: none;
  }

  .nav-container {
    padding: 0.875rem 1rem;
  }

  .logo-wrapper .logo {
    width: 90px;
  }

  .toggle-button {
    width: 28px;
    height: 22px;
  }

  .toggle-button .bar:nth-child(2) {
    top: 9px;
  }

  .toggle-button .bar:nth-child(3) {
    top: 18px;
  }

  .toggle-button.active .bar:nth-child(1),
  .toggle-button.active .bar:nth-child(3) {
    top: 9px;
  }

  /* Ensure footer stays below navbar */
  footer {
    z-index: 0 !important;
  }

  footer * {
    z-index: auto !important;
  }
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
