/* ----- FOOTER (fixed duplicates + social icons) ----- */
        .site-footer {
            background-color: #0F172A;
            color: #CBD5E1;
            padding: 56px 0 32px;
            margin-top: 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 32px;
        }

        .footer-col p {
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 12px;
        }

        .footer-col a {
            color: #94A3B8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s, transform 0.2s;
            display: inline-block;
        }

        .footer-col a:hover {
            color: white;
            transform: translateX(4px);
        }

        .footer-logo img {
            height: 40px;
            width: auto;
            margin-bottom: 16px;
            opacity: 0.9;
            transition: opacity 0.2s;
        }

        .footer-logo img:hover {
            opacity: 1;
        }

        /* social icons */
        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .copyright {
            border-top: 1px solid #1E293B;
            margin-top: 40px;
            padding-top: 24px;
            text-align: center;
            color: #64748B;
            font-size: 0.85rem;
        }

        .copyright a {
            color: #94A3B8;
        }

        .copyright a:hover {
            color: white;
        }