 /* Footer */
        footer {
            background: var(--warm-black);
            color: var(--white);
            padding: 60px 20px 30px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-about h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .footer-about p {
            opacity: 0.8;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-column h4 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .footer-links {
            list-style: none;
            padding: 0px;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
            font-size: 14px;
        }

        .footer-links a:hover {
            opacity: 1;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            opacity: 0.7;
            font-size: 14px;
        }
        .social-links a{
            text-decoration:none;
        }
        
        /* ===============================
   MOBILE RESPONSIVE FOOTER
================================ */

/* Tablet */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat( 1fr);
        gap: 30px;
    }

    .footer-about {
        grid-column: span 2;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .main-footer {
                padding: 40px 25px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-about,
    .footer-column {
        width: 100%;
        text-align: left;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-bottom {
        font-size: 13px;
        margin-top: 30px;
    }
}