/* assets/css/modern.css - Ultra Modern Enterprise UI (Indolj, Vercel & Stripe inspired) */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --primary-deep: #0c4a6e;
  --primary-light: #e0f2fe;
  --secondary: #0f172a;
  --accent: #38bdf8;
  --accent-cyan: #06b6d4;
  --accent-green: #10b981;
  --accent-amber: #f59e0b;
  --bg-main: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-dark: #070d1d;
  --bg-dark-card: #0d182e;
  --border: #e2e8f0;
  --border-dark: #1e293b;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 45px -10px rgba(15, 23, 42, 0.12);
  --shadow-hover: 0 22px 50px -10px rgba(2, 132, 199, 0.22);
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.25;
}

/* Top Bar */
.top-bar {
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar a {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition);
}
.top-bar a:hover {
  color: var(--accent);
}

/* Main Navbar */
.main-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding: 16px 0;
  transition: var(--transition);
  z-index: 1030;
}
.main-navbar.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.navbar-brand img {
  transition: var(--transition);
}
.navbar-brand:hover img {
  transform: scale(1.04);
}
.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: #334155 !important;
  padding: 8px 18px !important;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
  background-color: var(--primary-light);
}

/* Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary) 0%, #0369a1 100%);
  color: #ffffff !important;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.45);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.btn-secondary-custom {
  background: #ffffff;
  color: var(--text-dark) !important;
  border: 1px solid var(--border);
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary-custom:hover {
  background: var(--bg-subtle);
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Subpage Hero */
.subpage-hero {
  position: relative;
  background: linear-gradient(135deg, #070d1d 0%, #0d1e3d 50%, #051329 100%);
  color: #ffffff;
  padding: 90px 0 80px;
  overflow: hidden;
}
.subpage-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(56, 189, 248, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.subpage-hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: 10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, rgba(2, 132, 199, 0.05) 50%, transparent 70%);
  pointer-events: none;
}
.subpage-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 7px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.subpage-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
}
.subpage-hero-title .gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.subpage-hero-lead {
  font-size: 1.15rem;
  color: #94a3b8;
  max-width: 720px;
  margin: 0 auto 30px;
  line-height: 1.7;
}
.hero-pills-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.hero-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Hero Section - High Tech Cyber Enterprise */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 10% 20%, #0d1e3d 0%, #070d1d 50%, #030712 100%);
  color: #ffffff;
  padding: 100px 0 90px;
  overflow: hidden;
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.hero-glow-1 {
  position: absolute;
  top: -150px;
  right: 5%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, rgba(2, 132, 199, 0.08) 50%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
  animation: glowPulse 8s ease-in-out infinite alternate;
}
.hero-glow-2 {
  position: absolute;
  bottom: -100px;
  left: 10%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, rgba(14, 165, 233, 0.05) 50%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
  animation: glowPulse 10s ease-in-out infinite alternate-reverse;
}
@keyframes glowPulse {
  0% { transform: scale(1) translateY(0); opacity: 0.8; }
  100% { transform: scale(1.15) translateY(-20px); opacity: 1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.75);
  color: #38bdf8;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.live-pulse-dot {
  width: 9px;
  height: 9px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #ffffff;
}
.hero-gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 600px;
}

/* Feature Chips on Hero */
.hero-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.hero-chip:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
}
.hero-chip i {
  color: #38bdf8;
}

/* CTA Buttons Over Dark */
.btn-hero-primary {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 25px rgba(2, 132, 199, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(56, 189, 248, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #0369a1 0%, #1d4ed8 100%);
}

.btn-hero-whatsapp {
  background: rgba(16, 185, 129, 0.15);
  color: #ffffff !important;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-hero-whatsapp:hover {
  background: #10b981;
  color: #ffffff !important;
  border-color: #10b981;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0 !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
  transform: translateY(-3px);
}

/* Glass Command Center / Hero Card */
.hero-command-card {
  position: relative;
  background: rgba(13, 24, 46, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 32px 28px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6), 0 0 35px rgba(56, 189, 248, 0.12);
  z-index: 10;
}
.hero-command-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.hero-tab-nav {
  display: flex;
  background: rgba(15, 23, 42, 0.6);
  padding: 4px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  gap: 4px;
}
.hero-tab-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.hero-tab-btn.active, .hero-tab-btn:hover {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.4);
}

/* Dark Hero Form Elements */
.hero-command-card .form-label {
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-command-card .form-control,
.hero-command-card .form-select {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f1f5f9;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.88rem;
  transition: var(--transition);
}
.hero-command-card .form-control::placeholder {
  color: #64748b;
}
.hero-command-card .form-control:focus,
.hero-command-card .form-select:focus {
  background: rgba(15, 23, 42, 0.95);
  border-color: #38bdf8;
  color: #ffffff;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}
.hero-command-card .form-select option {
  background: #0f172a;
  color: #ffffff;
}

/* Floating Status Badges around Card */
.hero-floating-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 16px;
  padding: 10px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(56, 189, 248, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 12;
  animation: floatBadge 6s ease-in-out infinite;
}
.hero-floating-badge.badge-top {
  top: -24px;
  right: -15px;
  animation-delay: 0s;
}
.hero-floating-badge.badge-bottom {
  bottom: -22px;
  left: -20px;
  animation-delay: 3s;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Solutions Matrix in Hero Tab */
.hero-tech-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  transition: var(--transition);
  cursor: pointer;
}
.hero-tech-card:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Hero Stats Bar */
.hero-stats-row {
  margin-top: 45px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.hero-stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Brand Hardware Partners Bar */
.brand-partner-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  transition: var(--transition);
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.brand-partner-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

/* =========================================================
   ATTRACTIVE MODERN FEATURE & SERVICE CARDS (Glass & Lift)
   ========================================================= */
.feature-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Animated Top Gradient Accent */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0284c7 0%, #38bdf8 50%, #818cf8 100%);
  opacity: 0.85;
  transition: var(--transition);
}

/* Ambient Hover Glow Background */
.feature-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 132, 199, 0.35);
  box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
  height: 6px;
  opacity: 1;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 66px;
  height: 66px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.12) 0%, rgba(56, 189, 248, 0.18) 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 24px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.1);
}

.feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--primary) 0%, #0369a1 100%);
  color: #ffffff;
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
}

/* =========================================================
   ATTRACTIVE PRODUCT CARDS (High-Tech Floating Cards)
   ========================================================= */
.product-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(2, 132, 199, 0.35);
}

.product-card-img {
  height: 240px;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-body {
  padding: 28px 26px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.product-price-tag {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* =========================================================
   ATTRACTIVE OFFER & PACKAGE CARDS (Gradient & Badges)
   ========================================================= */
.offer-card {
  background: #ffffff;
  border: 2px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.offer-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  box-shadow: 0 20px 40px -10px rgba(2, 132, 199, 0.18);
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.offer-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, #0369a1 100%);
  color: white;
  padding: 7px 22px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

/* Stats Dark Banner */
.stats-banner {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-card) 100%);
  color: white;
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 6px;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer h5 {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.site-footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}
.site-footer a:hover {
  color: var(--accent);
  padding-left: 4px;
}

/* Admin Dashboard Styling */
.admin-sidebar {
  min-height: 100vh;
  background: #091124;
  color: #cbd5e1;
  padding: 20px 0;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.admin-sidebar .nav-link {
  color: #94a3b8 !important;
  padding: 12px 20px !important;
  border-radius: var(--radius-sm);
  margin: 4px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.admin-sidebar .nav-link:hover, .admin-sidebar .nav-link.active {
  background: #132247;
  color: var(--accent) !important;
}
.admin-stat-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.admin-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 991px) {
  .hero-title, .subpage-hero-title {
    font-size: 2.4rem;
  }
  .hero-section {
    padding: 60px 0;
  }
  .hero-floating-badge {
    position: static;
    margin-bottom: 12px;
    display: inline-flex !important;
  }
  .hero-command-card {
    margin-top: 20px;
    padding: 24px 18px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-feature-chips {
    gap: 6px;
  }
  .hero-chip {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
  .hero-stats-row {
    margin-top: 30px;
    padding-top: 20px;
  }
}