/* ============================================================
   SULTAN SAIF AL NEYADI - SPACE-THEMED WEBSITE
   Premium Dark Sci-Fi Design System
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Exo+2:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-primary:       #0a0a1a;
  --bg-secondary:     #0d1127;
  --bg-tertiary:      #111633;
  --bg-card:          #0f1430;
  --bg-dark:          #06060f;

  /* Accent Colors */
  --accent-cyan:      #00f0ff;
  --accent-blue:      #0066ff;
  --accent-gold:      #ffd700;
  --accent-magenta:   #ff006e;
  --accent-purple:    #7b2ff7;
  --accent-green:     #00ff88;

  /* Text */
  --text-primary:     #ffffff;
  --text-secondary:   #b0b8d1;
  --text-muted:       #6b7394;
  --text-accent:      #00f0ff;

  /* Glassmorphism */
  --glass-bg:         rgba(13, 17, 39, 0.7);
  --glass-bg-light:   rgba(13, 17, 39, 0.5);
  --glass-bg-heavy:   rgba(10, 10, 26, 0.85);
  --glass-border:     rgba(0, 240, 255, 0.15);
  --glass-border-hover: rgba(0, 240, 255, 0.35);

  /* Gradients */
  --gradient-primary:  linear-gradient(135deg, #0066ff 0%, #00f0ff 100%);
  --gradient-gold:     linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  --gradient-dark:     linear-gradient(180deg, #0a0a1a 0%, #0d1127 100%);
  --gradient-hero:     linear-gradient(180deg, rgba(10,10,26,0) 0%, rgba(10,10,26,0.6) 50%, #0a0a1a 100%);
  --gradient-card:     linear-gradient(135deg, rgba(0,102,255,0.08) 0%, rgba(0,240,255,0.04) 100%);

  /* Shadows */
  --shadow-cyan:      0 0 20px rgba(0, 240, 255, 0.15);
  --shadow-blue:      0 0 30px rgba(0, 102, 255, 0.2);
  --shadow-gold:      0 0 20px rgba(255, 215, 0, 0.15);
  --shadow-lg:        0 25px 60px rgba(0, 0, 0, 0.4);
  --shadow-card:      0 8px 32px rgba(0, 0, 0, 0.3);

  /* Typography */
  --font-heading:     'Orbitron', sans-serif;
  --font-body:        'Exo 2', sans-serif;
  --font-accent:      'Rajdhani', sans-serif;

  /* Spacing */
  --section-padding:  100px 0;
  --container-max:    1400px;
  --container-padding: 0 40px;

  /* Borders */
  --radius-sm:        8px;
  --radius-md:        12px;
  --radius-lg:        20px;
  --radius-xl:        30px;
  --radius-full:      50%;

  /* Transitions */
  --transition-fast:   0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   0.8s cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index Scale */
  --z-base:           1;
  --z-dropdown:       100;
  --z-sticky:         200;
  --z-nav:            500;
  --z-overlay:        800;
  --z-modal:          900;
  --z-top:            1000;
  --z-password:       9999;
}


/* ============================================================
   CSS RESET + BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 240, 255, 0.03) 0%, transparent 50%);
  overflow-x: hidden;
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-cyan);
}

ul, ol {
  list-style: none;
}

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

img {
  object-fit: contain;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1em;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

::selection {
  background: rgba(0, 240, 255, 0.3);
  color: var(--text-primary);
}


/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--accent-cyan);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-blue);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-cyan) var(--bg-primary);
}


/* ============================================================
   CONTAINER / LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.container-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.container-lg {
  max-width: 1600px;
  margin: 0 auto;
  padding: var(--container-padding);
}

section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-header p {
  max-width: 650px;
  margin: 20px auto 0;
  font-size: 1.1rem;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 10px;
  display: block;
}

.section-bg-dark {
  background-color: var(--bg-dark);
}

.section-bg-secondary {
  background-color: var(--bg-secondary);
}

.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-tag {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 10px;
  display: inline-block;
  padding: 4px 16px;
  border: 1px solid rgba(0,240,255,0.2);
  border-radius: 20px;
  background: rgba(0,240,255,0.05);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.divider-star {
  color: var(--accent-cyan);
  font-size: 0.8rem;
}

/* Hero-specific classes used in HTML */
.hero-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  display: block;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 24px;
}

.title-line {
  display: block;
}

.title-highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,26,0.3) 0%, rgba(10,10,26,0.6) 50%, #0a0a1a 100%);
  z-index: 1;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(0,240,255,0.4);
  border-radius: 13px;
  position: relative;
}

.scroll-wheel {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

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

.scroll-text {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,240,255,0.5);
}

/* Hero Orbit Decorative */
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(0,240,255,0.08);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-orbit-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  right: -100px;
  animation: orbit-spin 30s linear infinite;
}

.hero-orbit-2 {
  width: 600px;
  height: 600px;
  bottom: -150px;
  left: -200px;
  animation: orbit-spin 45s linear infinite reverse;
}

.hero-orbit-3 {
  width: 250px;
  height: 250px;
  top: 30%;
  left: 10%;
  animation: orbit-spin 20s linear infinite;
}

.orbit-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-cyan);
}

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

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* Stat card internals */
.stat-icon {
  margin-bottom: 16px;
  color: var(--accent-cyan);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 8px;
}

.stat-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Mission Grid (homepage) */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 992px) {
  .mission-grid { grid-template-columns: 1fr; }
}

.card-header-accent {
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  margin-bottom: 20px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.mission-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mission-info-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,240,255,0.08);
}

.info-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.info-value {
  font-weight: 600;
  color: var(--text-primary);
}

.milestones-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.milestones-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.milestone-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.milestone-item:hover {
  border-color: var(--glass-border-hover);
  transform: translateX(5px);
}

.milestone-glow {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-cyan);
}

.milestone-content strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.milestone-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Leadership text */
.leadership-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.leadership-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Typing text animation */
.typing-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  min-height: 2.5em;
  margin-bottom: 10px;
}

.typed-cursor {
  animation: blink 0.8s step-end infinite;
  color: var(--accent-cyan);
  font-weight: 300;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }


/* ============================================================
   GLASSMORPHISM CARD
   ============================================================ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 35px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,240,255,0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.glass-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-cyan), var(--shadow-card);
  transform: translateY(-5px);
}

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

.glass-card-light {
  background: var(--glass-bg-light);
  border-color: rgba(0, 240, 255, 0.08);
}

.glass-panel {
  background: var(--glass-bg-heavy);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 50px;
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 15px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: var(--glass-bg-heavy);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container,
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: var(--z-nav);
  text-decoration: none;
}

.nav-logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text,
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.2;
}

.nav-logo-text span,
.logo-text .accent {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--accent-cyan);
  margin-left: 6px;
}

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

.nav-links a {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 5px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  transition: width var(--transition-base);
}

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

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

.nav-cta {
  margin-left: 10px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: var(--z-nav);
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--glass-bg-heavy);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: calc(var(--z-nav) - 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: all var(--transition-base);
  transform: translateY(20px);
  opacity: 0;
}

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

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active a:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu.active a:nth-child(8) { transition-delay: 0.45s; }

.mobile-menu a:hover {
  color: var(--accent-cyan);
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-overlay-radial {
  background:
    radial-gradient(ellipse at center, rgba(10,10,26,0.3) 0%, rgba(10,10,26,0.8) 70%),
    linear-gradient(180deg, rgba(10,10,26,0.2) 0%, rgba(10,10,26,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 30px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  margin-bottom: 20px;
  letter-spacing: 3px;
  line-height: 1.1;
}

.hero-content h1 span {
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 15px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 35px;
  line-height: 1.8;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  animation: heroFloat 3s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent-cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Mini Hero (sub-pages) */
.hero-mini,
.mini-hero {
  min-height: 50vh;
  padding-top: 100px;
}

.hero-mini .hero-content h1,
.mini-hero .hero-content h1,
.mini-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.mini-hero .hero-bg,
.mini-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.mini-hero .hero-bg::after,
.mini-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,26,0.4) 0%, rgba(10,10,26,0.7) 60%, #0a0a1a 100%);
}

.mini-hero .hero-content,
.mini-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
}

.mini-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.mini-hero-content p,
.mini-hero .hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero particle / star overlay */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--bg-primary);
  border: none;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2), 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.4), 0 8px 25px rgba(0, 102, 255, 0.4);
  color: var(--bg-primary);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::after {
  transform: rotate(45deg) translateX(100%);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
  box-shadow: inset 0 0 15px rgba(0, 240, 255, 0.05);
}

.btn-secondary:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.2), inset 0 0 15px rgba(0, 240, 255, 0.1);
  transform: translateY(-2px);
  color: var(--accent-cyan);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  border: none;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.4);
  color: var(--bg-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(176, 184, 209, 0.2);
}

.btn-ghost:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
}

.btn-lg {
  padding: 18px 45px;
  font-size: 1.05rem;
}

.btn-icon {
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/* ============================================================
   GLOW TEXT EFFECTS
   ============================================================ */
.glow-text {
  text-shadow:
    0 0 10px rgba(0, 240, 255, 0.5),
    0 0 20px rgba(0, 240, 255, 0.3),
    0 0 40px rgba(0, 240, 255, 0.2),
    0 0 80px rgba(0, 240, 255, 0.1);
  color: var(--accent-cyan);
}

.glow-text-gold {
  text-shadow:
    0 0 10px rgba(255, 215, 0, 0.5),
    0 0 20px rgba(255, 215, 0, 0.3),
    0 0 40px rgba(255, 215, 0, 0.2);
  color: var(--accent-gold);
}

.glow-text-white {
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.4),
    0 0 20px rgba(255, 255, 255, 0.2);
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ============================================================
   STAT CARDS / DATA CARDS
   ============================================================ */
.stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-cyan);
}

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

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(0, 240, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 240, 255, 0.1);
  transition: all var(--transition-base);
}

.stat-card:hover .stat-icon {
  background: rgba(0, 240, 255, 0.15);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .counter-suffix {
  font-size: 0.6em;
  color: var(--accent-cyan);
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Data card variation */
.data-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.data-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 240, 255, 0.08);
}

.data-card-title {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.data-card-badge {
  padding: 4px 12px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 20px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-cyan);
}


/* ============================================================
   COUNTER ANIMATION
   ============================================================ */
.counter-wrap {
  display: inline-block;
}

.counter-wrap .count {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
}

.counter-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-smooth);
}

.counter-animate.counted {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   TIMELINE COMPONENT
   ============================================================ */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg,
    transparent,
    var(--accent-cyan),
    var(--accent-blue),
    var(--accent-cyan),
    transparent
  );
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: calc(50% - 40px);
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all var(--transition-smooth);
}

.timeline-content:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-5px);
}

.timeline-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--bg-primary);
  border: 3px solid var(--accent-cyan);
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  transition: all var(--transition-base);
}

.timeline-item:hover .timeline-node {
  background: var(--accent-cyan);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
  transform: translateX(-50%) scale(1.3);
}

.timeline-date {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.timeline-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Achievement Timeline (horizontal variant) */
.achievement-timeline {
  display: flex;
  overflow-x: auto;
  gap: 0;
  padding: 40px 0;
  position: relative;
}

.achievement-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-blue), var(--accent-cyan), transparent);
}

.achievement-item {
  min-width: 280px;
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.achievement-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--accent-cyan);
  border-radius: var(--radius-full);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
  z-index: 2;
}

.achievement-item .achievement-year {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--accent-cyan);
  letter-spacing: 2px;
  margin-bottom: 50px;
}

.achievement-item .achievement-text {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 50px;
}


/* ============================================================
   TRAINING MODULE CARDS
   ============================================================ */
.training-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.training-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-cyan);
}

.training-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.training-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.training-card:hover .training-card-image img {
  transform: scale(1.1);
}

.training-card-image .training-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 14px;
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 20px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.training-card-body {
  padding: 25px;
}

.training-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.training-card-body p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.training-progress {
  height: 4px;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 15px;
}

.training-progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 1s ease;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.training-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* ============================================================
   RESEARCH EXPERIMENT CARDS
   ============================================================ */
.research-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.research-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.research-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
}

.research-card:hover::after {
  transform: scaleX(1);
}

.research-card-icon {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-md);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

.research-card h4 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.research-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.research-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.research-status.status-complete {
  color: var(--accent-green);
}

.research-status.status-ongoing {
  color: var(--accent-cyan);
}

.research-status.status-upcoming {
  color: var(--accent-gold);
}

.research-status-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  animation: statusPulse 2s ease-in-out infinite;
}

.status-complete .research-status-dot {
  background: var(--accent-green);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

.status-ongoing .research-status-dot {
  background: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.status-upcoming .research-status-dot {
  background: var(--accent-gold);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

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

/* Research Grid (homepage) */
.research-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .research-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .research-grid { grid-template-columns: 1fr; }
}

/* Research icon (homepage card variant) */
.research-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

.research-icon svg {
  width: 32px;
  height: 32px;
}

.research-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.research-card-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.research-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0,240,255,0.2);
  color: var(--accent-cyan);
  background: rgba(0,240,255,0.05);
}

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: 50px;
}

/* Youth Section */
.youth-content {
  max-width: 900px;
  margin: 0 auto;
}

.youth-text-block p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.youth-intro {
  font-size: 1.15rem !important;
  color: var(--text-primary) !important;
}

.youth-quote {
  padding: 40px;
  margin-top: 40px;
  text-align: center;
  position: relative;
}

.quote-mark {
  color: var(--accent-cyan);
  opacity: 0.3;
  margin-bottom: 16px;
}

.quote-text {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.quote-author {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

/* Mission CTA button spacing */
.mission-cta {
  margin-top: 30px;
  display: inline-flex;
}


/* ============================================================
   TAB / FILTER SYSTEM (GALLERY)
   ============================================================ */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-tab,
.filter-btn {
  padding: 10px 25px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(0, 240, 255, 0.04);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-tab:hover,
.filter-btn:hover {
  color: var(--accent-cyan);
  border-color: rgba(0, 240, 255, 0.3);
  background: rgba(0, 240, 255, 0.08);
}

.filter-tab.active,
.filter-btn.active {
  color: var(--bg-primary);
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--glass-border);
  transition: all var(--transition-base);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay,
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 20px 20px;
  background: linear-gradient(180deg, transparent, rgba(10,10,26,0.9));
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-item-overlay,
.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-item-overlay h4,
.gallery-caption {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.gallery-item-overlay p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Hide filtered-out items */
.gallery-item.hidden {
  display: none;
}


/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(0, 240, 255, 0.1);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 30px;
  width: 45px;
  height: 45px;
  z-index: 10;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-nav,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 10;
}

.lightbox-nav:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--accent-cyan);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-img {
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(0, 240, 255, 0.1);
}

.lightbox-caption {
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--text-secondary);
}


/* ============================================================
   FORM STYLES (CONTACT FORM)
   ============================================================ */
.form-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 50px;
}

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

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 20px;
  background: rgba(0, 240, 255, 0.03);
  border: 1px solid rgba(0, 240, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1), inset 0 0 15px rgba(0, 240, 255, 0.03);
  background: rgba(0, 240, 255, 0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300f0ff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-message {
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  margin-top: 15px;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: var(--accent-green);
}

.form-message.error {
  display: block;
  background: rgba(255, 0, 110, 0.1);
  border: 1px solid rgba(255, 0, 110, 0.3);
  color: var(--accent-magenta);
}


/* ============================================================
   EMBEDDED MAP
   ============================================================ */
.map-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) brightness(0.4) contrast(1.2);
  transition: filter var(--transition-smooth);
}

.map-container:hover iframe {
  filter: grayscale(50%) brightness(0.6) contrast(1.1);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 26, 0.3);
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.map-container:hover .map-overlay {
  opacity: 0;
}


/* ============================================================
   PARALLAX SECTIONS
   ============================================================ */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  z-index: 0;
}

.parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
    rgba(10, 10, 26, 0.85) 0%,
    rgba(10, 10, 26, 0.7) 50%,
    rgba(10, 10, 26, 0.85) 100%
  );
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
}


/* ============================================================
   ANIMATED ORBIT ELEMENTS
   ============================================================ */
.orbit-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 2px solid var(--accent-cyan);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
  z-index: 3;
}

.orbit-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(0, 240, 255, 0.12);
  border-radius: var(--radius-full);
  animation: orbitSpin linear infinite;
}

.orbit-ring-1 {
  width: 200px;
  height: 200px;
  margin: -100px 0 0 -100px;
  animation-duration: 20s;
}

.orbit-ring-2 {
  width: 300px;
  height: 300px;
  margin: -150px 0 0 -150px;
  animation-duration: 30s;
  animation-direction: reverse;
}

.orbit-ring-3 {
  width: 400px;
  height: 400px;
  margin: -200px 0 0 -200px;
  animation-duration: 40s;
}

.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent-cyan);
  border-radius: var(--radius-full);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
  top: -6px;
  left: 50%;
  margin-left: -6px;
}

.orbit-dot-gold {
  background: var(--accent-gold);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

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


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

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

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

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

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

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active,
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.active > *,
.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *,
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *,
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *,
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *,
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *,
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *,
.reveal-stagger.revealed > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *,
.reveal-stagger.revealed > *:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }


/* ============================================================
   PAGE TRANSITION OVERLAY
   ============================================================ */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-top);
  pointer-events: none;
  display: flex;
}

.page-transition .pt-panel {
  flex: 1;
  background: var(--bg-primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}

.page-transition.active .pt-panel {
  transform: scaleY(1);
  transform-origin: top;
}

.page-transition .pt-panel:nth-child(1) { transition-delay: 0s; }
.page-transition .pt-panel:nth-child(2) { transition-delay: 0.05s; }
.page-transition .pt-panel:nth-child(3) { transition-delay: 0.1s; }
.page-transition .pt-panel:nth-child(4) { transition-delay: 0.15s; }
.page-transition .pt-panel:nth-child(5) { transition-delay: 0.2s; }


/* ============================================================
   PASSWORD PAGE
   ============================================================ */
.password-page,
.password-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-password);
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.password-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0, 102, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(0, 240, 255, 0.05) 0%, transparent 60%);
  z-index: 0;
}

.password-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  background: var(--glass-bg-heavy);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.password-panel .password-logo {
  margin-bottom: 30px;
}

.password-panel .password-logo img {
  height: 60px;
  margin: 0 auto;
  object-fit: contain;
}

.password-panel h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.password-panel p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.password-input-wrap {
  position: relative;
  margin-bottom: 20px;
}

.password-input,
.password-field {
  width: 100%;
  padding: 16px 20px;
  background: rgba(0, 240, 255, 0.03);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 3px;
  text-align: center;
  transition: all var(--transition-base);
  outline: none;
}

.password-form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.password-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.password-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0,240,255,0.3);
}

.password-btn .btn-rocket {
  margin-left: 8px;
}

.password-error {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--accent-magenta);
  min-height: 1.2em;
}

.gate-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* Orbit rings for password page */
.orbit-ring {
  position: absolute;
  border: 1px solid rgba(0,240,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-ring-1 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-spin 40s linear infinite;
}

.orbit-ring-2 {
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-spin 60s linear infinite reverse;
}

.orbit-ring-3 {
  width: 900px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-spin 80s linear infinite;
}

/* Panel decorative corners */
.panel-glow {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.panel-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0,240,255,0.3);
}

.panel-corner-tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.panel-corner-tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.panel-corner-bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.panel-corner-br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.password-input:focus {
  border-color: var(--accent-cyan);
  box-shadow:
    0 0 20px rgba(0, 240, 255, 0.15),
    0 0 40px rgba(0, 240, 255, 0.05),
    inset 0 0 15px rgba(0, 240, 255, 0.03);
}

.password-input.error {
  border-color: var(--accent-magenta);
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.15);
  animation: inputShake 0.5s ease;
}

.password-error-msg {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--accent-magenta);
  margin-top: 8px;
  display: none;
}

.password-error-msg.visible {
  display: block;
}

@keyframes inputShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-10px); }
  40% { transform: translateX(10px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
}

/* Warp Speed Transition Effect */
.warp-speed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: calc(var(--z-password) + 1);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.warp-speed.active {
  opacity: 1;
}

.warp-speed::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(ellipse, rgba(0,240,255,0.3), rgba(0,102,255,0.2), transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.warp-speed.active::before {
  animation: warpExpand 1.2s ease-out forwards;
}

@keyframes warpExpand {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    width: 300vmax;
    height: 300vmax;
    opacity: 0;
  }
}

/* Password page starfield */
.password-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.password-stars .star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  animation: starTwinkle var(--duration, 3s) ease-in-out infinite;
  opacity: var(--opacity, 0.5);
}

@keyframes starTwinkle {
  0%, 100% { opacity: var(--opacity, 0.5); transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer,
.mega-footer {
  position: relative;
  background: var(--bg-dark);
  padding: 80px 0 0;
  overflow: hidden;
}

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

/* Footer starfield background */
.footer-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.footer-stars .star {
  position: absolute;
  width: 1px;
  height: 1px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  animation: starTwinkle var(--duration, 4s) ease-in-out infinite;
  opacity: var(--opacity, 0.3);
}

.footer-content,
.footer-container {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(0, 240, 255, 0.08);
}

.footer-brand {
  max-width: 350px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand .footer-logo img {
  height: 40px;
  object-fit: contain;
}

.footer-brand .footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-column h4 {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-cyan);
}

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

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  position: relative;
  padding-left: 0;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 8px;
}

/* Newsletter */
.footer-newsletter p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(0, 240, 255, 0.04);
  border: 1px solid rgba(0, 240, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.newsletter-input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-btn {
  padding: 12px 20px;
  background: var(--gradient-primary);
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.newsletter-btn:hover {
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
  transform: translateY(-2px);
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 240, 255, 0.15);
}

/* Footer Bottom */
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  margin-top: 30px;
}

.footer-bottom p {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--accent-cyan);
}

/* Footer Logo as h3 text */
h3.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

h3.footer-logo .accent {
  color: var(--accent-cyan);
  margin-left: 6px;
  font-weight: 500;
}

/* Footer Links h4 */
.footer-links h4,
.footer-newsletter h4 {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

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

/* Social link styling */
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.social-link:hover {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  background: rgba(0,240,255,0.08);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0,240,255,0.2);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* Footer Sitemap */
.footer-sitemap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(0,240,255,0.08);
}

.footer-sitemap a {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-sitemap a:hover {
  color: var(--accent-cyan);
}

/* Footer Contact Block */
.footer-contact-block {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,240,255,0.08);
}

.footer-contact-block p {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

/* Footer Map */
.footer-map {
  margin: 30px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.footer-map iframe {
  display: block;
  width: 100%;
  border: none;
  border-radius: var(--radius-lg);
}

/* Footer Credit */
.footer-credit {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
}

.footer-credit a {
  color: var(--accent-cyan);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-credit a:hover {
  color: var(--accent-gold);
}

/* Utility: Accent color class */
.accent {
  color: var(--accent-cyan);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--glass-bg-heavy);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  color: var(--accent-cyan);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: var(--z-sticky);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
  transform: translateY(-3px);
}


/* ============================================================
   IMAGE HANDLING
   ============================================================ */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img-rounded {
  border-radius: var(--radius-lg);
}

.img-circle {
  border-radius: var(--radius-full);
}

.img-glow {
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.15);
  border: 1px solid var(--glass-border);
}

.img-frame {
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 5px;
  background: var(--glass-bg);
}

.img-full-visible {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}


/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.mb-0  { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.mt-0  { margin-top: 0 !important; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

.pt-0  { padding-top: 0 !important; }
.pb-0  { padding-bottom: 0 !important; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin: 40px 0;
}

.divider-cyan {
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 4px 14px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 20px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--accent-cyan);
}

.badge-gold {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.2);
  color: var(--accent-gold);
}

.badge-green {
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.2);
  color: var(--accent-green);
}


/* ============================================================
   LOADING / PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: calc(var(--z-top) + 10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-ring {
  width: 60px;
  height: 60px;
  border: 2px solid transparent;
  border-top-color: var(--accent-cyan);
  border-radius: var(--radius-full);
  animation: preloaderSpin 1s linear infinite;
  position: relative;
}

.preloader-ring::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 2px solid transparent;
  border-top-color: var(--accent-blue);
  border-radius: var(--radius-full);
  animation: preloaderSpin 0.8s linear infinite reverse;
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
}

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


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large Desktop (max: 1200px) */
@media (max-width: 1200px) {
  :root {
    --container-padding: 0 30px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .orbit-container {
    width: 320px;
    height: 320px;
  }

  .orbit-ring-1 { width: 160px; height: 160px; margin: -80px 0 0 -80px; }
  .orbit-ring-2 { width: 240px; height: 240px; margin: -120px 0 0 -120px; }
  .orbit-ring-3 { width: 320px; height: 320px; margin: -160px 0 0 -160px; }
}

/* Tablet Landscape (max: 992px) */
@media (max-width: 992px) {
  :root {
    --section-padding: 80px 0;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: column;
    padding-left: 60px;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-node {
    left: 20px;
    transform: translateX(-50%);
  }

  .timeline-item:hover .timeline-node {
    transform: translateX(-50%) scale(1.3);
  }

  .glass-panel {
    padding: 35px;
  }

  .form-glass {
    padding: 35px;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
  }

  .lightbox-prev { left: 15px; }
  .lightbox-next { right: 15px; }
}

/* Tablet Portrait (max: 768px) */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --container-padding: 0 20px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-mini {
    min-height: 40vh;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .glass-card {
    padding: 25px;
  }

  .glass-panel {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-glass {
    padding: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .map-container {
    height: 350px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .orbit-container {
    width: 260px;
    height: 260px;
  }

  .orbit-ring-1 { width: 130px; height: 130px; margin: -65px 0 0 -65px; }
  .orbit-ring-2 { width: 195px; height: 195px; margin: -97.5px 0 0 -97.5px; }
  .orbit-ring-3 { width: 260px; height: 260px; margin: -130px 0 0 -130px; }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .achievement-timeline {
    flex-direction: column;
  }

  .achievement-timeline::before {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
  }

  .achievement-item {
    min-width: unset;
  }
}

/* Mobile (max: 576px) */
@media (max-width: 576px) {
  :root {
    --section-padding: 50px 0;
    --container-padding: 0 15px;
  }

  body {
    font-size: 15px;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-auto {
    grid-template-columns: 1fr;
  }

  .glass-card {
    padding: 20px;
    border-radius: var(--radius-md);
  }

  .stat-card {
    padding: 25px 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.85rem;
  }

  .btn-lg {
    padding: 14px 30px;
    font-size: 0.95rem;
  }

  .nav-logo-text {
    font-size: 0.9rem;
  }

  .nav-logo img {
    height: 35px;
  }

  .mobile-menu a {
    font-size: 1.2rem;
  }

  .section-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .hero-scroll-indicator {
    bottom: 25px;
  }

  .filter-tabs {
    gap: 8px;
  }

  .filter-tab {
    padding: 8px 18px;
    font-size: 0.75rem;
  }

  .training-card-body {
    padding: 20px;
  }

  .password-panel {
    margin: 15px;
    padding: 35px 25px;
  }

  .footer {
    padding: 50px 0 0;
  }

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

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }

  .map-container {
    height: 280px;
    border-radius: var(--radius-md);
  }

  .orbit-container {
    width: 220px;
    height: 220px;
  }

  .orbit-center {
    width: 70px;
    height: 70px;
  }

  .orbit-ring-1 { width: 110px; height: 110px; margin: -55px 0 0 -55px; }
  .orbit-ring-2 { width: 165px; height: 165px; margin: -82.5px 0 0 -82.5px; }
  .orbit-ring-3 { width: 220px; height: 220px; margin: -110px 0 0 -110px; }
}


/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .navbar,
  .hamburger,
  .mobile-menu,
  .back-to-top,
  .preloader,
  .page-transition,
  .password-page,
  .lightbox,
  .warp-speed,
  .hero-particles,
  .footer-stars,
  .password-stars {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .hero {
    min-height: auto;
    padding: 30px 0;
  }

  section {
    padding: 20px 0;
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }
}


/* ============================================================
   ANIMATION KEYFRAMES (SHARED)
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

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

@keyframes glow {
  0%, 100% { box-shadow: 0 0 15px rgba(0, 240, 255, 0.2); }
  50% { box-shadow: 0 0 30px rgba(0, 240, 255, 0.4); }
}

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

@keyframes scanLine {
  0% { top: -5%; }
  100% { top: 105%; }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(0, 240, 255, 0.15); }
  50% { border-color: rgba(0, 240, 255, 0.4); }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}
