/* ========================================
   Design Tokens & CSS Variables
   تركي للاستشارات القانونية
   ======================================== */

:root {
    /* --- Colors --- */
    --primary: #0d2e2e;
    --primary-light: #1a3f3f;
    --primary-dark: #081f1f;
    --primary-rgb: 13, 46, 46;

    --gold: #c9a84c;
    --gold-light: #d4b95e;
    --gold-dark: #b8942f;
    --gold-rgb: 201, 168, 76;
    --gold-gradient: linear-gradient(135deg, #d4b95e, #c9a84c, #b8942f);
    --gold-gradient-hover: linear-gradient(135deg, #e0c76f, #d4b95e, #c9a84c);

    --bg: #f7f5f0;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.08);

    --text: #2c2c2c;
    --text-light: #6b6b6b;
    --text-on-dark: #e8e4dc;
    --white: #ffffff;
    --white-rgb: 255, 255, 255;

    /* --- Shadows --- */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.35);
    --shadow-gold-lg: 0 8px 32px rgba(201, 168, 76, 0.5);

    /* --- Borders --- */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;

    /* --- Transitions --- */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --duration-fast: 0.2s;
    --duration: 0.3s;
    --duration-slow: 0.5s;
    --duration-slower: 0.8s;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* --- Typography --- */
    --font: 'Tajawal', sans-serif;
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3.2rem;

    /* --- Spacing --- */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 100px;

    /* --- Z-index --- */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-overlay: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
}
