/* ==========================================================================
   VALKYRIE STUDIOS - Ultra Modern Dark Cyber AAA Game Studio Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Rajdhani:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #07090e;
  --bg-card: #0e121a;
  --bg-card-hover: #161c28;
  --bg-surface: #121722;
  --bg-overlay: rgba(7, 9, 14, 0.85);

  --accent-cyan: #66fcf1;
  --accent-teal: #45a29e;
  --accent-purple: #9d4edd;
  --accent-magenta: #ff007f;
  --accent-gold: #f7b731;

  --text-main: #f0f4f8;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --border-cyber: rgba(102, 252, 241, 0.2);
  --border-glow: rgba(102, 252, 241, 0.6);

  /* Font Families */
  --font-heading: 'Orbitron', sans-serif;
  --font-sub: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-neon-cyan: 0 0 25px rgba(102, 252, 241, 0.35);
  --shadow-neon-purple: 0 0 25px rgba(157, 78, 221, 0.35);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #1f2833;
  border-radius: 4px;
  border: 1px solid var(--border-cyber);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-teal);
  box-shadow: 0 0 10px var(--accent-cyan);
}

/* Base Canvas & Cursor */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* Custom Cyber Cursor */
.custom-cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, background-color 0.15s;
  z-index: 9999;
  box-shadow: 0 0 15px var(--accent-cyan);
}

.custom-cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
}

.custom-cursor.active {
  width: 48px;
  height: 48px;
  background: rgba(102, 252, 241, 0.18);
  border-color: var(--accent-cyan);
}

/* INTRO LOADER */
#loader-screen {
  position: fixed;
  inset: 0;
  background: #050608;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}

#loader-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 130px;
  height: auto;
  filter: drop-shadow(0 0 20px var(--accent-cyan));
  animation: pulseLogo 2s infinite alternate ease-in-out;
}

@keyframes pulseLogo {
  0% { transform: scale(0.95); filter: drop-shadow(0 0 15px rgba(102, 252, 241, 0.4)); }
  100% { transform: scale(1.05); filter: drop-shadow(0 0 35px rgba(102, 252, 241, 0.9)); }
}

.loader-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 6px;
  margin-top: 25px;
  color: var(--text-main);
  text-transform: uppercase;
}

.loader-bar-container {
  width: 280px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-cyan));
  box-shadow: 0 0 15px var(--accent-cyan);
  transition: width 0.1s linear;
}

.loader-text {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  color: var(--accent-cyan);
  margin-top: 10px;
  letter-spacing: 2px;
}

/* HEADER & NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0.95) 0%, rgba(7, 9, 14, 0) 100%);
}

.navbar.scrolled {
  padding: 0.8rem 4rem;
  background: rgba(11, 14, 21, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-cyber);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.brand-logo {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 8px var(--accent-cyan));
  transition: transform 0.3s;
}

.nav-brand:hover .brand-logo {
  transform: rotate(-5deg) scale(1.08);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #fff, var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  transition: width 0.3s ease;
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Audio Switcher Button */
.audio-toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(102, 252, 241, 0.3);
  color: var(--accent-cyan);
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-weight: 600;
  transition: all 0.3s;
}

.audio-toggle-btn:hover {
  background: rgba(102, 252, 241, 0.15);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(102, 252, 241, 0.4);
}

/* Cyber Button Component */
.btn-cyber {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.85rem 2rem;
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg-dark);
  background: var(--accent-cyan);
  border: none;
  cursor: pointer;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 20px rgba(102, 252, 241, 0.4);
}

.btn-cyber span {
  position: relative;
  z-index: 2;
}

.btn-cyber:hover {
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: 0 0 35px rgba(102, 252, 241, 0.8);
}

.btn-cyber-outline {
  background: transparent;
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
  box-shadow: inset 0 0 10px rgba(102, 252, 241, 0.1);
}

.btn-cyber-outline:hover {
  background: var(--accent-cyan);
  color: var(--bg-dark);
  box-shadow: 0 0 25px rgba(102, 252, 241, 0.6);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) contrast(1.2);
  transform: scale(1.05);
  animation: heroZoom 25s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(7, 9, 14, 0.2) 0%, rgba(7, 9, 14, 0.95) 85%),
              linear-gradient(180deg, rgba(7, 9, 14, 0.4) 0%, rgba(7, 9, 14, 1) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(102, 252, 241, 0.08);
  border: 1px solid var(--border-cyber);
  border-radius: 50px;
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 3px;
  margin-bottom: 25px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: pulseDot 1.5s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

.hero-logo-center {
  width: 160px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 25px var(--accent-cyan));
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 30%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 35px;
  line-height: 1.6;
}

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

/* Hero Stats Bar Footer */
.hero-stats-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: rgba(14, 18, 26, 0.88);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-cyber);
  padding: 14px 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ticker-item strong {
  color: var(--accent-cyan);
  font-family: var(--font-heading);
}

/* SECTION STYLES */
.section-padding {
  padding: 7rem 4rem;
  position: relative;
  z-index: 2;
}

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

.section-tag {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-main);
}

.section-title-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  margin: 15px auto 0;
}

/* GAMES SECTION CAROUSEL */
.games-filter-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 10px 24px;
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(102, 252, 241, 0.15);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(102, 252, 241, 0.25);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.game-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.game-card:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(102, 252, 241, 0.3);
}

.game-card-img-wrapper {
  position: relative;
  height: 380px;
  width: 100%;
  overflow: hidden;
}

.game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.game-card:hover .game-card-img {
  transform: scale(1.08);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0) 30%, rgba(7, 9, 14, 0.95) 100%);
}

.game-card-genre {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(7, 9, 14, 0.8);
  border: 1px solid var(--border-cyber);
  padding: 4px 12px;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  backdrop-filter: blur(6px);
}

.game-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.8rem;
  z-index: 5;
}

.game-card-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.game-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

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

.btn-game-details {
  background: transparent;
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 8px 16px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.game-card:hover .btn-game-details {
  background: var(--accent-cyan);
  color: var(--bg-dark);
  box-shadow: 0 0 15px var(--accent-cyan);
}

.game-platform-icons {
  display: flex;
  gap: 10px;
  color: var(--text-dim);
  font-size: 1.1rem;
}

/* ABOUT / VISION SECTION */
.about-section {
  background: radial-gradient(circle at 80% 20%, rgba(102, 252, 241, 0.05) 0%, transparent 60%),
              var(--bg-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-cyber);
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(102, 252, 241, 0.2);
  min-height: 420px;
  background: var(--bg-card);
}

.about-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.about-image-box:hover .about-img {
  transform: scale(1.06);
  filter: brightness(1.1);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0.1) 0%, rgba(7, 9, 14, 0.8) 100%);
  pointer-events: none;
}

.about-image-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent-cyan);
  opacity: 0.5;
  pointer-events: none;
  margin: 14px;
  border-radius: 6px;
  transition: opacity 0.3s;
}

.about-image-box:hover .about-image-frame {
  opacity: 0.9;
  box-shadow: inset 0 0 15px rgba(102, 252, 241, 0.3);
}

.about-image-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(7, 9, 14, 0.85);
  border: 1px solid var(--border-cyber);
  border-radius: 4px;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 2px;
  backdrop-filter: blur(8px);
  z-index: 5;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-card {
  position: relative;
  background: linear-gradient(135deg, rgba(14, 18, 26, 0.95) 0%, rgba(22, 28, 40, 0.95) 100%);
  border: 1px solid rgba(102, 252, 241, 0.15);
  padding: 1.6rem 1.8rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-cyan);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.stat-card:hover {
  border-color: var(--accent-cyan);
  border-left-width: 4px;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(102, 252, 241, 0.25);
  background: linear-gradient(135deg, rgba(18, 24, 35, 0.98) 0%, rgba(26, 34, 48, 0.98) 100%);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--accent-cyan);
  margin-bottom: 6px;
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(102, 252, 241, 0.4);
}

.stat-label {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* CAREERS SECTION */
.careers-section {
  max-width: 1300px;
  margin: 0 auto;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 3rem;
}

.job-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.8rem 2.2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}

.job-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-cyan);
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.job-info h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 8px;
}

.job-meta {
  display: flex;
  gap: 15px;
  font-family: var(--font-sub);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.job-badge {
  background: rgba(102, 252, 241, 0.1);
  color: var(--accent-cyan);
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 600;
}

/* FAQ (SSS - SIKÇA SORULAN SORULAR) SECTION */
.faq-section {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-search-wrapper {
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.faq-search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-cyber);
  border-radius: 8px;
  padding: 6px 18px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-search-box:focus-within {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(102, 252, 241, 0.3);
}

.faq-search-icon {
  font-size: 1.2rem;
  margin-right: 12px;
  color: var(--accent-cyan);
}

.faq-search-box input {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 10px 0;
  outline: none;
}

.faq-search-box input::placeholder {
  color: var(--text-dim);
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(102, 252, 241, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.faq-item.active {
  border-color: var(--accent-cyan);
  background: var(--bg-surface);
  box-shadow: 0 0 20px rgba(102, 252, 241, 0.15);
}

.faq-question-btn {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  color: #fff;
  text-align: left;
  font-family: var(--font-sub);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  transition: color 0.3s;
}

.faq-question-btn:hover {
  color: var(--accent-cyan);
}

.faq-item.active .faq-question-btn {
  color: var(--accent-cyan);
}

.faq-question-text {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.faq-cat-tag {
  font-size: 0.75rem;
  font-family: var(--font-sub);
  letter-spacing: 1px;
  background: rgba(102, 252, 241, 0.1);
  color: var(--accent-cyan);
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid var(--border-cyber);
  white-space: nowrap;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-cyan);
  transition: transform 0.3s, background-color 0.3s, border-color 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--accent-cyan);
  color: var(--bg-dark);
  border-color: var(--accent-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 2rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 2rem 1.8rem;
}

.faq-ask-card {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, rgba(14, 18, 26, 0.9) 0%, rgba(18, 23, 34, 0.9) 100%);
  border: 1px solid var(--border-cyber);
  border-radius: 12px;
  padding: 2.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.faq-ask-content h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 6px;
}

.faq-ask-content p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* MODAL SYSTEM */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 11, 0.92);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-surface);
  border: 1px solid var(--accent-cyan);
  width: 100%;
  max-width: 850px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 50px rgba(102, 252, 241, 0.25);
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10;
}

.modal-close-btn:hover {
  color: var(--accent-cyan);
}

.modal-body {
  padding: 2.5rem;
}

/* Form inputs in Modal */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.form-input, .form-textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 12px 16px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(102, 252, 241, 0.3);
}

/* FOOTER */
.footer {
  background: #040508;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5rem 4rem 2rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto 4rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin: 1.2rem 0;
  max-width: 320px;
  line-height: 1.6;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--accent-cyan);
  color: var(--bg-dark);
  box-shadow: 0 0 15px var(--accent-cyan);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 1.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .navbar { padding: 1.25rem 2rem; }
  .navbar.scrolled { padding: 0.8rem 2rem; }
  .section-padding { padding: 5rem 2rem; }
  .hero-title { font-size: 3rem; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-title { font-size: 2.3rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-stats-ticker { flex-direction: column; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}
