footer {
    background-color: #000;
    color: #F6F4EF;
    padding: 60px 0 25px;
    z-index: 2;
    position: relative;
}

.footer-container {
    margin: 0 auto;
    padding: 0 180px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.footer-logo img {
    width: 100%;
    padding-right: 50px;
}

.footer-contact {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--Primary-Alabaster, #F6F4EF);
}

.contact-item a {
    color: #F6F4EF;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.7;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 100px;
}

.footer-social a {
    color: #F6F4EF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 12px;
    color: #999;
}

.footer-copyright,
.footer-credit {
    font-size: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        padding: 0 40px 0 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 30px;
    }

    .footer-social {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}