:root {
  /* === PRIMARY COLORS === */
  --primary-color: #2c5aa0;
  --primary-hover: #1e3d6f;
  --primary-light: #4a90e2;
  --primary-gradient: linear-gradient(135deg, #2c5aa0, #4a90e2);

  /* === SECONDARY COLORS === */
  --secondary-color: #333333;
  --secondary-light: #666666;
  --secondary-lighter: #999999;

  /* === BACKGROUND COLORS === */
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-primary-light: rgba(44, 90, 160, 0.1);
  --bg-primary-lighter: rgba(44, 90, 160, 0.05);

  /* === TEXT COLORS === */
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #999999;
  --text-white: #ffffff;
  --text-primary-color: #2c5aa0;

  /* === FONT SIZES === */
  --font-size-xs: 0.75rem; /* 12px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-base: 1rem; /* 16px */
  --font-size-lg: 1.125rem; /* 18px */
  --font-size-xl: 1.25rem; /* 20px */
  --font-size-2xl: 1.5rem; /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem; /* 36px */
  --font-size-5xl: 3rem; /* 48px */
  --font-size-6xl: 3.75rem; /* 60px */
  --font-size-7xl: 4.5rem; /* 72px */
  --font-size-8xl: 6rem; /* 96px */
  --font-size-9xl: 8rem; /* 128px */
  --font-size-10xl: 10rem; /* 160px */

  /* === FONT WEIGHTS === */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* === FONT FAMILIES === */
  --font-primary: "Arial", sans-serif;
  --font-secondary: "Helvetica", Arial, sans-serif;

  /* === SPACING === */
  --spacing-xs: 0.25rem; /* 4px */
  --spacing-sm: 0.5rem; /* 8px */
  --spacing-md: 1rem; /* 16px */
  --spacing-lg: 1.5rem; /* 24px */
  --spacing-xl: 2rem; /* 32px */
  --spacing-2xl: 3rem; /* 48px */
  --spacing-3xl: 4rem; /* 64px */

  /* === BORDER RADIUS === */
  --border-radius-sm: 5px;
  --border-radius-md: 10px;
  --border-radius-lg: 15px;
  --border-radius-xl: 25px;
  --border-radius-full: 50%;

  /* === SHADOWS === */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 6px 20px rgba(0, 0, 0, 0.15);
  --shadow-2xl: 0 10px 30px rgba(0, 0, 0, 0.2);

  /* === COMPONENT SPECIFIC SHADOWS === */
  --shadow-primary: 0 4px 15px rgba(44, 90, 160, 0.3);
  --shadow-primary-hover: 0 6px 20px rgba(44, 90, 160, 0.4);

  /* === TRANSITIONS === */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-all: all 0.3s ease;

  /* === Z-INDEX === */
  --z-index-dropdown: 1000;
  --z-index-sticky: 1020;
  --z-index-fixed: 1030;
  --z-index-modal: 1040;
  --z-index-popover: 1060;
  --z-index-tooltip: 1070;

  /* === BREAKPOINTS === */
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;

  /* === HEADER SPECIFIC VARIABLES === */
  --header-height: 70px;
  --header-shadow: var(--shadow-md);
  --header-bg: var(--bg-white);

  /* === NAVBAR VARIABLES === */
  --navbar-brand-size-desktop: var(--font-size-3xl);
  --navbar-brand-size-tablet: var(--font-size-2xl);
  --navbar-brand-size-mobile: var(--font-size-xl);
  --navbar-link-padding: 0.5rem 1rem;
  --navbar-link-margin: 0 0.5rem;

  /* === BUTTON VARIABLES === */
  --btn-padding-sm: 0.5rem 1rem;
  --btn-padding-md: 0.75rem 1.5rem;
  --btn-padding-lg: 1rem 2rem;
  --btn-border-radius: var(--border-radius-xl);
  --btn-font-weight: var(--font-weight-semibold);

  /* === HAMBURGER MENU VARIABLES === */
  --hamburger-width: 24px;
  --hamburger-height: 18px;
  --hamburger-line-height: 2px;
  --hamburger-color: var(--primary-color);

  /* === ANIMATION VARIABLES === */
  --animation-duration: 0.3s;
  --animation-easing: ease-in-out;

  /* === LOADING STATE VARIABLES === */
  --loading-bg: #f0f0f0;
  --loading-shimmer: #e0e0e0;
  --loading-animation-duration: 1.5s;
}
