/* FOOTER */
        :root {
            --primary-navy: #0f2c59;
            --secondary-navy: #1e3a8a;
            --dark-navy: #0b1f3a;
            --accent-orange: #f97316;
            --accent-orange-hover: #ea580c;
            --accent-yellow: #f59e0b;
            --accent-yellow-light: #fef3c7;
            --bg-light: #f8fafc;
            --text-dark: #0f172a;
            --text-muted: #64748b;
            --white: #ffffff;
            --border-color: #e2e8f0;
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(15, 44, 89, 0.1), 0 8px 10px -6px rgba(15, 44, 89, 0.05);
            --shadow-hover: 0 25px 35px -5px rgba(15, 44, 89, 0.2), 0 10px 15px -5px rgba(249, 115, 22, 0.15);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 24px;
        }
        footer {
            background: var(--primary-navy);
            color: var(--white);
            padding: 70px 5% 30px;
            border-top: 5px solid var(--accent-yellow);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto 50px;
        }

        .footer-col h4 {
            color: var(--accent-yellow);
            font-weight: 800;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .footer-col p {
            color: #94a3b8;
            font-size: 0.9rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: var(--accent-orange);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #64748b;
            font-size: 0.85rem;
        }