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

:root {
  --gold: #E8B84B;
  --gold-light: #F5D07A;
  --gold-dark: #C8931A;
  --orange: #C47A1A;
  --orange-dark: #8B5500;
  --bg: #050505;
  --bg2: #0A0A0A;
  --bg3: #111111;
  --bg4: #161616;
  --surface: #1A1A1A;
  --border: rgba(232,184,75,0.12);
  --border-bright: rgba(232,184,75,0.38);
  --text: #E8E0D0;
  --text-muted: #8A8070;
  --glow: 0 0 20px rgba(232,184,75,0.3), 0 0 60px rgba(232,184,75,0.1);
  --glow-strong: 0 0 30px rgba(232,184,75,0.5), 0 0 80px rgba(232,184,75,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.35;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 0 2.5rem; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
nav.scrolled { background: rgba(5,5,5,0.97); border-color: var(--border-bright); }

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img {
  width: 34px; height: 34px;
  filter: drop-shadow(0 0 8px rgba(232,184,75,0.4));
}
.nav-logo-fallback {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #8B5500, #E8B84B);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Orbitron', monospace;
  font-weight: 700; font-size: 0.95rem;
  color: var(--gold); letter-spacing: 0.1em;
}
.nav-logo-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--text-muted); text-transform: uppercase;
  line-height: 1;
}

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

.nav-links li a {
  text-decoration: none; color: var(--text-muted);
  font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.4rem 0.85rem; border-radius: 4px;
  transition: all 0.2s; position: relative;
}
.nav-links li a:hover, .nav-links li a.active {
  color: var(--gold); background: rgba(232,184,75,0.06);
}
.nav-links li a.active::after {
  content: '';
  position: absolute; bottom: -1px; left: 50%; right: 50%;
  height: 2px; background: var(--gold);
  transform: translateX(-50%); width: calc(100% - 1.7rem);
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border-bright); border-radius: 4px;
  background: transparent; color: var(--gold) !important;
  font-size: 0.78rem !important; letter-spacing: 0.08em;
  transition: all 0.2s !important; margin-left: 0.5rem;
}
.nav-cta:hover {
  background: rgba(232,184,75,0.08) !important;
  box-shadow: var(--glow) !important;
}
.nav-cta.active::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { width: 22px; height: 2px; background: var(--gold); display: block; transition: all 0.3s; }

.mobile-menu {
  display: none; position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(5,5,5,0.98);
  border-bottom: 1px solid var(--border-bright);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(20px);
  z-index: 999;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a {
  text-decoration: none; color: var(--text-muted);
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }

/* ─── PAGE WRAPPER ─── */
.page { padding-top: 64px; }

/* ─── SECTION BASE ─── */
.section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-family: 'Orbitron', monospace;
  font-size: 0.62rem; letter-spacing: 0.35em;
  color: var(--gold-dark); text-transform: uppercase;
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 0.75rem;
}
.section-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--gold-dark);
}

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--gold-light);
  line-height: 1.1; margin-bottom: 1.25rem;
}

.divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), transparent);
  margin-bottom: 1.75rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Orbitron', monospace; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 3px; cursor: pointer; text-decoration: none;
  transition: all 0.3s; position: relative; overflow: hidden;
  white-space: nowrap; border: none;
}
.btn span { position: relative; z-index: 1; }

.btn-gold {
  padding: 0.85rem 2.2rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0; transition: opacity 0.3s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,184,75,0.4); }
.btn-gold:hover::before { opacity: 1; }

.btn-outline {
  padding: 0.85rem 2.2rem;
  background: transparent; color: var(--gold);
  border: 1px solid var(--border-bright);
}
.btn-outline:hover {
  background: rgba(232,184,75,0.07); border-color: var(--gold);
  transform: translateY(-2px); box-shadow: var(--glow);
}

/* ─── CARDS ─── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; transition: all 0.3s; position: relative; overflow: hidden;
}
.card:hover { border-color: var(--border-bright); }

/* ─── FOOTER ─── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid var(--border); margin-bottom: 2rem;
}

.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand img { width: 38px; height: 38px; filter: drop-shadow(0 0 8px rgba(232,184,75,0.3)); }
.footer-brand-name {
  font-family: 'Orbitron', monospace; font-weight: 700;
  font-size: 1rem; color: var(--gold); letter-spacing: 0.1em;
}

.footer-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; max-width: 300px; font-weight: 400; }

.social-links { display: flex; gap: 0.65rem; margin-top: 1.5rem; }
.social-link {
  width: 36px; height: 36px; border: 1px solid var(--border);
  border-radius: 5px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none; color: var(--text-muted);
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--border-bright); color: var(--gold);
  background: rgba(232,184,75,0.05); transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Orbitron', monospace; font-size: 0.62rem;
  letter-spacing: 0.2em; color: var(--gold-dark);
  text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 700;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  text-decoration: none; color: var(--text-muted);
  font-size: 0.88rem; font-weight: 500;
  transition: color 0.2s; display: flex; align-items: center; gap: 0.45rem;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; }
.footer-bottom span { color: var(--gold-dark); }

/* ─── REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9000;
  padding: 1rem 1.5rem; background: var(--bg3); border-radius: 6px;
  display: flex; align-items: center; gap: 0.75rem;
  font-weight: 600; font-size: 0.9rem;
  transform: translateY(120px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none; max-width: 360px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border: 1px solid rgba(0,200,100,0.3); }
.toast.error   { border: 1px solid rgba(255,60,60,0.3); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 4rem 1rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
