/* =========================================
   Nexus Footer
   ========================================= */

.nexus-site-footer {
    background-color: #FFFFFF;
    color: #424242;
    padding: 60px 0 0 0;
    font-family: 'Segoe UI', sans-serif;
    border-top: 1px solid rgba(66, 66, 66, 0.1);
}

.anex-footer-container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 35px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.anex-footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 50px;
    gap: 20px;
}

.anex-footer-info {
    flex: 0 0 35%;
    max-width: 35%;
}

.anex-footer-blank {
    flex: 0 0 10%;
    max-width: 10%;
}

.anex-footer-menu-1,
.anex-footer-menu-2 {
    flex: 1;
}

.anex-footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 25px;
}

.anex-footer-logo h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #000;
}

.anex-footer-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    max-width: 95%;
    text-align: justify;
}

.anex-footer-contact p {
    margin: 5px 0;
    font-size: 14px;
    color: #444;
}

/* Social Icons */
.anex-footer-social {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.anex-social-link {
    color: #424242;
    /* Original used #000 but title is #000, desc #555. Let's stick to text color or #000 */
    color: #000;
    font-size: 20px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.anex-social-link:hover {
    opacity: 0.7;
}

.anex-footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}

.anex-footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.anex-footer-nav li {
    margin-bottom: 12px;
}

.anex-footer-nav li a {
    text-decoration: none;
    color: #424242;
    font-size: 15px;
    transition: color 0.2s;
    font-weight: 500;
}

.anex-footer-nav li a:hover {
    color: #0A4D92;
    padding-left: 5px;
}

.anex-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid #eee;
    padding: 20px 0;
}

.anex-copyright {
    font-size: 13px;
    color: #666;
}

.anex-footer-policies {
    display: flex;
    gap: 25px;
}

.anex-footer-policies a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.anex-footer-policies a:hover {
    border-color: #666;
}

@media (max-width: 900px) {
    .anex-footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .anex-footer-info {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .anex-footer-menu-1,
    .anex-footer-menu-2 {
        flex: 1 1 45%;
        max-width: 50%;
    }

    .anex-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}