@charset "utf-8";

/* FOOTER */

.footer {
    background: #011039;
    color: #cfd9e6;
    font-size: 0.95rem;
}

/* MAIN GRID */
.footer-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
}

/* BRAND */
.footer-brand img {
    height: 90px;
    margin-bottom: 1.2rem;
}

.footer-brand p {
    line-height: 1.6;
    color: #d6e9f4;
}

/* COLUMNS */
.footer-col h4 {
    font-family: "Bully";
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: #cfd9e6;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-col a:hover {
    color: #288DBE;
}

/* CONTACT */
.footer-contact p {
    margin-bottom: 1rem;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.footer-social a:hover {
    background: #288DBE;
    transform: translateY(-3px);
}

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #288DBE;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #FF7900;
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-social a:hover svg {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

.footer-social a[aria-label]:hover::after {
    content: attr(aria-label);
    position: absolute;
    bottom: 120%;
    background: #011039;
    color: #fff;
    padding: 0.3rem 0.5rem;
    font-size: 0.7rem;
    border-radius: 3px;
    white-space: nowrap;
}

/* MOBILE */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}