/* PanelWashPro - CSS Variables (Matching original design) */
:root {
  /* Brand Palette */
  --color-primary: #0088ff;         /* Primary Electric Blue */
  --color-primary-hover: #0066cc;
  --color-accent: #0088ff;
  --color-dark: #0f172a;            /* Dark Slate Headlines */
  --color-navy: #0b1e36;            /* Deep Navy for Topbar */
  
  /* Text & Surfaces */
  --color-text: #334155;            /* Body Text */
  --color-text-muted: #64748b;      /* Muted Text */
  --color-text-dark: #0f172a;
  --color-white: #ffffff;
  --color-bg: #f8fafc;              /* Soft Light Gray Background */
  --color-surface: #ffffff;         /* Pure White Cards */
  --color-border: #e2e8f0;          /* Subtle Borders */
  
  /* Status & Eco Colors */
  --color-eco: #10b981;
  --color-eco-dark: #059669;
  
  /* Typography */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  
  /* Font Sizes */
  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.8rem + 0.38vw, 1rem);
  --fs-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --fs-lg: clamp(1.125rem, 1rem + 0.63vw, 1.25rem);
  --fs-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --fs-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  --fs-3xl: clamp(1.875rem, 1.5rem + 1.88vw, 2.5rem);
  --fs-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.25rem);

  /* Layout & Corners - Spacious Desktop (1380px) */
  --max-width: 1380px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  /* Shadows & Transitions */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
