:root {
  /* ===== BRAND COLORS ===== */
  --primary: #0b3b6e;
  --primary-light: #1d5faf;
  --primary-hover: #0a2f59;
  --accent: #3b82f6;

  /* ===== BACKGROUNDS ===== */
  --white: #ffffff;
  --bg-light: #f8fafc;
  --bg-section: #eef4fa;
  --bg-dark: #081c35;

  /* ===== TEXT ===== */
  --text-dark: #1e293b;
  --text-medium: #64748b;
  --text-light: #94a3b8;

  /* ===== STATUS ===== */
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* ===== BORDERS ===== */
  --border: #e2e8f0;

  /* ===== SHADOWS ===== */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);

  /* ===== TYPOGRAPHY ===== */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  /* ===== SPACING ===== */
  --container-width: 1200px;

  --section-padding: 100px 0;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: all 0.3s ease;

  --mobile: 576px;
  --tablet: 768px;
  --laptop: 1024px;
  --desktop: 1440px;
}
