:root {
 /* Primary Colors - GIGW 3.0 Compliant */
 --primary: #1a365d;              /* Deep Professional Blue (matches header) */
 --primary-light: #3182ce;        /* Light Blue (matches header) */
 --primary-dark: #2c5282;         /* Darker Blue (matches header) */
 --primary-color: #1a365d;        /* Primary blue for consistency */
 --primary-color-light: #3182ce;  /* Light primary for highlights */
 --white: #ffffff;
 /* Earth Theme Colors */
 --earth-brown: #4a3f35;
 --earth-green: #2c5530;
 --earth-blue: #2b4356;
 --earth-sand: #d2c6b2;
 --earth-stone: #8c857b;
 /* Secondary Colors - GIGW 3.0 Compliant */
 --secondary: #ff9500;            /* Professional Orange (matches header accent) */
 --secondary-light: #ffa726;      /* Light Orange */
 --secondary-dark: #e67e00;       /* Darker Orange */
 --accent: #ff9500;               /* Orange accent (matches header) */

 /* Neutral Colors - Enhanced for Accessibility */
 --neutral-900: #0f172a;          /* Darkest - matches header secondary */
 --neutral-800: #1e293b;          /* Very Dark Gray */
 --neutral-700: #334155;          /* Dark Gray */
 --neutral-600: #475569;          /* Medium Dark Gray */
 --neutral-500: #64748b;          /* Medium Gray */
 --neutral-400: #94a3b8;          /* Light Medium Gray */
 --neutral-300: #cbd5e1;          /* Light Gray */
 --neutral-200: #e2e8f0;          /* Very Light Gray */
 --neutral-100: #f1f5f9;          /* Lightest Gray */

 /* Semantic Colors - For Status/Feedback */
 --success: #10b981;              /* Professional Green */
 --warning: #f59e0b;              /* Professional Amber */
 --error: #ef4444;                /* Professional Red */
 --info: #3b82f6;                 /* Professional Blue */
 --danger: #ef4444;               /* Red for errors */

 /* Background Colors */
 --bg-primary: var(--neutral-100);
 --bg-secondary: var(--neutral-200);
 --bg-dark: var(--primary-dark);
 --bg-light: var(--white);
    /* Text Colors */
    --text-primary: var(--neutral-900);    /* Primary text - very dark */
    --text-secondary: var(--neutral-700);  /* Secondary text */
    --text-tertiary: var(--neutral-600);   /* Tertiary text */
    --text-light: var(--white);            /* Light text on dark backgrounds */
    --text-muted: var(--neutral-500);      /* Muted text */

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --font-heading: 'Inter', 'Montserrat', sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;      /* 12px - Small text, badges */
    --text-sm: 0.875rem;     /* 14px - Secondary text */
    --text-base: 1rem;       /* 16px - Body text */
    --text-lg: 1.125rem;     /* 18px - Enhanced body text */
    --text-xl: 1.25rem;      /* 20px - Subheadings */
    --text-2xl: 1.75rem;     /* 28px - Section headings */
    --text-3xl: 2.25rem;     /* 36px - Page titles */
    --text-4xl: 2.75rem;     /* 44px - Hero titles */
    --text-5xl: 3.5rem;      /* 56px - Large hero titles */

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.2;
    --leading-snug: 1.375;
    --leading-normal: 1.6;
    --leading-relaxed: 1.75;
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --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-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Container */
    --container-padding: 2rem;
    --container-width: 1280px;
    --container-width-sm: 640px;
    --container-width-md: 768px;
    --container-width-lg: 1024px;
    --container-width-xl: 1280px;
        /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --footer-bg: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --footer-bg-darker: var(--primary-dark);
    --footer-text: rgba(255, 255, 255, 0.9);
    --footer-text-high: #ffffff;
    --footer-text-medium: #e0e0e0;
    --footer-text-low: #9e9e9e;
    --footer-text-muted: rgba(255, 255, 255, 0.7);
    --footer-border: var(--primary-light);
    --footer-link-hover: var(--accent);
    --footer-card-bg: rgba(255, 255, 255, 0.05);
    --footer-card-border: rgba(255, 255, 255, 0.1);

    /* Text Colors - Enhanced contrast */
    --text-primary: #050505;    /* Main text - 12:1 contrast ratio */
    --text-secondary: #2D2D2D;  /* Secondary text - 9:1 contrast ratio */
    --text-tertiary: #4D4D4D;   /* Tertiary text - 7:1 contrast ratio */

    /* Heading Colors */
    --heading-primary: var(--primary);     /* Primary blue headings */
    --heading-secondary: var(--neutral-800); /* Dark gray headings */

    /* Section Background Colors */
    --section-light: var(--white);        /* Light sections */
    --section-dark: var(--neutral-100);   /* Dark sections */

    /* Add social icon variables */
    --social-icon-bg: var(--primary-light);
    --social-icon-color: var(--white);
    --social-icon-hover-bg: var(--primary-dark);
    --social-icon-hover-color: var(--white);
    --social-icon-border: rgba(255, 255, 255, 0.2);

    /* Add e-commerce specific variables */
    --ecom-card-height: 70px;
    --ecom-card-height-mobile: 60px;
    --ecom-icon-size: 1.5rem;
    --ecom-text-size: 0.9rem;

    /* Add logo size variables */
    --ecom-logo-height: 60px;
    --ecom-logo-height-mobile: 50px;
    --tcl-logo-height: 70px;
    --tcl-logo-height-mobile: 60px;
}

/* Typography Base Styles */
body {
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    background-color: var(--bg-light);
}

h1, .h1 {
    color: var(--heading-primary);
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.025em;
}

h2, .h2 {
    color: var(--heading-primary);
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.025em;
}

h3, .h3 {
    color: var(--heading-secondary);
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    line-height: var(--leading-snug);
    margin-bottom: var(--spacing-md);
}

h4, .h4 {
    color: var(--heading-secondary);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    line-height: var(--leading-snug);
    margin-bottom: var(--spacing-sm);
}

h5, .h5 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    line-height: var(--leading-normal);
    margin-bottom: var(--spacing-sm);
}

h6, .h6 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    line-height: var(--leading-normal);
    margin-bottom: var(--spacing-sm);
}

/* Professional Link Styles */
a {
    color: var(--link-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

a:visited {
    color: var(--link-visited);
}

/* Professional Paragraph Styles */
p {
    color: var(--text-primary);
    line-height: var(--leading-normal);
    margin-bottom: var(--spacing-sm);
}

/* Professional List Styles */
ul, ol {
    color: var(--text-primary);
    line-height: var(--leading-normal);
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-md);
}

/* Professional Code Styles */
code {
    background-color: var(--neutral-100);
    color: var(--text-primary);
    padding: 0.125rem 0.25rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono, monospace);
    font-size: 0.875em;
}

pre {
    background-color: var(--neutral-100);
    color: var(--text-primary);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    overflow-x: auto;
    font-family: var(--font-mono, monospace);
    line-height: var(--leading-normal);
}

/* Professional Form Element Styles */
input, textarea, select {
    font-family: inherit;
    color: var(--form-text);
    background-color: var(--form-bg);
    border: 1px solid var(--form-border);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    transition: var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--form-border-focus);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

/* Professional Button Base Styles */
.btn, button {
    font-family: inherit;
    font-weight: var(--font-medium);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-text);
}

.btn-primary:hover {
    background-color: var(--btn-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--btn-secondary-bg);
    color: var(--btn-secondary-text);
}

.btn-secondary:hover {
    background-color: var(--btn-secondary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Professional Utility Classes */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }

.bg-primary { background-color: var(--bg-primary); }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-dark { background-color: var(--bg-dark); }
.bg-light { background-color: var(--bg-light); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* Professional Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Responsive Typography */
@media (max-width: 768px) {
    :root {
        --text-4xl: 2.25rem;     /* 36px on mobile */
        --text-3xl: 1.875rem;    /* 30px on mobile */
        --text-2xl: 1.5rem;      /* 24px on mobile */
        --container-padding: 1rem;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary: #000080;
        --accent: #ffff00;
        --text-primary: #000000;
        --text-light: #ffffff;
        --bg-light: #ffffff;
        --bg-dark: #000000;
    }
}

/* Dark Mode Support (if needed) */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-light: var(--neutral-800);
        --bg-primary: var(--neutral-700);
        --text-primary: var(--neutral-100);
        --text-secondary: var(--neutral-300);
        --form-bg: var(--neutral-700);
        --form-border: var(--neutral-600);
    }
}

