/* ============================================
   WAVE CONCEPT - PREMIUM EVENT BRAND STYLES
   ============================================ */

/* CSS Variables */
:root {
  --deep-ocean: #0A1628;
  --electric-blue: #00D4FF;
  --icy-light: #7DD3FC;
  --white: #FFFFFF;
  --dark-surface: #0F2136;
  --accent-glow: #00B4D8;
  --text-muted: #94A3B8;
  --text-light: #CBD5E1;
  
  --gradient-ocean: linear-gradient(135deg, #0A1628 0%, #0F2744 50%, #0a2d4a 100%);
  --gradient-glow: linear-gradient(180deg, rgba(0,212,255,0.15) 0%, transparent 100%);
  --gradient-card: linear-gradient(145deg, rgba(15,33,54,0.8) 0%, rgba(10,22,40,0.9) 100%);
  
  --shadow-glow: 0 0 40px rgba(0,212,255,0.15);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.3);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.2);
  
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-full: 50px;
  
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--deep-ocean);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Padding */
section {
  padding: 120px 0;
  position: relative;
}

/* ============================================
   PREMIUM CINEMATIC WAVE TRANSITION (LEFT TO RIGHT)
   ============================================ */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.page-transition.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Dark overlay that dims the current page */
.transition-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.85) 60%, rgba(10,22,40,0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-transition.active .transition-overlay {
  opacity: 1;
}

/* Container for all wave layers */
.transition-waves-container {
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  display: flex;
}

.page-transition.active .transition-waves-container {
  animation: waves-sweep 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Individual wave layers */
.transition-wave-layer {
  position: absolute;
  top: 0;
  width: 60%;
  height: 100%;
  filter: blur(1px);
}

.transition-wave-layer.front {
  left: 0;
  background: linear-gradient(90deg, 
    rgba(0,212,255,0.95) 0%, 
    rgba(0,180,216,0.9) 30%,
    rgba(125,211,252,0.85) 60%,
    rgba(255,255,255,0.9) 100%
  );
  filter: blur(0px);
  z-index: 3;
}

.transition-wave-layer.middle {
  left: 5%;
  background: linear-gradient(90deg, 
    rgba(0,180,216,0.85) 0%, 
    rgba(0,150,200,0.8) 40%,
    rgba(100,200,255,0.75) 100%
  );
  filter: blur(2px);
  z-index: 2;
}

.transition-wave-layer.back {
  left: 10%;
  background: linear-gradient(90deg, 
    rgba(125,211,252,0.7) 0%, 
    rgba(0,212,255,0.6) 50%,
    rgba(0,100,150,0.5) 100%
  );
  filter: blur(6px);
  z-index: 1;
}

/* Wave edge glow effect */
.transition-wave-layer::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6));
  filter: blur(8px);
}

/* Shimmer effect on wave */
.transition-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,255,255,0.3) 20%,
    rgba(255,255,255,0.5) 40%,
    rgba(255,255,255,0.3) 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer-move 1s linear infinite;
  pointer-events: none;
}

@keyframes shimmer-move {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Particle splash effect at wave front */
.transition-splash {
  position: absolute;
  right: -50px;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 10;
}

.splash-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.splash-particle:nth-child(1) { top: 10%; animation: splash-float 0.8s ease-out infinite; }
.splash-particle:nth-child(2) { top: 25%; animation: splash-float 0.9s ease-out infinite 0.1s; }
.splash-particle:nth-child(3) { top: 40%; animation: splash-float 0.7s ease-out infinite 0.2s; }
.splash-particle:nth-child(4) { top: 55%; animation: splash-float 0.85s ease-out infinite 0.15s; }
.splash-particle:nth-child(5) { top: 70%; animation: splash-float 0.75s ease-out infinite 0.25s; }
.splash-particle:nth-child(6) { top: 85%; animation: splash-float 0.8s ease-out infinite 0.3s; }

@keyframes splash-float {
  0% { transform: translateX(0) translateY(0) scale(1); opacity: 0.8; }
  50% { transform: translateX(30px) translateY(-10px) scale(1.2); opacity: 0.5; }
  100% { transform: translateX(60px) translateY(5px) scale(0.5); opacity: 0; }
}

/* White reveal screen */
.transition-reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #e8f4f8 100%);
  opacity: 0;
  z-index: 5;
}

.page-transition.active .transition-reveal {
  animation: reveal-white 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

@keyframes reveal-white {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Logo that appears during transition */
.transition-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--deep-ocean);
  z-index: 20;
  opacity: 0;
  letter-spacing: 3px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-transition.active .transition-logo {
  animation: logo-appear 0.5s ease 0.4s forwards;
}

@keyframes logo-appear {
  0% { opacity: 0; transform: translate(-50%, -50%) translateY(20px); }
  100% { opacity: 1; transform: translate(-50%, -50%) translateY(0); }
}

/* Page content fade in after transition */
.page-content-wrapper {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.page-transition.active ~ .page-content-wrapper {
  opacity: 0;
  transform: translateY(-10px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .transition-wave-layer {
    width: 70%;
  }
  .transition-logo {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .page-transition.active .transition-waves-container {
    animation: waves-sweep 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  .transition-logo {
    font-size: 24px;
    letter-spacing: 2px;
  }
}
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--electric-blue), var(--icy-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse-glow 2s ease-in-out infinite;
}

.loading-wave {
  width: 200px;
  height: 40px;
  position: relative;
  overflow: hidden;
}

.loading-wave::before,
.loading-wave::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
  animation: wave-slide 2s linear infinite;
}

.loading-wave::after {
  animation-delay: -1s;
  opacity: 0.5;
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(0,212,255,0.5)); }
  50% { filter: drop-shadow(0 0 40px rgba(0,212,255,0.8)); }
}

@keyframes wave-slide {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 25px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 15px 0;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,212,255,0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--electric-blue), var(--accent-glow));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 20px rgba(0,212,255,0.3);
}

.nav-logo-text {
  background: linear-gradient(135deg, var(--white), var(--icy-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-light);
  position: relative;
  padding: 8px 0;
  transition: var(--transition-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--electric-blue);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

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

.nav-cta {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--electric-blue), var(--accent-glow));
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-ocean);
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,212,255,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: var(--dark-surface);
  padding: 100px 40px 40px;
  transition: right 0.4s ease;
  z-index: 999;
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}

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

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-menu a {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--electric-blue);
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  backdrop-filter: blur(5px);
}

.mobile-overlay.active {
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, var(--deep-ocean) 0%, #050d18 100%);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(0,212,255,0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 300px;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--white);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 15px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--electric-blue);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(0,212,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-blue);
  font-size: 18px;
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  background: var(--electric-blue);
  color: var(--deep-ocean);
  transform: translateY(-3px);
}

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

/* ============================================
   HERO SECTIONS
   ============================================ */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,212,255,0.15) 0%, transparent 60%);
}

.hero-bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--electric-blue);
  border-radius: 50%;
  opacity: 0.3;
  animation: float-particle 15s infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; top: 40%; animation-delay: 4s; }
.particle:nth-child(4) { left: 50%; top: 60%; animation-delay: 1s; }
.particle:nth-child(5) { left: 70%; top: 30%; animation-delay: 3s; }
.particle:nth-child(6) { left: 80%; top: 70%; animation-delay: 5s; }
.particle:nth-child(7) { left: 90%; top: 50%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 15%; top: 90%; animation-delay: 4.5s; }

@keyframes float-particle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  25% { transform: translateY(-30px) translateX(10px); opacity: 0.6; }
  50% { transform: translateY(-60px) translateX(-10px); opacity: 0.3; }
  75% { transform: translateY(-30px) translateX(15px); opacity: 0.5; }
}

.hero-content-center {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-title-main {
  font-size: 80px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--white) 0%, var(--electric-blue) 50%, var(--icy-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle-main {
  font-size: 24px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--electric-blue), var(--accent-glow));
  color: var(--deep-ocean);
  box-shadow: 0 10px 30px rgba(0,212,255,0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,212,255,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(0,212,255,0.3);
}

.btn-secondary:hover {
  background: rgba(0,212,255,0.1);
  border-color: var(--electric-blue);
  transform: translateY(-4px);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-glow:hover::before {
  left: 100%;
}

/* ============================================
   CARDS
   ============================================ */
.glass-card {
  background: linear-gradient(145deg, rgba(15,33,54,0.6) 0%, rgba(10,22,40,0.8) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,212,255,0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.glass-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,212,255,0.3);
  box-shadow: var(--shadow-glow);
}

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

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--electric-blue), var(--accent-glow));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0,212,255,0.3);
}

.card-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--white);
}

.card-description {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ============================================
   WAVE DIVIDER
   ============================================ */
.wave-divider {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.wave-divider svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wave-divider .wave-1 {
  animation: wave-move 20s linear infinite;
}

.wave-divider .wave-2 {
  animation: wave-move 15s linear infinite reverse;
  opacity: 0.5;
}

.wave-divider .wave-3 {
  animation: wave-move 25s linear infinite;
  opacity: 0.3;
}

@keyframes wave-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================
   SECTION TITLES
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--white), var(--electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--deep-ocean);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,212,255,0.08) 0%, transparent 50%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.about-content h2 {
  font-size: 44px;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-content p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-light);
  font-weight: 600;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,212,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-blue);
}

.about-visual {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--dark-surface), var(--deep-ocean));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  border: 1px solid rgba(0,212,255,0.2);
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--electric-blue), transparent);
  animation: rotate-glow 8s linear infinite;
  opacity: 0.3;
}

@keyframes rotate-glow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us-section {
  background: linear-gradient(180deg, var(--deep-ocean) 0%, #050d18 100%);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-us-card {
  padding: 40px 30px;
}

.why-us-card .card-icon {
  width: 80px;
  height: 80px;
  font-size: 36px;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.stats-section {
  background: var(--dark-surface);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300D4FF' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--electric-blue);
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.stat-suffix {
  font-size: 32px;
  margin-left: 5px;
}

.stat-label {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-preview-section {
  background: var(--deep-ocean);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.event-card {
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,212,255,0.1);
  transition: var(--transition-smooth);
}

.event-card:hover {
  transform: translateY(-10px);
  border-color: var(--electric-blue);
  box-shadow: var(--shadow-glow);
}

.event-image {
  height: 220px;
  background: linear-gradient(135deg, var(--dark-surface), var(--deep-ocean));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  position: relative;
  overflow: hidden;
}

.event-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 50%, rgba(0,212,255,0.1) 100%);
}

.event-content {
  padding: 30px;
}

.event-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.event-description {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.event-tag {
  padding: 6px 14px;
  background: rgba(0,212,255,0.1);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--electric-blue);
  font-weight: 600;
}

.event-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--electric-blue);
  font-weight: 700;
  transition: gap 0.3s;
}

.event-link:hover {
  gap: 15px;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-preview-section {
  background: linear-gradient(180deg, var(--deep-ocean) 0%, var(--dark-surface) 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(0,212,255,0.1);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0,212,255,0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--electric-blue);
}

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

.team-avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--electric-blue), var(--accent-glow));
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  box-shadow: 0 10px 40px rgba(0,212,255,0.3);
  position: relative;
  z-index: 1;
}

.team-avatar-square {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--electric-blue), var(--accent-glow));
  border-radius: 12px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--deep-ocean);
  box-shadow: 0 10px 40px rgba(0,212,255,0.3);
  position: relative;
  z-index: 1;
}

.team-department {
  margin-bottom: 50px;
}

.team-department .team-grid {
  margin-top: 30px;
}

.department-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--electric-blue);
  text-align: center;
  margin-bottom: 10px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(0,212,255,0.2);
}

.team-name {
  font-size: 22px;
  margin-bottom: 8px;
}

.team-role {
  color: var(--electric-blue);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.team-bio {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: rgba(0,212,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-blue);
  transition: var(--transition-smooth);
}

.team-social a:hover {
  background: var(--electric-blue);
  color: var(--deep-ocean);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--dark-surface);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(15,33,54,0.8), rgba(10,22,40,0.9));
  border-radius: var(--radius-lg);
  padding: 50px;
  border: 1px solid rgba(0,212,255,0.1);
  text-align: center;
}

.testimonial-quote {
  font-size: 24px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--electric-blue), var(--accent-glow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.testimonial-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.testimonial-info p {
  color: var(--text-muted);
  font-size: 14px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  background: rgba(0,212,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.testimonial-dot.active {
  background: var(--electric-blue);
  box-shadow: 0 0 15px rgba(0,212,255,0.5);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: var(--deep-ocean);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  border: 1px solid rgba(0,212,255,0.1);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(0,212,255,0.3);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 30px;
  height: 30px;
  background: rgba(0,212,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-blue);
  font-size: 20px;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  background: var(--electric-blue);
  color: var(--deep-ocean);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer-content {
  padding: 0 30px 25px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
  background: var(--deep-ocean);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(0,212,255,0.1);
  transition: var(--transition-smooth);
}

.contact-card:hover {
  border-color: var(--electric-blue);
  transform: translateX(10px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--electric-blue), var(--accent-glow));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--text-muted);
}

.contact-form-wrapper {
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  padding: 50px;
  border: 1px solid rgba(0,212,255,0.1);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px 25px;
  background: rgba(10,22,40,0.5);
  border: 2px solid rgba(0,212,255,0.1);
  border-radius: var(--radius-md);
  font-size: 16px;
  color: var(--white);
  transition: var(--transition-smooth);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--electric-blue);
  box-shadow: 0 0 20px rgba(0,212,255,0.15);
}

.form-group label {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.3s;
  background: var(--dark-surface);
  padding: 0 10px;
}

.form-group textarea + label {
  top: 25px;
}

.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;
  font-size: 12px;
  color: var(--electric-blue);
}

.submit-btn {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, var(--electric-blue), var(--accent-glow));
  color: var(--deep-ocean);
  border: none;
  border-radius: var(--radius-md);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,212,255,0.4);
}

/* ============================================
   EVENTS PAGE SPECIFIC
   ============================================ */
.events-page-section {
  background: var(--deep-ocean);
}

.event-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.filter-tab {
  padding: 14px 32px;
  background: transparent;
  border: 2px solid rgba(0,212,255,0.2);
  border-radius: var(--radius-full);
  color: var(--text-light);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--electric-blue);
  border-color: var(--electric-blue);
  color: var(--deep-ocean);
}

.events-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Safe Event Process Timeline */
.process-section {
  background: var(--dark-surface);
  padding: 120px 0;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, var(--electric-blue), var(--icy-light));
  border-radius: 3px;
}

.process-step {
  text-align: center;
  position: relative;
  flex: 1;
}

.process-number {
  width: 80px;
  height: 80px;
  background: var(--deep-ocean);
  border: 3px solid var(--electric-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--electric-blue);
  margin: 0 auto 25px;
  position: relative;
  z-index: 1;
  transition: var(--transition-smooth);
}

.process-step:hover .process-number {
  background: var(--electric-blue);
  color: var(--deep-ocean);
  box-shadow: 0 0 30px rgba(0,212,255,0.5);
}

.process-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.process-description {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 180px;
  margin: 0 auto;
}

/* ============================================
   TEAM PAGE SPECIFIC
   ============================================ */
.values-section {
  background: var(--deep-ocean);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(0,212,255,0.1);
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--electric-blue);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--electric-blue), var(--accent-glow));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.value-title {
  font-size: 16px;
  font-weight: 700;
}

/* How We Work */
.how-we-work-section {
  background: var(--dark-surface);
}

.work-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.work-step {
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(0,212,255,0.1);
  width: 200px;
  transition: var(--transition-smooth);
}

.work-step:hover {
  border-color: var(--electric-blue);
  transform: translateY(-5px);
}

.work-step-number {
  width: 50px;
  height: 50px;
  background: var(--electric-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--deep-ocean);
  margin: 0 auto 15px;
}

.work-step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.work-step p {
  color: var(--text-muted);
  font-size: 14px;
}

.work-arrow {
  font-size: 30px;
  color: var(--electric-blue);
}

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */
.map-placeholder {
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,212,255,0.1);
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, rgba(0,212,255,0.05) 1px, transparent 1px),
    linear-gradient(rgba(0,212,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.map-placeholder span {
  font-size: 24px;
  color: var(--text-muted);
  z-index: 1;
}

.mini-faq {
  margin-top: 60px;
}

.mini-faq h3 {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--dark-surface) 0%, var(--deep-ocean) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 100%, rgba(0,212,255,0.15) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  
  .hero-title-main {
    font-size: 60px;
  }
  
  .why-us-grid,
  .events-grid,
  .team-grid,
  .events-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  section {
    padding: 80px 0;
  }
  
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero-title-main {
    font-size: 40px;
  }
  
  .hero-subtitle-main {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .about-image-placeholder {
    height: 300px;
  }
  
  .why-us-grid,
  .events-grid,
  .team-grid,
  .events-full-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .stat-number {
    font-size: 48px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline {
    flex-direction: column;
    gap: 40px;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .work-flow {
    flex-direction: column;
  }
  
  .work-arrow {
    transform: rotate(90deg);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .footer-brand p {
    max-width: 100%;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .event-filter-tabs {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero-title-main {
    font-size: 32px;
  }
  
  .btn {
    padding: 15px 28px;
    font-size: 14px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
}