/* ==========================================================
   Al Sawy Waterproofing — Design Tokens & Variables
   ========================================================== */

:root {
  /* Colors */
  --bg-primary: #0a0c10;
  --bg-secondary: #12161f;
  --bg-tertiary: #1a202c;
  
  --card-bg: rgba(26, 32, 44, 0.65);
  --card-border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(18, 22, 31, 0.75);
  --glass-border: rgba(212, 168, 67, 0.2);
  
  --text-primary: #f8f9fa;
  --text-secondary: #a0aec0;
  --text-muted: #718096;
  
  --royal-blue: #1e40af;
  --royal-blue-hover: #1d4ed8;
  --royal-blue-glow: rgba(30, 64, 175, 0.4);
  
  --gold-accent: #d4a843;
  --gold-hover: #e5b84c;
  --gold-glow: rgba(212, 168, 67, 0.35);
  
  --white: #ffffff;
  --black: #000000;
  
  /* Typography */
  --font-heading: 'Outfit', 'Cairo', sans-serif;
  --font-body: 'Inter', 'Cairo', sans-serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1320px;
  
  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 25px var(--gold-glow);
  --shadow-blue-glow: 0 0 25px var(--royal-blue-glow);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}
