:root {
    --primary-color: rgb(255, 193, 7);
    --primary-dark: rgb(230, 174, 6);
    --primary-light: rgb(255, 220, 80);
    --primary-rgb: 255, 193, 7;
    --success-color: #34C759;
    --success-dark: #28A745;
    --danger-color: #FF3B30;
    --warning-color: #FF9500;
    --warning-dark: #FF6B00;
    
    --gradient-primary: linear-gradient(135deg, rgb(255, 193, 7) 0%, rgb(230, 174, 6) 100%);
    --gradient-success: linear-gradient(135deg, #34C759 0%, #28A745 100%);
    --gradient-warning: linear-gradient(135deg, #FF9500 0%, #FF6B00 100%);
    --gradient-landing: linear-gradient(135deg, rgb(255, 193, 7) 0%, rgb(230, 174, 6) 100%);
    
    --bs-primary-rgb: 255, 193, 7;
    --bs-bg-opacity: 1;
    
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
    --border-radius-full: 50%;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    
    --z-index-base: 1;
    --z-index-dropdown: 100;
    --z-index-sticky: 200;
    --z-index-fixed: 300;
    --z-index-modal-backdrop: 400;
    --z-index-modal: 500;
    --z-index-popover: 600;
    --z-index-tooltip: 700;
    --z-index-max: 1000;
    
    --font-family-base: 'Estedad', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --bs-font-sans-serif: 'Estedad', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    --bs-body-font-family: 'Estedad', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.75rem;
    --font-size-4xl: 2rem;
    
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    direction: rtl;
}

body {
    font-family: var(--font-family-base) !important;
    direction: rtl;
    text-align: right;
}

* {
    font-family: var(--font-family-base) !important;
}

html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, button, input, textarea, select, label, li, ul, ol, table, th, td {
    font-family: var(--font-family-base) !important;
}

.navbar, .navbar-brand, .nav-link, .btn, .card, .modal, .form-control, .form-select, .form-label,
.alert, .badge, .dropdown-menu, .dropdown-item, .list-group, .list-group-item,
.tooltip, .popover, .toast, .toast-header, .toast-body {
    font-family: var(--font-family-base) !important;
}

