/* Design Tokens & CSS Custom Properties for R.K. Plastic */
:root {
  /* Brand Colors */
  --primary-navy: #0B192C;
  --primary-navy-light: #1E3E62;
  --primary-navy-dark: #070F1E;
  
  --accent-orange: #FF6500;
  --accent-orange-hover: #FF8A00;
  --accent-orange-light: #FFF7ED;
  --accent-orange-glow: rgba(255, 101, 0, 0.25);
  
  /* Neutral Palette */
  --bg-main: #FFFFFF;
  --bg-surface: #F8FAFC;
  --bg-surface-alt: #F1F5F9;
  
  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  
  --border-light: #E2E8F0;
  --border-muted: #CBD5E1;
  --border-focus: #FF6500;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-bg-dark: rgba(11, 25, 44, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-border-dark: rgba(255, 101, 0, 0.3);
  --glass-backdrop-blur: blur(12px);

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 6px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 32px -8px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 48px -12px rgba(11, 25, 44, 0.2);
  --shadow-orange: 0 10px 25px -5px rgba(255, 101, 0, 0.35);

  /* Typography */
  --font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Layout Widths */
  --max-width-container: 1280px;
}
