:root {
  /* Brand Colors - Elegant Navy & Coral */
  --primary: #1A2B4C; /* Navy */
  --primary-dark: #0f192d; /* Darker Navy */
  --primary-light: #E2E8F0; /* Slate light */
  --accent: #F97316; /* Coral/Orange for buttons */
  --accent-dark: #EA580C;
  --accent-light: #FFEDD5;
  --warm: #FBBF24;
  --warm-light: #FEF3C7;

  /* Backgrounds & Neutrals */
  --bg-white: #FFFFFF;
  --bg-snow: #FDF8F2; /* Warm Cream background */
  --bg-mint: #FDF8F2; /* Kept same as cream to unify the theme */
  --bg-lavender: #FDF8F2;
  --bg-cream: #FDF8F2;
  --text-dark: #1A2B4C; /* Deep Navy Blue */
  --text-body: #4B5563; /* Slate Gray */
  --text-muted: #9CA3AF;
  --border: #E5E7EB;
  --border-accent: #FED7AA;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #FDF8F2 0%, #FFEDD5 100%);
  --gradient-cta: linear-gradient(135deg, #F97316 0%, #FB923C 100%); /* Orange Button Gradient */
  --gradient-cta-hot: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
  --gradient-card: linear-gradient(145deg, #FFFFFF 0%, #FFF8F1 100%);
  --gradient-pricing: linear-gradient(135deg, #1A2B4C 0%, #0f192d 100%); /* Navy Gradient */

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-tagline: 'Poppins', sans-serif;

  /* Effects */
  --glass-bg: rgba(253, 248, 242, 0.85); /* Cream glass */
  --glass-border: 1px solid rgba(255, 255, 255, 0.6);
  --glass-blur: blur(20px);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 40px rgba(249, 115, 22, 0.15), 0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-coral: 0 8px 30px rgba(249, 115, 22, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Spacing */
  --container-max: 1200px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}
