/* Footer Nav Section - Combined */
.footer__nav {
    padding: 40px 10% 30px !important;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Footer Navlist */
.footer-navlist {
    margin-bottom: 0 !important;
    padding-bottom: 20px;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 40px !important;
}

.footer-navlist .listcol {
    flex: 1;
    min-width: 0;
}

/* Footer Navigation List Items */
.footer-navlist dt {
    margin-bottom: 10px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #fff !important;
}

.footer-navlist dt a {
    color: #fff !important;
    text-decoration: none !important;
}

.footer-navlist dd {
    margin: 0 !important;
    padding: 0 !important;
}

.footer-navlist dd ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.footer-navlist dd li {
    margin-bottom: 6px !important;
}

.footer-navlist dd li a {
    font-size: 13px !important;
    color: #ccc !important;
    text-decoration: none !important;
    line-height: 1.6 !important;
    display: inline-block !important;
    transition: color 0.3s !important;
}

.footer-navlist dd li a:hover {
    color: #fff !important;
}

.footer-navlist .is-first ul li a {
    font-size: 14px !important;
}

/* Footer Company Info Section */
.footer__company-info {
    padding: 30px 0 15px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
}

.footer__company-info h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
}

.footer__company-info p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 5px;
    color: #ccc;
}

.footer__company-info p:last-of-type {
    margin-bottom: 0;
}

/* Footer Links Section */
.footer__links {
    padding: 15px 0 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__links a {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s;
}

.footer__links a:hover {
    color: #f1d252;
}

.footer__links span {
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer__nav {
        padding: 20px 20px 15px !important;
    }

    .footer-navlist {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
        padding-bottom: 10px;
        justify-content: space-between !important;
    }

    .footer-navlist .listcol {
        flex: 0 0 calc(50% - 10px);
        min-width: 0;
    }

    .footer-navlist dt {
        margin-bottom: 6px !important;
        font-size: 13px !important;
    }

    .footer-navlist dd li {
        margin-bottom: 4px !important;
    }

    .footer-navlist dd li a {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    .footer-navlist .is-first ul li a {
        font-size: 12px !important;
    }

    .footer__company-info {
        padding: 20px 20px;
        margin-top: 15px;
    }

    .footer__company-info h3 {
        font-size: 18px;
    }

    .footer__company-info p {
        font-size: 12px;
        line-height: 1.6;
    }

    .footer__links {
        padding: 10px 20px;
        flex-direction: column;
        gap: 8px;
    }

    .footer__links span {
        display: none;
    }
}
