/* Footer */
        footer {
            position: relative;
            z-index: 10;
            background: rgba(9, 20, 40, 0.95);
            border-top: 1px solid var(--border-color);
            padding: 60px 5% 30px;
            backdrop-filter: blur(5px);
            margin-top: 50px;
        }

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

        .footer-logo {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-logo .logo {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .footer-logo p {
            color: var(--text-muted);
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(26, 42, 79, 0.4);
            border: 1px solid var(--border-color);
            border-radius: 50%;
            color: var(--text-light);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--tech-blue);
            transform: translateY(-5px);
        }

        .footer-title {
            font-family: 'Exo 2', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: white;
        }

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

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

        .footer-links ul li a {
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links ul li a:hover {
            color: var(--tech-blue);
        }

        .footer-links ul li a i {
            color: var(--tech-blue);
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(59, 130, 246, 0.1);
            color: var(--text-muted);
            font-size: 0.9rem;
        }