/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    /* Premium Light Blue & White Identity */
    --primary-color: #2196F3;
    --primary-hover: #1976D2;
    --secondary-color: #64B5F6;
    --accent-color: #0D47A1;
    --background-color: #FFFFFF;
    --surface-color: #EAF6FF;
    --text-color: #12304A;
    --text-muted: #546E7A;
    --border-color: #BBDEFB;
    
    /* Arabic Typography */
    --font-heading: 'Cairo', sans-serif;
    --font-body: 'Cairo', sans-serif;
}