:root {
  /* Colors */
  --primary-color: #0f2b5c;       /* Deep Navy Blue */
  --primary-light: #1a3a70;       /* Lighter Navy Blue */
  --primary-rgb: 15, 43, 92;
  
  --secondary-color: #ff6a00;     /* Brilliant Orange */
  --secondary-hover: #e55e00;
  --secondary-rgb: 255, 106, 0;

  --accent-color: #2563eb;        /* Royal Blue */
  --accent-light: #eff6ff;        /* Super Light Blue */
  
  --text-main: #1e293b;           /* Slate 800 */
  --text-muted: #64748b;          /* Slate 500 */
  --text-light: #94a3b8;          /* Slate 400 */
  --text-white: #ffffff;
  
  --bg-light: #f8fafc;            /* Slate 50 */
  --bg-white: #ffffff;
  --bg-dark: #0a0f1d;             /* Dark blueish grey */
  
  /* Glassmorphism Styles */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-dark: rgba(10, 15, 29, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-border-dark: rgba(255, 255, 255, 0.08);
  --glass-blur: 16px;
  --glass-shadow: 0 8px 32px 0 rgba(15, 43, 92, 0.08);
  --glass-shadow-hover: 0 12px 40px 0 rgba(15, 43, 92, 0.15);
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 43, 92, 0.04);
  --shadow-md: 0 10px 20px -5px rgba(15, 43, 92, 0.06), 0 4px 6px -2px rgba(15, 43, 92, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(15, 43, 92, 0.1), 0 10px 10px -5px rgba(15, 43, 92, 0.04);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Max Width */
  --max-width: 1280px;
  --header-height: 80px;
}
