/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Orbitron', 'Audiowide', 'Press Start 2P', Arial, sans-serif;
  background: #0a0a23;
  color: #fff;
  min-height: 100vh;
  line-height: 1.5;
}

/* Glassmorphism Navbar */
.navbar {
  background: rgba(10, 10, 35, 0.55);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid rgba(0,255,231,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo text styling */
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.logo-text {
  font-family: 'Audiowide', 'Orbitron', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: #00ffe7;
  text-shadow: 0 2px 16px #00ffe7a0, 0 0 2px #fff;
  background: linear-gradient(90deg, #00ffe7 30%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  transition: color 0.2s;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px #00ffe7a0);
}

/* Navbar links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}
.nav-link {
  color: #fff;
  text-decoration: none;
  font-family: 'Press Start 2P', monospace;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
  padding: 0.3em 0.2em;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-link.active,
.nav-link:hover {
  color: #0a0a23;
  background: linear-gradient(90deg, #00ffe7 0%, #0ff 100%);
  box-shadow: 0 2px 12px #00ffe744;
}
.nav-link.active::after,
.nav-link:hover::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #00ffe7 0%, #0ff 100%);
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -4px;
  border-radius: 3px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 0.3em;
  transition: background 0.2s;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #00ffe7;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.active,
.hamburger:hover {
  background: rgba(0,255,231,0.08);
}

/* Hero section */
#hero {
  padding: 5rem 0 2.5rem 0;
  background: linear-gradient(120deg, #0a0a23 60%, #1a1a40 100%);
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  left: 10%;
  top: 10%;
  width: 80vw;
  height: 80vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle at 60% 40%, #00ffe733 0%, transparent 80%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.hero-left {
  flex: 1 1 350px;
}
.hero-left h1 {
  font-size: 3.2rem;
  font-family: 'Audiowide', 'Orbitron', sans-serif;
  color: #00ffe7;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 16px #00ffe7, 0 0 32px #0ff, 0 2px 8px #fff2;
  letter-spacing: 0.04em;
  line-height: 1.1;
  background: linear-gradient(90deg, #00ffe7 60%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-left p {
  font-size: 1.25rem;
  margin-bottom: 2.2rem;
  color: #e0e0e0;
  text-shadow: 0 1px 8px #00ffe744;
}
.cta-btn {
  display: inline-block;
  padding: 1.1rem 2.6rem;
  background: linear-gradient(90deg, #00ffe7 0%, #0ff 100%);
  color: #0a0a23;
  font-family: 'Press Start 2P', monospace;
  font-size: 1.18rem;
  border: none;
  border-radius: 40px;
  box-shadow: 0 6px 32px #00ffe7a0, 0 2px 8px #fff2;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}
.cta-btn::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, #fff8 0%, transparent 70%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 0;
}
.cta-btn:hover::before {
  opacity: 0.18;
  transform: translate(-50%, -50%) scale(1);
}
.cta-btn:hover {
  background: linear-gradient(90deg, #0ff 0%, #00ffe7 100%);
  color: #0a0a23;
  transform: translateY(-3px) scale(1.045);
  box-shadow: 0 10px 40px #00ffe7cc, 0 2px 8px #fff3;
}

.hero-right {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  z-index: 2;
}
.hero-svg {
  width: 340px;
  max-width: 100%;
  z-index: 1;
  filter: drop-shadow(0 0 32px #00ffe7a0) drop-shadow(0 2px 8px #fff2);
  border-radius: 24px;
  background: rgba(255,255,255,0.01);
  box-shadow: 0 4px 32px #00ffe722;
  transition: box-shadow 0.2s;
}
.hero-svg:hover {
  box-shadow: 0 8px 48px #00ffe7cc, 0 2px 8px #fff3;
}
.decor-svg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.neon-blob {
  top: 60px;
  left: -40px;
  width: 120px;
  animation: blob-move 6s infinite alternate ease-in-out;
  filter: blur(2px) brightness(1.2);
}
.sparkle {
  bottom: 30px;
  right: -30px;
  width: 60px;
  animation: sparkle-fade 2.5s infinite alternate;
  filter: blur(0.5px) brightness(1.4);
}

@keyframes blob-move {
  0% { transform: scale(1) translateY(0);}
  100% { transform: scale(1.1) translateY(20px);}
}
@keyframes sparkle-fade {
  0% { opacity: 0.7; transform: scale(1);}
  100% { opacity: 1; transform: scale(1.2);}
}

/* Responsive styles */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-left h1 {
    font-size: 2.2rem;
  }
  .hero-svg {
    width: 220px;
  }
}
@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 1rem;
    background: #18183a;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px #00ffe744;
    z-index: 200;
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .nav-container {
    padding: 0.75rem 1rem;
  }
  .hero-left h1 {
    font-size: 1.45rem;
  }
  .hero-svg {
    width: 150px;
  }
  .logo-text {
    font-size: 1rem;
  }
}
}

.cta-btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  background: var(--arcade-gradient);
  color: #3a2c4b;
  border: 2px solid var(--arcade-yellow);
  border-radius: 32px;
  padding: 0.85em 2.2em;
  box-shadow: 0 4px 24px 0 #cdb4db33;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s 0.4s, transform 0.8s 0.4s, background 0.3s;
}

.cta-btn:hover {
  background: linear-gradient(90deg, #fff3b0 0%, #ffcbf2 100%);
  color: #a259c6;
  transform: scale(1.07);
  box-shadow: 0 8px 32px 0 #cdb4db66;
  border-color: #cdb4db;
}

.hero-right {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  z-index: 2;
}

.hero-svg {
  width: 340px;
  max-width: 90vw;
  min-width: 180px;
  opacity: 0;
  transform: scale(0.95) translateY(30px);
  transition: opacity 1s 0.3s, transform 1s 0.3s;
}

.decor-svg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.blob-1 {
  left: -80px;
  top: 40%;
  width: 220px;
  opacity: 0.35;
  animation: floatBlob 7s ease-in-out infinite;
}

.sparkle {
  right: 8%;
  top: 18%;
  width: 48px;
  opacity: 0.7;
  animation: sparkleFloat 3.5s ease-in-out infinite;
}

@keyframes floatBlob {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-24px) scale(1.04);
  }
}
@keyframes sparkleFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.1);
  }
}

/* Animate on load */
.hero-left h1.visible,
.hero-left p.visible,
.cta-btn.visible,
.hero-svg.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 1rem 1.5rem 1rem;
  }
  .hero-right {
    margin-top: 2.5rem;
    width: 100%;
    justify-content: flex-start;
  }
  .hero-svg {
    width: 260px;
  }
  .blob-1 {
    left: -60px;
    top: 60%;
    width: 140px;
  }
}

@media (max-width: 600px) {
  .navbar {
    height: 56px;
  }
  #hero {
    margin-top: 56px;
    min-height: 80vh;
  }
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 0.5rem 1rem 0.5rem;
  }
  .hero-left h1 {
    font-size: 2rem;
  }
  .hero-left p {
    font-size: 1rem;
  }
  .hero-svg {
    width: 150px;
  }
  .blob-1 {
    left: -30px;
    top: 70%;
    width: 80px;
  }
}

/* Arcade Neon Variables */
:root {
  --arcade-black: #0d0d0d;
  --arcade-purple: #7f00ff;
  --arcade-pink: #ff00cc;
  --arcade-blue: #00f0ff;
  --arcade-glow: #ffffff22;
}

/* About Section */
#about {
  position: relative;
  padding: 5rem 0 4rem 0;
  background: linear-gradient(120deg, #18183a 60%, #23234a 100%);
  overflow: hidden;
}
.about-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.about-blob-svg {
  position: absolute;
  left: 10%;
  top: 10%;
  width: 70vw;
  max-width: 900px;
  opacity: 0.13;
  filter: blur(24px);
}
.about-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  padding: 0 2rem;
}
.about-left {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-svg {
  width: 260px;
  max-width: 100%;
  filter: drop-shadow(0 0 32px #00ffe7a0);
  border-radius: 18px;
  background: rgba(255,255,255,0.01);
  box-shadow: 0 4px 32px #00ffe722;
}
.about-right {
  flex: 2 1 400px;
  color: #fff;
}
.about-title {
  font-family: 'Orbitron', 'Audiowide', sans-serif;
  font-size: 2.1rem;
  color: #00ffe7;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px #00ffe7a0;
}
.about-headline {
  font-family: 'Audiowide', 'Orbitron', sans-serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 8px #00ffe744;
}
.about-text {
  font-size: 1.08rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  line-height: 1.7;
  text-shadow: 0 1px 8px #00ffe722;
}
.about-extra {
  color: #00ffe7;
  font-weight: bold;
  font-family: 'Press Start 2P', monospace;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 8px #00ffe7a0;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}
.stat {
  background: rgba(0,255,231,0.09);
  border: 1.5px solid #00ffe7;
  border-radius: 18px;
  padding: 1.1rem 2.2rem;
  box-shadow: 0 2px 16px #00ffe733;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
  position: relative;
  overflow: hidden;
}
.stat-number {
  font-family: 'Orbitron', 'Audiowide', sans-serif;
  font-size: 2.1rem;
  color: #00ffe7;
  text-shadow: 0 2px 12px #00ffe7a0;
  font-weight: bold;
  margin-bottom: 0.2rem;
  transition: color 0.2s;
}
.stat-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 8px #00ffe744;
}

/* Why Choose Us Section */
#why-us {
  position: relative;
  padding: 5rem 0 4rem 0;
  background: linear-gradient(120deg, #23234a 60%, #18183a 100%);
  overflow: hidden;
}
.why-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.why-blob-svg {
  position: absolute;
  right: 10%;
  top: 10%;
  width: 70vw;
  max-width: 900px;
  opacity: 0.13;
  filter: blur(24px);
}
.why-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.why-title {
  font-family: 'Orbitron', 'Audiowide', sans-serif;
  font-size: 2.1rem;
  color: #00ffe7;
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px #00ffe7a0;
  text-align: center;
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  justify-items: center;
  align-items: stretch;
}
.why-card {
  background: rgba(20, 20, 40, 0.92);
  border: 2.5px solid var(--arcade-blue);
  border-radius: 1.5rem;
  box-shadow:
    0 0 24px 0 var(--arcade-blue),
    0 2px 16px 0 var(--arcade-purple),
    0 0 0 2px transparent;
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  text-align: center;
  transition:
    box-shadow 0.25s cubic-bezier(.6,.2,.3,1),
    border-color 0.25s,
    transform 0.25s;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  position: relative;
  overflow: hidden;
}
.why-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.1s;
}
.why-card:hover {
  box-shadow:
    0 0 60px 0 var(--arcade-pink),
    0 2px 32px 0 var(--arcade-blue),
    0 0 0 4px var(--arcade-pink);
  border-color: var(--arcade-pink);
  transform: translateY(-10px) scale(1.07);
  z-index: 2;
}
.why-card:hover .why-icon {
  animation: why-icon-float 0.7s cubic-bezier(.6,.2,.3,1);
  filter: drop-shadow(0 0 32px var(--arcade-pink)) drop-shadow(0 0 12px var(--arcade-blue));
}
.why-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 0 12px var(--arcade-blue));
  transition: filter 0.25s, transform 0.25s;
}
@keyframes why-icon-float {
  0% { transform: scale(1);}
  40% { transform: scale(1.18) translateY(-8px);}
  60% { transform: scale(0.96) translateY(2px);}
  100% { transform: scale(1);}
}
.why-card-title {
  font-family: 'Orbitron', 'Audiowide', sans-serif;
  font-size: 1.25rem;
  color: var(--arcade-purple);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
  text-shadow: 0 0 8px var(--arcade-purple), 0 2px 8px #fff2;
  font-weight: 700;
}
.why-card-desc {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.4;
  text-shadow: 0 0 8px var(--arcade-glow);
  opacity: 0.92;
}

/* Responsive grid */
@media (max-width: 900px) {
  .why-cards {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .why-cards {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .why-title {
    font-size: 2rem;
  }
  .why-card {
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
}

/* Optional: Light sparkle particles */
.why-bg::after {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  pointer-events: none;
  background: url('assets/svg/why-sparkle.svg') repeat;
  opacity: 0.12;
  animation: sparkle-move 18s linear infinite;
}
@keyframes sparkle-move {
  0% { background-position: 0 0;}
  100% { background-position: 120px 80px;}
}
.why-card:hover {
  box-shadow:
    0 0 40px 0 var(--arcade-pink),
    0 2px 32px 0 var(--arcade-blue),
    0 0 0 3px var(--arcade-pink);
  border-color: var(--arcade-pink);
  transform: translateY(-10px) scale(1.04);
}
.why-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 0 12px var(--arcade-blue));
  transition: filter 0.25s, transform 0.25s;
}
.why-card:hover .why-icon,
.why-icon.pulse {
  filter: drop-shadow(0 0 24px var(--arcade-pink)) drop-shadow(0 0 8px var(--arcade-blue));
  animation: why-icon-pulse 0.7s;
}
@keyframes why-icon-pulse {
  0% { transform: scale(1);}
  40% { transform: scale(1.18);}
  60% { transform: scale(0.96);}
  100% { transform: scale(1);}
}
.why-card-title {
  font-family: 'Orbitron', 'Audiowide', sans-serif;
  font-size: 1.25rem;
  color: var(--arcade-purple);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
  text-shadow: 0 0 8px var(--arcade-purple), 0 2px 8px #fff2;
  font-weight: 700;
}
.why-card-desc {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.4;
  text-shadow: 0 0 8px var(--arcade-glow);
  opacity: 0.92;
}

/* Responsive grid */
@media (max-width: 900px) {
  .why-cards {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.2rem;
  }
}
@media (max-width: 600px) {
  .why-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem 0;
  }
  .why-title {
    font-size: 2rem;
  }
  .why-card {
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
}

/* Optional: Light sparkle particles */
.why-bg::after {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  pointer-events: none;
  background: url('assets/svg/why-sparkle.svg') repeat;
  opacity: 0.12;
  animation: sparkle-move 18s linear infinite;
}

/* Services Section */
#services {
  background: linear-gradient(120deg, #18183a 60%, #23234a 100%);
  position: relative;
  padding: 5rem 0 4rem 0;
  overflow: hidden;
}
.services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.services-blob-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 900px;
  max-width: 120vw;
  min-width: 400px;
  transform: translate(-50%, -50%);
  opacity: 0.18;
  filter: blur(2px) brightness(1.2);
  z-index: 0;
}
.services-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.services-title {
  font-family: 'Orbitron', 'Press Start 2P', monospace;
  font-size: 2.2rem;
  color: var(--arcade-blue);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.06em;
  text-shadow: 0 0 18px var(--arcade-blue), 0 2px 12px var(--arcade-glow);
  font-weight: 900;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}
.services-title.visible {
  opacity: 1;
  transform: translateY(0);
}
.services-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem 2.2rem;
  justify-items: center;
  align-items: stretch;
}
.services-card {
  background: rgba(20, 20, 40, 0.92);
  border: 2.5px solid var(--arcade-blue);
  border-radius: 1.5rem;
  box-shadow: 0 0 24px 0 var(--arcade-blue), 0 2px 16px 0 var(--arcade-purple);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.services-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.1s;
}
.services-card:hover {
  box-shadow: 0 0 60px 0 var(--arcade-pink), 0 2px 32px 0 var(--arcade-blue), 0 0 0 4px var(--arcade-pink);
  border-color: var(--arcade-pink);
  transform: translateY(-10px) scale(1.07);
  z-index: 2;
}
.services-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 0 12px var(--arcade-blue));
  transition: filter 0.25s, transform 0.25s;
}
.services-card:hover .services-icon {
  animation: why-icon-float 0.7s cubic-bezier(.6,.2,.3,1);
  filter: drop-shadow(0 0 32px var(--arcade-pink)) drop-shadow(0 0 12px var(--arcade-blue));
}
@keyframes why-icon-float {
  0% { transform: scale(1);}
  40% { transform: scale(1.18) translateY(-8px);}
  60% { transform: scale(0.96) translateY(2px);}
  100% { transform: scale(1);}
}
.services-card-title {
  font-family: 'Orbitron', 'Press Start 2P', monospace;
  font-size: 1.25rem;
  color: var(--arcade-purple);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
  text-shadow: 0 0 8px var(--arcade-purple), 0 2px 8px #fff2;
  font-weight: 700;
}
.services-card-desc {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.4;
  text-shadow: 0 0 8px var(--arcade-glow);
  opacity: 0.92;
  font-family: 'Quicksand', 'Poppins', Arial, sans-serif;
  font-weight: 500;
}

/* Responsive grid for services */
@media (max-width: 900px) {
  .services-cards {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 700px) {
  #services {
    padding: 2.5rem 0 2rem 0;
  }
  .services-content {
    padding: 0 0.5rem;
  }
  .services-cards {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .services-title {
    font-size: 1.5rem;
  }
  .services-card {
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
}

/* Contact Us Section */
#contact {
  background: linear-gradient(120deg, #0d0d0d 60%, #181828 100%);
  position: relative;
  padding: 5rem 0 4rem 0;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    135deg,
    #181828 0 2px,
    transparent 2px 40px
  );
  opacity: 0.13;
}
.contact-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 3.5rem;
  align-items: flex-start;
  justify-content: center;
}
.contact-left, .contact-right {
  flex: 1 1 350px;
  min-width: 0;
}
.contact-heading {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}
.contact-mail-icon {
  filter: drop-shadow(0 0 12px var(--arcade-blue));
  animation: mail-float 2.5s ease-in-out infinite alternate;
}
@keyframes mail-float {
  0% { transform: translateY(0);}
  100% { transform: translateY(-10px);}
}
.contact-title {
  font-family: 'Orbitron', 'Press Start 2P', monospace;
  font-size: 2rem;
  color: var(--arcade-blue);
  letter-spacing: 0.06em;
  text-shadow: 0 0 18px var(--arcade-blue), 0 2px 12px var(--arcade-glow);
  font-weight: 900;
}
.contact-subtitle {
  font-family: 'Quicksand', 'Poppins', Arial, sans-serif;
  color: #fff;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  text-shadow: 0 1px 8px var(--arcade-blue);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.2rem;
}
.form-group {
  position: relative;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.1rem 1rem 0.7rem 1rem;
  background: rgba(20, 20, 40, 0.85);
  border: 2px solid var(--arcade-glow);
  border-radius: 1rem;
  color: #fff;
  font-family: 'Quicksand', 'Poppins', Arial, sans-serif;
  font-size: 1.08rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 0 0 0 var(--arcade-blue);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--arcade-blue);
  box-shadow: 0 0 12px 0 var(--arcade-blue);
}
.form-group label {
  position: absolute;
  left: 1.1rem;
  top: 1.1rem;
  color: #aaa;
  font-size: 1rem;
  font-family: 'Orbitron', 'Press Start 2P', monospace;
  pointer-events: none;
  background: transparent;
  transition: 0.2s;
  opacity: 0.8;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.7rem;
  left: 0.8rem;
  font-size: 0.85rem;
  color: var(--arcade-blue);
  opacity: 1;
  background: #0d0d0d;
  padding: 0 0.3em;
  border-radius: 0.3em;
}
.contact-btn {
  margin-top: 0.5rem;
  padding: 1rem 2.2rem;
  font-family: 'Orbitron', 'Press Start 2P', monospace;
  font-size: 1.1rem;
  color: #fff;
  background: transparent;
  border: 2px solid var(--arcade-blue);
  border-radius: 2em;
  box-shadow: 0 0 18px var(--arcade-blue);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.contact-btn:hover, .contact-btn:focus {
  background: var(--arcade-blue);
  color: #0d0d0d;
  border-color: var(--arcade-pink);
  box-shadow: 0 0 32px var(--arcade-pink), 0 2px 8px #fff3;
  transform: scale(1.04);
}
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: flex-start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: #fff;
  font-family: 'Quicksand', 'Poppins', Arial, sans-serif;
  font-size: 1.08rem;
  text-shadow: 0 1px 8px var(--arcade-blue);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}
.info-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.info-icon {
  filter: drop-shadow(0 0 10px var(--arcade-blue));
  transition: filter 0.2s, transform 0.2s;
}
.info-item:hover .info-icon {
  filter: drop-shadow(0 0 18px var(--arcade-pink));
  transform: scale(1.15);
}
.contact-illustration {
  margin-top: 2.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
.contact-anim {
  width: 180px;
  height: 120px;
  animation: envelope-float 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 18px var(--arcade-blue));
}
@keyframes envelope-float {
  0% { transform: translateY(0);}
  100% { transform: translateY(-14px);}
}

/* Contact Section Entrance Animation */
#contact .contact-content {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s, transform 0.8s;
}
#contact.visible .contact-content {
  opacity: 1;
  transform: translateY(0);
}
#contact .info-item {
  transition-delay: 0.2s;
}
#contact.visible .info-item {
  transition-delay: 0.4s;
}

/* Responsive Contact Section */
@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
  }
  .contact-left, .contact-right {
    width: 100%;
    min-width: 0;
  }
  .contact-illustration {
    margin-top: 1.5rem;
  }
}
@media (max-width: 600px) {
  #contact {
    padding: 2.5rem 0 2rem 0;
  }
  .contact-content {
    padding: 0 0.5rem;
  }
  .contact-title {
    font-size: 1.2rem;
  }
  .contact-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
  .contact-anim {
    width: 120px;
    height: 80px;
  }
}

/* Arcade Neon Footer */
.arcade-footer {
  background: var(--arcade-bg, #0d0d0d);
  position: relative;
  overflow: hidden;
  padding-top: 0;
  font-family: 'Press Start 2P', 'Orbitron', Arial, sans-serif;
  color: var(--arcade-white, #ffffffcc);
  border-top: 2px solid var(--arcade-footer-border, #ffffff22);
}
.footer-glow-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    135deg,
    #181828 0 2px,
    transparent 2px 40px
  );
  opacity: 0.13;
  animation: footer-bg-move 18s linear infinite;
}
@keyframes footer-bg-move {
  0% { background-position: 0 0;}
  100% { background-position: 120px 80px;}
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 2rem 1.2rem 2rem;
  position: relative;
  z-index: 1;
}
.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.2rem;
}
.footer-brand {
  align-items: flex-start;
  gap: 1.2rem;
}
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.footer-logo-svg {
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 0 18px var(--arcade-glow-blue, #00f0ff));
  transition: filter 0.3s;
  animation: footer-logo-glow 2.5s infinite alternate;
}
@keyframes footer-logo-glow {
  0% { filter: drop-shadow(0 0 12px #00f0ff) drop-shadow(0 0 2px #7f00ff);}
  100% { filter: drop-shadow(0 0 32px #7f00ff) drop-shadow(0 0 8px #00f0ff);}
}
.footer-logo-link:hover .footer-logo-svg {
  filter: drop-shadow(0 0 32px #ff00cc) drop-shadow(0 0 8px #00f0ff);
}
.footer-logo-text {
  font-family: 'Orbitron', 'Press Start 2P', Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--arcade-blue, #00f0ff);
  letter-spacing: 0.08em;
  text-shadow: 0 0 12px var(--arcade-blue, #00f0ff), 0 2px 8px #fff2;
  font-weight: bold;
  white-space: nowrap;
}
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-start;
}
.footer-link {
  color: var(--arcade-white, #ffffffcc);
  text-decoration: none;
  font-size: 1rem;
  font-family: 'Orbitron', 'Press Start 2P', Arial, sans-serif;
  letter-spacing: 0.04em;
  transition: color 0.2s, text-shadow 0.2s;
  text-shadow: 0 0 8px var(--arcade-glow-blue, #00f0ff);
  position: relative;
}
.footer-link:hover {
  color: var(--arcade-pink, #ff00cc);
  text-shadow: 0 0 16px var(--arcade-pink, #ff00cc);
}
.footer-socials {
  display: flex;
  gap: 1.1rem;
  margin-top: 1.2rem;
}
.footer-social svg {
  display: block;
  width: 28px;
  height: 28px;
  transition: filter 0.2s, transform 0.2s;
  filter: drop-shadow(0 0 8px var(--arcade-blue, #00f0ff));
}
.footer-social:hover svg {
  filter: drop-shadow(0 0 18px var(--arcade-pink, #ff00cc)) drop-shadow(0 0 8px var(--arcade-blue, #00f0ff));
  transform: scale(1.13);
}
.footer-contact {
  gap: 0.7rem;
  font-size: 1rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-family: 'Orbitron', 'Press Start 2P', Arial, sans-serif;
  color: var(--arcade-white, #ffffffcc);
  text-shadow: 0 0 8px var(--arcade-glow-blue, #00f0ff);
  font-size: 1rem;
}
.footer-contact-label {
  font-size: 1.2em;
  color: var(--arcade-pink, #ff00cc);
  text-shadow: 0 0 8px var(--arcade-pink, #ff00cc);
  min-width: 1.5em;
  text-align: center;
}
.footer-contact-text {
  font-size: 1em;
  color: var(--arcade-white, #ffffffcc);
  word-break: break-word;
}
.footer-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #7f00ff 40%, #00f0ff 60%, transparent 100%);
  margin: 0.5rem 0 0.5rem 0;
  opacity: 0.5;
}
.footer-bottom {
  text-align: center;
  color: var(--arcade-white, #ffffffcc);
  font-size: 0.95rem;
  padding: 0.7rem 0 1.2rem 0;
  letter-spacing: 0.03em;
  text-shadow: 0 0 8px var(--arcade-glow-blue, #00f0ff);
  border-top: 1px solid var(--arcade-footer-border, #ffffff22);
  background: transparent;
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2.2rem 1rem 1.2rem 1rem;
  }
  .footer-brand {
    align-items: flex-start;
  }
}
@media (max-width: 700px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .footer-logo-svg {
    width: 40px;
    height: 40px;
  }
  .footer-logo-text {
    font-size: 1rem;
  }
  .footer-contact {
    font-size: 0.95rem;
  }
  .footer-contact-label {
    font-size: 1em;
  }
}

/* Fade/slide in animation for footer */
.arcade-footer {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(.6,.2,.3,1), transform 0.8s cubic-bezier(.6,.2,.3,1);
}
.arcade-footer.visible {
  opacity: 1;
  transform: translateY(0);
}
