:root {
  /* Brand Colors — YAR GROUP logo (teal + gold) */
  --color-primary: #00A38C;
  --color-primary-light: #00C4A7;
  --color-primary-dark: #007D6B;
  --color-primary-rgb: 0, 163, 140;
  --color-primary-tint: rgba(0, 163, 140, 0.12);
  --color-primary-glow: rgba(0, 163, 140, 0.06);

  --color-accent: #E5A80E;
  --color-accent-light: #F5C842;
  --color-accent-dark: #C48F08;
  --color-accent-rgb: 229, 168, 14;
  --color-accent-tint: rgba(229, 168, 14, 0.14);

  /* Deep teal-navy — stats, footer, dark sections */
  --color-navy: #0C2A26;
  --color-navy-mid: #123832;
  --color-navy-light: #1A4A42;
  --color-navy-accent: #081E1B;

  /* Neutrals */
  --color-dark: #2D3436;
  --color-body: #3D4852;
  --color-muted: #6B7B83;
  --color-white: #FFFFFF;
  --color-gray-50: #F8FAFA;
  --color-gray-100: #F0F5F4;
  --color-gray-200: #E2E8E7;
  --color-gray-300: #CBD5D3;

  /* Overlays — neutral dark gradients */
  --overlay-dark: rgba(0, 0, 0, 0.5);
  --overlay-service: linear-gradient(105deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 38%, rgba(0, 0, 0, 0.12) 72%, rgba(0, 0, 0, 0.05) 100%);
  --overlay-service-hover: linear-gradient(105deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.2) 75%, rgba(0, 0, 0, 0.08) 100%);
  --overlay-hero: linear-gradient(180deg, rgba(8, 30, 27, 0.55) 0%, rgba(8, 30, 27, 0.45) 45%, rgba(8, 30, 27, 0.65) 100%);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 5rem;
  --space-section: 5rem;

  /* Layout */
  --container-max: 1200px;
  --header-height: 92px;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}
