@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  /* Dark Neon Gaming Theme Colors */
  --bg-dark: #07070e;
  --bg-card: rgba(18, 18, 31, 0.6);
  --bg-card-hover: rgba(26, 26, 43, 0.8);
  
  --text-main: #f0f0ff;
  --text-muted: #a0a0c0;
  
  --neon-green: #00ff88;
  --neon-green-dim: rgba(0, 255, 136, 0.15);
  --neon-cyan: #00f0ff;
  --neon-cyan-dim: rgba(0, 240, 255, 0.15);
  --neon-purple: #9d4edd;
  --neon-purple-dim: rgba(157, 78, 221, 0.15);
  
  --whatsapp-color: #25d366;
  --whatsapp-hover: #1ebc5a;
  
  /* Neumorphism/Glassmorphism shadows */
  --shadow-base: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glass: inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -1px 1px rgba(0, 0, 0, 0.4);
  --shadow-glow-green: 0 0 20px var(--neon-green-dim), inset 0 0 15px rgba(0, 255, 136, 0.1);
  --shadow-glow-cyan: 0 0 20px var(--neon-cyan-dim), inset 0 0 15px rgba(0, 240, 255, 0.1);
  --shadow-glow-purple: 0 0 20px var(--neon-purple-dim), inset 0 0 15px rgba(157, 78, 221, 0.1);
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  --transition-fast: 0.2s ease;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-cyan) var(--bg-dark);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--neon-green), var(--neon-cyan));
}

::selection {
  background: var(--neon-cyan-dim);
  color: #fff;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.8; /* Increased for better mobile readability */
  overflow-x: hidden;
  position: relative;
  width: 100%;
}
p {
  margin-bottom: 1.2rem;
}


/* Subtle background grid pattern for tech feel */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -1;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-shadow: 0 0 8px var(--neon-cyan-dim);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--border-radius-md);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.btn-whatsapp {
  background: var(--whatsapp-color);
  color: #fff;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(37, 211, 102, 0.8);
  animation: wa-pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transform: translateY(-3px) scale(1.02);
  color: #fff;
  animation: none; /* stop pulse on hover */
}

.btn-outline-cyan {
  background: rgba(0, 240, 255, 0.05);
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  box-shadow: var(--shadow-glow-cyan);
  backdrop-filter: blur(5px);
}

.btn-outline-cyan:hover {
  background: var(--neon-cyan-dim);
  box-shadow: 0 0 25px var(--neon-cyan), inset 0 0 15px rgba(0, 240, 255, 0.4);
  transform: translateY(-3px) scale(1.02);
  color: #fff;
}

/* Cards (Advanced Glassmorphism) */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-base), var(--shadow-glass);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--neon-cyan) 0%, transparent 40%, transparent 60%, var(--neon-green) 100%);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-slow);
  border-radius: calc(var(--border-radius-lg) + 2px);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 2px;
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-20deg);
  transition: var(--transition-slow);
  z-index: 0;
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-8px) scale(1.01);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), var(--shadow-glow-cyan);
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card:hover::after {
  left: 200%;
  transition: left 0.8s ease-in-out;
}

.glass-card > * {
  position: relative;
  z-index: 2;
}

/* Typography classes */
.text-gradient {
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Grid System */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } /* Auto-fit handles responsive */
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* Navbar updated for direct header layout */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(7, 7, 14, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
  height: auto !important;
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.navbar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.85rem;
}
.header-wa-btn {
  padding: 8px 16px;
  font-size: 0.95rem;
}

.desktop-nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
  padding-bottom: 15px;
  padding-top: 5px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.logo-text-sat {
  color: var(--neon-green);
}

.nav-link {
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green));
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--shadow-glow-cyan);
}

.nav-link:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan-dim);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--neon-cyan);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: var(--transition);
}

.hamburger:hover {
  color: var(--neon-cyan);
}

/* Floating WhatsApp Button */
.fab-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--whatsapp-color);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.fab-whatsapp:hover {
  transform: scale(1.1) rotate(10deg);
  color: white;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease-out; /* Faster animations */
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Accordion SSS */
.accordion-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover {
  border-color: rgba(0, 240, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.accordion-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  transition: var(--transition);
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.02);
  color: var(--neon-cyan);
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.4s ease;
  color: var(--text-muted);
}

.accordion-item.active {
  border-color: var(--neon-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.accordion-item.active .accordion-content {
  padding: 0 20px 20px;
}

.accordion-item.active .accordion-header {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan-dim);
}

.accordion-icon {
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  color: var(--text-muted);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--neon-cyan);
}

/* Footer */
.footer {
  background: rgba(5, 5, 10, 0.95);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
  box-shadow: 0 0 10px var(--neon-purple);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
}

.footer-col ul li a:hover {
  color: var(--neon-cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Premium Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; 
  right: -100%;
  width: 100%; 
  height: 100vh;
  background: rgba(10, 10, 20, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-header .logo {
  font-size: 1.5rem;
}

.close-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: var(--transition);
}

.close-btn:hover {
  color: var(--neon-cyan);
  transform: rotate(90deg);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 20px;
  flex-grow: 1;
}

.mobile-nav-links .nav-link {
  font-size: 1.25rem;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: block;
  color: var(--text-main);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav-links .nav-link::after {
  display: none; /* Hide the underline effect from desktop */
}

.mobile-menu.active .mobile-nav-links .nav-link {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for nav links */
.mobile-menu.active .mobile-nav-links .nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links .nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-links .nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links .nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-links .nav-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-links .nav-link:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-nav-links .nav-link:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-nav-links .nav-link:nth-child(8) { transition-delay: 0.45s; }
.mobile-menu.active .mobile-nav-links .nav-link:nth-child(9) { transition-delay: 0.5s; }
.mobile-menu.active .mobile-nav-links .nav-link:nth-child(10) { transition-delay: 0.55s; }

.mobile-nav-links .nav-link:hover, .mobile-nav-links .nav-link.active {
  color: var(--neon-cyan);
  padding-left: 10px; /* slight indent on hover */
}

.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
}

.w-100 {
  width: 100%;
}

/* Specific Sections */
.hero {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 180px; /* navbar + banner height */
  padding-bottom: 60px;
}

.hero-content {
  text-align: left;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  max-width: 90%;
  transform: scale(1);
  filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.4));
  animation: float 6s ease-in-out infinite, neon-pulse 4s ease-in-out infinite alternate;
  position: relative;
  z-index: 2;
}

@keyframes float {
  0% { transform: scale(1) translateY(0px) rotate(0deg); }
  50% { transform: scale(1.02) translateY(-15px) rotate(1deg); }
  100% { transform: scale(1) translateY(0px) rotate(0deg); }
}

@keyframes neon-pulse {
  0% { filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3)) drop-shadow(0 0 10px rgba(0, 240, 255, 0.2)); }
  100% { filter: drop-shadow(0 0 50px rgba(0, 255, 136, 0.8)) drop-shadow(0 0 30px rgba(0, 240, 255, 0.6)); }
}

/* Glow orb effects behind hero */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--neon-purple) 0%, transparent 60%);
  opacity: 0.15;
  filter: blur(80px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  animation: orb-float 10s ease-in-out infinite alternate;
}

.hero-glow-right {
  right: -150px;
  background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 60%);
  animation-delay: -5s;
}

.hero-glow-left {
  left: -150px;
  background: radial-gradient(circle, var(--neon-green) 0%, transparent 60%);
}

@keyframes orb-float {
  0% { transform: translateY(-50%) scale(1); opacity: 0.15; }
  100% { transform: translateY(-40%) scale(1.2); opacity: 0.25; }
}

/* Responsive */
@media (max-width: 991px) {
  .desktop-nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .navbar-top {
    margin-bottom: 0;
    padding-bottom: 10px;
  }
  .d-none-mobile {
    display: none !important;
  }
  
  .hero-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .hero-content {
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-image {
    max-width: 80%;
    margin-top: 30px;
  }
  @keyframes float {
    0% { transform: scale(1) translateY(0px); }
    50% { transform: scale(1) translateY(-10px); }
    100% { transform: scale(1) translateY(0px); }
  }
  .header-call-btn span {
    display: none; /* Hide text on small screens, keep icon */
  }
  /* Fix layout spacing for mobile */
  h1 { font-size: 2.2rem !important; }
  h2 { font-size: 1.8rem; }
  section { padding: 50px 0; }
}

@media (max-width: 480px) {
  .header-call-btn {
    padding: 6px 10px;
  }
  .header-wa-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
}

/* Keyword Cloud */
.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 20px;
}
.keyword-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.keyword-pill:hover {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.05);
}

