/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary: #1a5276;
    --primary-dark: #154360;
    --primary-light: #2874a6;
    --secondary: #2980b9;
    --secondary-dark: #21618c;
    --secondary-light: #3498db;
    --accent: #3498db;
    --accent-light: #5dade2;
    --accent-dark: #2874a6;
    
    --success: #27ae60;
    --success-light: #2ecc71;
    --success-dark: #229954;
    
    --warning: #f39c12;
    --warning-light: #f1c40f;
    --warning-dark: #d68910;
    
    --danger: #e74c3c;
    --danger-light: #ec7063;
    --danger-dark: #c0392b;
    
    --light: #ecf0f1;
    --light-dark: #bdc3c7;
    --light-light: #f8f9fa;
    
    --dark: #2c3e50;
    --dark-light: #34495e;
    --dark-dark: #1b2631;
    
    --white: #ffffff;
    --black: #000000;
    --gray: #95a5a6;
    --gray-light: #bdc3c7;
    --gray-dark: #7f8c8d;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 15px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 5px;
    --radius: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    --radius-full: 50%;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Typography */
    --font-family: 'Tajawal', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 2rem;
    --font-size-xxxl: 2.5rem;
    
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    
    --line-height-tight: 1.25;
    --line-height: 1.5;
    --line-height-loose: 1.75;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    
    /* Breakpoints */
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1400px;
}