/* ===== FOOTER STYLES ===== */

.footer {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 94px 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

/* Footer Left */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logos img {
    height: 65px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 35px;
}

.footer-socials img {
    width: 42px;
    height: 40px;
    transition: transform 0.3s;
    cursor: pointer;
}

.footer-socials img:hover {
    transform: scale(1.1);
}

.footer-copyright {
    text-align: center;
    font-weight: 300;
    font-size: 16px;
    color: rgba(255, 255, 255);
}

/* Footer Center */
.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-center a {
    font-weight: 400;
    font-size: 20px;
    transition: color 0.3s;
    line-height: 1.5;
}

.footer-center a:hover {
    color: rgba(234, 81, 131, 1);
}

/* Footer Right */
.footer-right {
    display: flex;
    align-items: center;
}

.footer-right img {
    max-width: 450px;
    height: auto;
}

/* Hide mobile copyright on desktop */
.footer-copyright-mobile {
    display: none;
}

/* ===== MOBILE STYLES ===== */
@media screen and (max-width: 768px) {
    .footer {
        padding: 50px 25px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .footer-left {
        width: 100%;
        align-items: center;
        gap: 28px;
    }

    .footer-logos {
        justify-content: center;
        gap: 16px;
    }

    .footer-logos img {
        height: 50px;
    }

    .footer-socials {
        gap: 28px;
    }

    .footer-socials img {
        width: 38px;
        height: 36px;
    }

    /* Hide desktop copyright in footer-left */
    .footer-left .footer-copyright {
        display: none;
    }

    .footer-center {
        width: 100%;
        gap: 16px;
    }

    .footer-center a {
        font-size: 17px;
    }

    /* Footer Right on mobile */
    .footer-right {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    /* Show mobile copyright */
    .footer-copyright-mobile {
        display: block;
        font-size: 15px;
        text-align: left;
        flex: 1;
    }
    
    .footer-right img {
        max-width: 280px;
    }
}