/* shared/theme-corporate.css — "Digital Excellence" variation */

:root {
    /* Theme Overrides */
    --navy: #001F3F;
    /* Deep Navy Blue */
    --surface: #002D5A;
    /* Slightly lighter navy for cards */
    --emerald: #0A84FF;
    /* Switch to Professional Blue */
    --accent: #D4AF37;
    /* Royal Gold */
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;700&display=swap');

body {
    background: linear-gradient(135deg, #001F3F 0%, #00152B 100%);
}

/* Adjustments for Corporate Aesthetic */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    /* Sharper corners for corporate look */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-elevated {
    border-radius: 4px;
    /* Squared off buttons */
    background: linear-gradient(135deg, var(--emerald), #0056b3);
    text-transform: none;
    letter-spacing: normal;
    padding: 1.2rem 3rem;
    font-weight: 600;
}

.cta-elevated::after {
    border-radius: 6px;
    background: linear-gradient(90deg, var(--accent), var(--emerald), var(--accent));
}

/* Scroll Animation Hero Specifics */
.hero-text-overlay h1 {
    font-family: var(--font-display);
    text-transform: none;
    letter-spacing: -0.02em;
    font-size: 4.5rem;
}

.hero-text-overlay .highlight {
    color: var(--accent);
    /* Gold highlights for prestige */
}

/* Global Capacity Grid Enhancements */
#routes .glass-card {
    border-top: 4px solid var(--emerald);
    transition: transform 0.4s ease;
}

#routes .glass-card:hover {
    transform: translateY(-8px);
    border-top: 4px solid var(--accent);
}

/* B2B Operational Workflow - Minimalist Blue Style */
#workflow-step-circle {
    background: var(--surface);
    border: 2px solid var(--emerald);
    color: var(--white);
}

/* Section Dividers */
section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}