/* Template 25 - Futuristic Hologram */
@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;600;800&family=Electrolize&display=swap");

:root {
  --neon-cyan: #00ffff;
  --neon-pink: #ff00ff;
  --electric-blue: #0080ff;
  --deep-space: #0a0a1a;
  --space-purple: #1a0a2e;
  --holo-white: #e0f4ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Exo 2", sans-serif;
  line-height: 1.6;
  color: var(--holo-white);
  background: var(--deep-space);
  font-weight: 300;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 255, 255, 0.03) 2px,
      rgba(0, 255, 255, 0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255, 0, 255, 0.03) 2px,
      rgba(255, 0, 255, 0.03) 4px
    ), radial-gradient(circle at 50% 50%, rgba(0, 128, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Holographic Header */
.site-header {
  background: linear-gradient(135deg, rgba(10, 10, 26, 0.9) 0%, rgba(26, 10, 46, 0.9) 100%);
  border-bottom: 2px solid var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo a {
  font-family: "Electrolize", sans-serif;
  font-size: 2rem;
  color: var(--neon-cyan);
  text-decoration: none;
  text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 30px var(--electric-blue);
  letter-spacing: 3px;
  transition: all 0.3s ease;
  font-weight: 400;
}

.site-logo a:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink);
  transform: scale(1.05);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.site-nav a {
  color: var(--holo-white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--electric-blue);
  background: rgba(0, 128, 255, 0.1);
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-nav a:hover {
  background: rgba(0, 255, 255, 0.2);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
  animation: holoRotate 10s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes holoRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.section.head h1 {
  font-family: "Electrolize", sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, var(--neon-cyan) 0%, var(--neon-pink) 50%, var(--electric-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  animation: glitchText 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes glitchText {
  0%,
  90%,
  100% {
    transform: translateX(0);
  }
  92% {
    transform: translateX(-2px);
  }
  94% {
    transform: translateX(2px);
  }
  96% {
    transform: translateX(-2px);
  }
}

.section.head p {
  font-size: 1.3rem;
  color: var(--holo-white);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Section Styling */
.section {
  padding: 5rem 0;
  position: relative;
}

.section header {
  text-align: center;
  margin-bottom: 4rem;
}

.section header h2 {
  font-family: "Electrolize", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 20px var(--neon-cyan);
  letter-spacing: 2px;
}

.section header p {
  font-size: 1.2rem;
  color: var(--holo-white);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, rgba(10, 10, 26, 0.95) 0%, rgba(26, 10, 46, 0.95) 100%);
  padding: 3rem 0 1rem;
  border-top: 2px solid var(--neon-pink);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
  margin-top: 5rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: var(--holo-white);
  line-height: 1.8;
  opacity: 0.8;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--holo-white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 255, 0.3);
}

.copyright a {
  color: var(--electric-blue);
  font-size: 0.9rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: holoFade 1s ease forwards;
}

@keyframes holoFade {
  0% {
    opacity: 0;
    transform: translateZ(-50px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
}

.fade-in:nth-child(1) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.4s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.6s;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-size: 1.8rem;
  color: var(--neon-pink);
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: left;
  text-shadow: 0 0 10px var(--neon-pink);
}
