/* ================================================================
   NEXTGENHOLOGRAM — hologram.css
   Dark holographic UI: cyan #00d4ff, magenta #ff0080
   Fonts: Orbitron (display), Rajdhani (body), Space Mono (mono)
================================================================ */

:root {
  --cyan:       #00d4ff;
  --cyan-dim:   #00a3c4;
  --cyan-glow:  rgba(0, 212, 255, 0.3);
  --magenta:    #ff0080;
  --mag-glow:   rgba(255, 0, 128, 0.3);
  --gold:       #ffd700;
  --bg:         #050810;
  --bg2:        #080d1a;
  --bg3:        #0d1526;
  --surface:    rgba(255,255,255,0.04);
  --surface2:   rgba(255,255,255,0.08);
  --border:     rgba(0,212,255,0.2);
  --border2:    rgba(0,212,255,0.4);
  --text:       #e8eaf0;
  --text-muted: rgba(232,234,240,0.55);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

.orbitron { font-family: 'Orbitron', monospace; }
.rajdhani { font-family: 'Rajdhani', sans-serif; }
.mono { font-family: 'Space Mono', monospace; }

/* ── AMBIENT OVERLAYS ─────────────────────────────────────────── */
.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  opacity: 0.4;
}
.grid-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: 'Orbitron', monospace; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

.text-cyan  { color: var(--cyan) !important; }
.text-magenta { color: var(--magenta) !important; }

a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }

/* ── NAVBAR ───────────────────────────────────────────────────── */
.holo-nav {
  background: rgba(5,8,16,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: all var(--transition);
}
.holo-nav.scrolled {
  padding: 8px 0;
  background: rgba(5,8,16,0.97);
}

.brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-text {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--cyan);
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px var(--cyan-glow);
}

.nav-link {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  transition: left var(--transition), right var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--cyan) !important;
}
.nav-link:hover::after, .nav-link.active::after {
  left: 14px; right: 14px;
}

.holo-dropdown {
  background: rgba(8,13,26,0.97);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 8px;
  backdrop-filter: blur(20px);
}
.holo-dropdown .dropdown-item {
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 6px;
  padding: 8px 14px;
  transition: all var(--transition);
}
.holo-dropdown .dropdown-item:hover {
  background: var(--surface2);
  color: var(--cyan);
}
.holo-dropdown .dropdown-divider { border-color: var(--border); }

.holo-toggler {
  display: flex; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px;
}
.holo-toggler span {
  display: block; height: 2px; width: 24px;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  transition: all var(--transition);
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn-holo {
  background: linear-gradient(135deg, var(--cyan), #0088aa);
  border: none;
  color: #000;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 0 20px var(--cyan-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-holo::before {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 60%; height: 200%;
  background: rgba(255,255,255,0.15);
  transform: skewX(-20deg);
  transition: left var(--transition);
}
.btn-holo:hover {
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--cyan-glow), 0 8px 25px rgba(0,212,255,0.3);
}
.btn-holo:hover::before { left: 120%; }

.btn-holo-outline {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all var(--transition);
  box-shadow: 0 0 12px var(--cyan-glow), inset 0 0 12px rgba(0,212,255,0.05);
}
.btn-holo-outline:hover {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 0 30px var(--cyan-glow);
}

.btn-magenta {
  background: linear-gradient(135deg, var(--magenta), #aa0055);
  border: none;
  color: #fff;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 8px;
  transition: all var(--transition);
  box-shadow: 0 0 20px var(--mag-glow);
}
.btn-magenta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--mag-glow);
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,212,255,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 80% 60%, rgba(255,0,128,0.06) 0%, transparent 60%),
              var(--bg);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,8,16,0.3) 0%, rgba(5,8,16,0.7) 100%);
}

.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--cyan);
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) translateX(var(--drift)); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.1);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }

.hero-title {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 28px;
}
.title-gradient {
  background: linear-gradient(135deg, var(--cyan) 0%, #fff 50%, var(--magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-3d-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.holo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  animation: rotate-ring linear infinite;
  opacity: 0.5;
}
.holo-ring:nth-child(1) { width:300px;height:300px; animation-duration:20s; border-color: rgba(0,212,255,0.4); }
.holo-ring:nth-child(2) { width:220px;height:220px; animation-duration:15s; animation-direction:reverse; border-color: rgba(255,0,128,0.3); border-style:dashed; }
.holo-ring:nth-child(3) { width:140px;height:140px; animation-duration:10s; border-color: rgba(0,212,255,0.6); }
@keyframes rotate-ring { from{transform:rotate(0deg) rotateX(60deg)} to{transform:rotate(360deg) rotateX(60deg)} }

.holo-core {
  width: 80px; height: 80px;
  background: radial-gradient(circle, var(--cyan) 0%, rgba(0,212,255,0.1) 70%, transparent 100%);
  border-radius: 50%;
  box-shadow: 0 0 40px var(--cyan), 0 0 80px var(--cyan-glow);
  animation: pulse-core 3s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes pulse-core { 0%,100%{box-shadow:0 0 40px var(--cyan),0 0 80px var(--cyan-glow)} 50%{box-shadow:0 0 60px var(--cyan),0 0 120px var(--cyan-glow)} }

/* ── SECTION STYLES ───────────────────────────────────────────── */
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before, .section-label::after {
  content: '';
  flex: 0 0 30px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}
.section-label::after { flex: 0 0 10px; }

.section-title {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  margin-bottom: 20px;
}

/* ── GLASS CARD ───────────────────────────────────────────────── */
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all var(--transition);
  overflow: hidden;
}
.glass-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 30px var(--cyan-glow), 0 20px 60px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

/* ── PRODUCT CARD ─────────────────────────────────────────────── */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 40px var(--cyan-glow), 0 20px 60px rgba(0,0,0,0.5);
  transform: translateY(-6px);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg3);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
  filter: saturate(0.9) contrast(1.05);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--magenta);
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 0 12px var(--mag-glow);
}
.product-badge.sale { background: var(--gold); color: #000; }
.product-badge.new { background: var(--cyan); color: #000; }

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,8,16,0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }

.product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-name {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  color: #fff;
}
.product-desc { color: var(--text-muted); font-size: 0.9rem; flex: 1; margin-bottom: 16px; }
.product-price { display: flex; align-items: baseline; gap: 10px; }
.price-current {
  font-family: 'Orbitron', monospace;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--cyan);
}
.price-original {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ── SOLUTION CARD ────────────────────────────────────────────── */
.solution-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.solution-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.solution-card:hover::before { transform: scaleX(1); }

.solution-icon {
  width: 60px; height: 60px;
  background: rgba(0,212,255,0.1);
  border: 1px solid var(--border2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--cyan);
  margin-bottom: 20px;
  transition: all var(--transition);
}
.solution-card:hover .solution-icon {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 0 20px var(--cyan-glow);
}

/* ── BLOG CARD ────────────────────────────────────────────────── */
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 0 30px var(--cyan-glow);
}
.blog-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg3);
}
.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
  filter: saturate(0.85);
}
.blog-card:hover .blog-img img { transform: scale(1.05); filter: saturate(1); }

.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-cat-badge {
  background: rgba(0,212,255,0.1);
  color: var(--cyan);
  border: 1px solid var(--border2);
  padding: 2px 10px;
  border-radius: 50px;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.blog-title {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
  color: #fff;
  transition: color var(--transition);
}
.blog-card:hover .blog-title { color: var(--cyan); }
.blog-excerpt { color: var(--text-muted); font-size: 0.9rem; flex: 1; margin-bottom: 16px; }

.read-more {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.blog-card:hover .read-more { gap: 12px; }

/* ── FEATURE SECTION ──────────────────────────────────────────── */
.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.feature-item:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
}
.feature-icon {
  flex: 0 0 48px;
  width: 48px; height: 48px;
  background: rgba(0,212,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--cyan);
}

/* ── STATS SECTION ────────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, rgba(0,212,255,0.05) 0%, rgba(255,0,128,0.03) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-box {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}
.stat-box::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}
.stat-box:last-child::after { display: none; }
.stat-number {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  text-shadow: 0 0 30px var(--cyan-glow);
}
.stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── GLOW DIVIDER ─────────────────────────────────────────────── */
.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%);
  box-shadow: 0 0 10px var(--cyan);
  margin: 20px 0;
}

/* ── FORM STYLES ──────────────────────────────────────────────── */
.holo-form .form-control,
.holo-form .form-select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  transition: all var(--transition);
}
.holo-form .form-control:focus,
.holo-form .form-select:focus {
  background: rgba(0,212,255,0.05);
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
  color: var(--text);
  outline: none;
}
.holo-form .form-control::placeholder { color: var(--text-muted); }
.holo-form .form-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 6px;
}

/* ── PAGE HERO ────────────────────────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0,212,255,0.1) 0%, transparent 70%),
              var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero-bg-text {
  position: absolute;
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 15vw;
  color: rgba(255,255,255,0.015);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}

/* ── BREADCRUMB ───────────────────────────────────────────────── */
.holo-breadcrumb .breadcrumb-item {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.holo-breadcrumb .breadcrumb-item a { color: var(--cyan); }
.holo-breadcrumb .breadcrumb-item.active { color: var(--text-muted); }
.holo-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); content: '›'; }

/* ── TECH GRID ────────────────────────────────────────────────── */
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.08);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
}

/* ── SPEC TABLE ───────────────────────────────────────────────── */
.spec-table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.spec-table .spec-row {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition);
}
.spec-table .spec-row:last-child { border-bottom: none; }
.spec-table .spec-row:hover { background: rgba(0,212,255,0.05); }
.spec-key {
  flex: 0 0 160px;
  padding: 12px 16px;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.05em;
  border-right: 1px solid var(--border);
  background: rgba(0,212,255,0.03);
}
.spec-val {
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text);
}

/* ── PAGINATION ───────────────────────────────────────────────── */
.holo-pagination .page-item .page-link {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  padding: 8px 16px;
  transition: all var(--transition);
}
.holo-pagination .page-item.active .page-link,
.holo-pagination .page-item .page-link:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #000;
  box-shadow: 0 0 15px var(--cyan-glow);
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.holo-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  position: relative;
}
.footer-glow-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 20px var(--cyan);
}
.footer-heading {
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
}
.social-btn {
  width: 38px; height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #000;
  box-shadow: 0 0 15px var(--cyan-glow);
}

/* ── WHATSAPP FAB ─────────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff !important;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.05); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
.fab-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ── BACK TO TOP ──────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 90px; right: 28px;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 10px;
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  opacity: 0; pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--cyan); color: #000; }

/* ── ADMIN STYLES ─────────────────────────────────────────────── */
.admin-sidebar {
  width: 260px;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  height: 100vh;
  position: fixed;
  top: 0; left: 0;
  overflow-y: auto;
  z-index: 100;
}
.admin-content {
  margin-left: 260px;
  min-height: 100vh;
  background: var(--bg);
}
.admin-topbar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky; top: 0; z-index: 50;
}
.admin-main { padding: 32px 24px; }

.sidebar-logo {
  padding: 24px 20px;
  border-bottom: 1px solid var(--border);
}
.sidebar-nav { padding: 16px 12px; }
.sidebar-section-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 8px 6px;
  margin-top: 8px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
  margin-bottom: 2px;
}
.sidebar-link:hover, .sidebar-link.active {
  background: rgba(0,212,255,0.1);
  color: var(--cyan);
}
.sidebar-link i { font-size: 1rem; width: 20px; text-align: center; }
.sidebar-badge {
  margin-left: auto;
  background: var(--magenta);
  color: #fff;
  font-size: 0.65rem;
  padding: 2px 7px;
  border-radius: 50px;
}

.admin-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}
.admin-stat-card:hover { border-color: var(--cyan); }
.admin-stat-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border2);
  text-align: left;
  white-space: nowrap;
}
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 0.9rem;
  vertical-align: middle;
}
.data-table tr:hover td { background: rgba(0,212,255,0.03); }

.badge-active { background: rgba(0,212,255,0.15); color: var(--cyan); border-radius: 50px; padding: 3px 10px; font-size: 0.7rem; font-family: 'Space Mono', monospace; }
.badge-inactive { background: rgba(255,0,128,0.15); color: var(--magenta); border-radius: 50px; padding: 3px 10px; font-size: 0.7rem; font-family: 'Space Mono', monospace; }
.badge-published { background: rgba(0,212,255,0.15); color: var(--cyan); border-radius: 50px; padding: 3px 10px; font-size: 0.7rem; font-family: 'Space Mono', monospace; }
.badge-draft { background: rgba(255,215,0,0.15); color: var(--gold); border-radius: 50px; padding: 3px 10px; font-size: 0.7rem; font-family: 'Space Mono', monospace; }

/* ── SCROLLBAR ────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ── ANIMATIONS ───────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes glitch {
  0% { text-shadow: 2px 0 var(--cyan), -2px 0 var(--magenta); }
  20% { text-shadow: -2px 0 var(--cyan), 2px 0 var(--magenta); }
  40% { text-shadow: 2px 2px var(--cyan), -2px -2px var(--magenta); }
  60% { text-shadow: -2px 2px var(--cyan), 2px -2px var(--magenta); }
  80% { text-shadow: 0 0 var(--cyan), 0 0 var(--magenta); }
  100% { text-shadow: 2px 0 var(--cyan), -2px 0 var(--magenta); }
}
.animate-fadeInUp { animation: fadeInUp 0.7s ease both; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 992px) {
  .admin-sidebar { transform: translateX(-100%); transition: transform var(--transition); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-content { margin-left: 0; }
  .hero-stats { gap: 24px; }
  .stat-box::after { display: none; }
}
@media (max-width: 768px) {
  .whatsapp-fab .fab-label { display: none; }
  .whatsapp-fab { padding: 12px; border-radius: 50%; }
  .hero-3d-visual { display: none; }
}
