/* ================================
   OCEAN SERVICES - ENTERPRISE DESIGN SYSTEM
   Professional IT Solutions Website
   Clean, White Theme
   ================================ */

/* Google Fonts - Professional Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* CSS Custom Properties - Professional Enterprise Theme */
:root {
    /* Primary Colors - Ocean Sites Palette */
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --primary-300: #81D4FA;
    /* Sky Blue (Lightest Wave) */
    --primary-400: #38bdf8;
    --primary-500: #3FA9C4;
    /* Teal / Mid-Wave Blue */
    --primary-600: #1D5D81;
    /* Deep Ocean Blue */
    --primary-700: #0D2137;
    /* Dark Navy (Text & Darkest Wave) */
    --primary-800: #0a1b2d;
    --primary-900: #050e17;

    /* Accent Colors */
    --accent-400: #a2cf6e;
    --accent-500: #8BC34A;
    /* Lime / Moss Green */
    --accent-600: #33691E;
    /* Deep Forest Green */

    /* Success Green - Mapped to Palette */
    --success-500: #8BC34A;
    --success-600: #33691E;

    /* Neutral Colors - Cool Grays / Blue Tints */
    --white: #ffffff;
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0D2137;
    /* Dark Navy for main text/headings */

    /* Background */
    --bg-primary: #ffffff;
    --bg-secondary: #f0f9ff;
    /* Very light blue tint */
    --bg-tertiary: #e0f2fe;

    /* Shadows - Soft & Professional */
    --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 -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Container */
    --container-max: 1280px;
    --container-padding: 1.5rem;

    /* Z-index */
    --z-fixed: 100;
}