/* Premium Styles - Nkusi IT Deal Machine */
/* Shared CSS for consistent styling across all pages */

/* Mobile First - Bottom Navigation */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}

.bottom-nav-items {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-evenly !important;
  align-items: center !important;
  height: 100%;
  width: 100%;
  padding: 0 8px;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.bottom-nav-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  color: #6b7280;
  font-size: 9px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  transition: all 0.2s;
  min-width: 56px;
}

.bottom-nav-item.active {
  color: #FF6B35;
  background: rgba(255, 107, 53, 0.15);
}

.bottom-nav-item i,
.bottom-nav-item svg {
  width: 22px !important;
  height: 22px !important;
  margin-bottom: 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .main-content,
  .ml-56 {
    margin-left: 0 !important;
    padding-bottom: 90px !important;
  }
  .mobile-header {
    display: flex !important;
  }
  .desktop-header, .top-bar {
    display: none !important;
  }
  .bottom-nav {
    display: flex !important;
  }

  /* CRITICAL: Stack 12-col grid to single column */
  .grid-cols-12 {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }
  .col-span-4,
  .col-span-8,
  .col-span-12 {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Stack other grids */
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Text sizes */
  body { font-size: 13px; }
  .text-lg { font-size: 0.95rem !important; }
  .text-xl { font-size: 1.05rem !important; }
  .text-2xl { font-size: 1.15rem !important; }
  .text-3xl { font-size: 1.3rem !important; }

  /* Cards */
  .card { border-radius: 12px; }
  .card-body { padding: 14px; }
  .card-header { padding: 12px 14px; }
  .card-header h3 { font-size: 13px !important; }

  /* Buttons */
  .btn-action {
    padding: 8px 14px;
    font-size: 11px;
    border-radius: 8px;
  }

  /* Spacing */
  .p-6 { padding: 14px !important; }
  .px-6 { padding-left: 14px !important; padding-right: 14px !important; }
  .py-4 { padding-top: 12px !important; padding-bottom: 12px !important; }
  .gap-6 { gap: 14px !important; }
  .mb-6 { margin-bottom: 14px !important; }

  /* Hide on mobile */
  .hide-mobile { display: none !important; }

  /* Tables */
  table { font-size: 11px; }
  th, td { padding: 8px 6px !important; }

  /* Logo */
  .logo-container img { height: 65px !important; }

  /* Stat boxes */
  .stat-box { padding: 10px 12px; }

  /* Metric circle */
  .metric-circle { width: 140px !important; height: 140px !important; }

  /* Full width inputs */
  .w-64 { width: 100% !important; }

  /* Flex wrapping */
  .flex.justify-between { flex-wrap: wrap; gap: 8px; }
}

@media (min-width: 769px) {
  .mobile-header { display: none !important; }
  .mobile-overlay { display: none !important; }
  .bottom-nav { display: none !important; }
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 40;
  display: none;
}
.mobile-overlay.open {
  display: block;
}

:root {
  --mast-grey: #2D2D2D;
  --card-bg: #1a1a1a;
  --card-border: #333;
  --nkusi-orange: #FF6B35;
  --nkusi-green: #22c55e;
}

body {
  background: linear-gradient(180deg, #2D2D2D 0%, #1f1f1f 100%);
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Smooth all borders globally */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Premium Card Styling */
.card {
  background: linear-gradient(145deg, #1e1e1e 0%, #151515 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 1px 2px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
  border-radius: 0;
}

.card-body {
  padding: 20px;
  border-radius: 0;
}

/* Glowing status dots */
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px currentColor;
}

.status-high {
  background: #ef4444;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.6);
}
.status-medium {
  background: #f59e0b;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}
.status-low {
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}

/* Premium Sidebar */
.sidebar {
  background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-link {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 10px;
  color: #9ca3af;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.sidebar-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.25s;
}

.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transform: translateX(4px);
}

.sidebar-link:hover::before {
  opacity: 1;
}

.sidebar-link.active {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
  color: white;
  border-left: 3px solid var(--nkusi-orange);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.1);
}

/* Enhanced Progress Bars */
.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.progress-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px currentColor;
}

.progress-fill.bg-red-500 {
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.5);
}

.progress-fill.bg-yellow-500 {
  background: linear-gradient(90deg, #d97706 0%, #f59e0b 100%);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
}

.progress-fill.bg-blue-500 {
  background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

.progress-fill.bg-green-500 {
  background: linear-gradient(90deg, #16a34a 0%, #22c55e 100%);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
}

.progress-fill.bg-purple-500 {
  background: linear-gradient(90deg, #7c3aed 0%, #a855f7 100%);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.5);
}

/* Logo container */
.logo-container img {
  display: block;
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.3));
}

/* Premium Live Badge */
.live-badge {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.6); }
}

/* Premium Buttons */
.btn-action {
  background: linear-gradient(145deg, #2a2a2a 0%, #1f1f1f 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 12px;
  color: white;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.btn-action:hover {
  background: linear-gradient(145deg, #333 0%, #2a2a2a 100%);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff7a4a 0%, #FF6B35 100%);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.btn-success {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.btn-success:hover {
  background: linear-gradient(135deg, #34d399 0%, #22c55e 100%);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  transform: translateY(-2px);
}

.btn-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
  transform: translateY(-2px);
}

/* Premium Input */
.search-input,
.form-input {
  background: linear-gradient(145deg, #1f1f1f 0%, #1a1a1a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.25s;
  color: white;
}

.search-input:focus,
.form-input:focus {
  border-color: rgba(255, 107, 53, 0.5);
  outline: none;
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.2),
    0 0 16px rgba(255, 107, 53, 0.15);
}

/* Premium Table Rows */
.table-row {
  transition: all 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.table-row:hover {
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
}

/* Stat boxes with subtle glow */
.stat-box {
  background: linear-gradient(145deg, #1a1a1a 0%, #141414 100%);
  border-radius: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: all 0.2s;
}

.stat-box:hover {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, #1e1e1e 0%, #181818 100%);
}

/* AI Insight Box Premium */
.ai-insight {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.02) 100%);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-left: 4px solid #22c55e;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.1);
}

/* Category Cards */
.category-card {
  background: linear-gradient(145deg, #1e1e1e 0%, #151515 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px;
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.category-card.hot:hover {
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.15);
}

.category-card.warm:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
}

.category-card.watching:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

/* Masthead Premium */
.masthead {
  background: linear-gradient(135deg, #2D2D2D 0%, #252525 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.masthead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
}

/* Subtle text glow for headings */
.text-glow {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Activity item */
.activity-item {
  background: linear-gradient(145deg, #1a1a1a 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: all 0.2s;
}

.activity-item:hover {
  background: linear-gradient(145deg, #1e1e1e 0%, #181818 100%);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #444 0%, #333 100%);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #555 0%, #444 100%);
}

/* Smooth Top Bar */
.top-bar {
  background: linear-gradient(180deg, #1a1a1a 0%, #161616 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Table wrapper for smooth corners */
.table-wrapper {
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}

/* Select dropdown smooth */
select {
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(145deg, #1f1f1f 0%, #1a1a1a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  padding: 6px 12px;
  cursor: pointer;
}

select:focus {
  outline: none;
  border-color: rgba(255, 107, 53, 0.5);
}

/* Icon containers */
.icon-box {
  border-radius: 10px;
  overflow: hidden;
}

/* Badge styles */
.badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-hot {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-warm {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-cool {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-neutral {
  background: linear-gradient(135deg, rgba(156, 163, 175, 0.2) 0%, rgba(156, 163, 175, 0.1) 100%);
  color: #d1d5db;
  border: 1px solid rgba(156, 163, 175, 0.3);
}

/* Premium Modal/Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

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

.modal {
  background: linear-gradient(145deg, #1e1e1e 0%, #151515 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  max-height: 60vh;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.modal-close {
  background: transparent;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: all 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Info/Detail cards */
.info-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 16px;
  transition: all 0.2s;
}

.info-card:hover {
  border-color: rgba(255, 255, 255, 0.08);
}

/* Timeline styling */
.timeline-item {
  position: relative;
  padding-left: 24px;
  padding-bottom: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.5) 0%, rgba(255, 107, 53, 0.1) 100%);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--nkusi-orange);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.5);
}

.timeline-item:last-child::before {
  display: none;
}

/* Tab navigation */
.tab-nav {
  display: flex;
  gap: 4px;
  background: linear-gradient(145deg, #1a1a1a 0%, #141414 100%);
  padding: 4px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.tab-btn {
  padding: 8px 16px;
  border-radius: 10px;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
  color: white;
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.2);
}

/* Metric/Stat display */
.metric-display {
  text-align: center;
  padding: 16px;
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, #9ca3af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Alert boxes */
.alert {
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.alert-warning {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #fbbf24;
}

.alert-danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.alert-success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.alert-info {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

/* Form groups */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #9ca3af;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
}

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

/* Utility: Glow effects */
.glow-orange { box-shadow: 0 0 20px rgba(255, 107, 53, 0.3); }
.glow-green { box-shadow: 0 0 20px rgba(34, 197, 94, 0.3); }
.glow-red { box-shadow: 0 0 20px rgba(239, 68, 68, 0.3); }
.glow-blue { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
.glow-yellow { box-shadow: 0 0 20px rgba(245, 158, 11, 0.3); }
