/* ==========================================================================
   SENZO INDIA - CLEAN, LIGHT & PROFESSIONAL DESIGN SYSTEM
   Color Palette: Clean White/Slate Canvas, Deep Navy Blue, Electric Orange, Eco Green
   ========================================================================== */

:root {
  /* Canvas & Backgrounds (Clean, Breathable, Light) */
  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-subtle: #f1f5f9;
  --bg-accent-light: #f8faff;

  /* Brand Navy (High Contrast, Corporate, Crisp) */
  --navy-dark: #0a1128;
  --navy-primary: #0f172a;
  --navy-secondary: #1e293b;
  --navy-subtle: #e2e8f0;
  --navy-tint: rgba(15, 23, 42, 0.04);

  /* Electric Orange (Primary Action / CTA) */
  --orange-primary: #ff6b00;
  --orange-hover: #e55e00;
  --orange-subtle: #fff7ed;
  --orange-border: #ffedd5;
  --orange-glow: rgba(255, 107, 0, 0.2);

  /* Eco Green (Trust, Sustainability, Certified) */
  --green-primary: #10b981;
  --green-dark: #059669;
  --green-subtle: #ecfdf5;
  --green-border: #d1fae5;

  /* Typography & Contrast */
  --text-main: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-dim: #94a3b8;
  --text-white: #ffffff;

  /* Clean Borders */
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-orange: #fed7aa;
  --border-green: #a7f3d0;

  /* Soft, Subtle Professional Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 6px 18px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.1);
  --shadow-hover: 0 14px 36px rgba(15, 23, 42, 0.12);

  /* Typography */
  --font-main: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-full: 9999px;

  /* Smooth Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
