/* ========================================
   Footer Styles
   ======================================== */

footer {
    background: linear-gradient(to right, var(--color-primary-dark), var(--color-primary), var(--color-gradient-blue));
    padding: 40px 0 30px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #fff;
}

footer a {
    text-decoration: none;
    color: #fff;
}

footer a:hover {
    color: var(--color-gold);
}

/* Logo */
footer .title img {
    height: 65px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Override old footer p from css/footer.css */
footer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Column content */
footer .box-footer .content h3 {
    font-size: 16px;
    line-height: 1.4;
}

/* Info items */
footer .box-footer .item {
    margin-bottom: 6px;
}

footer .box-footer .item p,
footer .box-footer .item a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 0;
}

footer .box-footer .item i {
    flex-shrink: 0;
    width: 16px;
    font-size: 13px;
    margin-top: 3px;
    color: #fff;
}

/* Social icons - circular style */
footer .footer-social .social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    transition: transform 0.2s, background-color 0.2s;
    color: #fff;
}

footer .footer-social .social-circle i {
    font-size: 16px;
    color: #fff;
    width: auto;
    margin: 0;
}

footer .footer-social .social-circle:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* Copyright bar - override old background: gray from css/footer.css */
.copyright {
    background: var(--color-primary-dark, #001a3a);
}

.copyright .sub-footer {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Responsive - Mobile (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    footer {
        padding: 30px 0 20px;
        background: linear-gradient(to bottom, var(--color-primary-dark), var(--color-primary), var(--color-gradient-blue));
    }

    footer .title img {
        height: 50px;
    }

    footer .box-footer .content h3 {
        font-size: 15px;
    }
}
