.footer {
    background-color: #0A2463;
    color: white;
    padding: 20px 0px 0px 0px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 0px 0px 30px;
}

.footer h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer p,
.footer a {
    font-size: 0.95rem;
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
}

.footer a:hover {
    color: white;
}

.footer-logo {
    font-family: Georgia, serif;
    font-size: 50px;
    letter-spacing: -2px;
    background: white;
    width: 130px;
    border-radius: 20px;
    padding: 2px;
    margin-bottom: 10px;
}

.footer-logo .blue {
    color: #002157;
    font-weight: normal;
    padding-left: 4px;

}

.footer-logo .yellow {
    color: #fcbb01;
    font-weight: normal;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.footer-socials a:hover {
    background-color: white;
    color: #0A2463;
}

.footer-socials .shopee-icon img {
    width: 15px;
    height: 15px;
    color: #ccc;
    object-fit: contain;
    filter: grayscale(100%) brightness(100%) sepia(100%) hue-rotate(192deg) saturate(0%) invert(64%);
    transition: all 0.3s ease;
}

.footer-socials .shopee-icon:hover img {
    filter: invert(13%) sepia(67%) saturate(2100%) hue-rotate(198deg) brightness(90%) contrast(90%);
    /* show original orange color when hovered */
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #444;
    text-align: center;
    padding: 20px;
    color: #aaa;
    font-size: 0.85rem;
    margin-top: 40px;
}

@media (max-width: 1024px) {

    .footer-grid {
        grid-template-columns: none;
    }
}