/* Footer Redesign - Navy & Gold */
.nxt-footer {
    background-color: #0E104B !important;
    /* Darker Navy */
    color: #ffffff !important;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.nxt-footer-circle {
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.nxt-footer-main {
    position: relative;
    z-index: 2;
}

.nxt-footer-title {
    color: #ffa800;
    /* Rich Orange/Gold for headings */
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    position: relative;
    padding-bottom: 15px;
}

.nxt-footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ffa800;
}

.nxt-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nxt-footer-links li {
    margin-bottom: 12px;
}

.nxt-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.nxt-footer-links a:hover {
    color: #ffa800;
    padding-left: 5px;
}

.nxt-footer-contact-info p,
.nxt-footer-contact-info .nxt-contact-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.nxt-footer-contact-info i {
    color: #ffa800;
    font-size: 18px;
    margin-top: 3px;
}

.nxt-footer-contact-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nxt-footer-contact-info a:hover {
    color: #ffa800;
}

.nxt-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.nxt-footer-social a {
    width: 40px;
    height: 40px;
    background: #ffa800;
    color: #0E104B;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 20px;
}

.nxt-footer-social a:hover {
    background: #ffffff;
    color: #0E104B;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 168, 0, 0.3);
}

.nxt-footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.nxt-footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.nxt-footer-bottom a {
    color: #ffa800;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
    .nxt-footer {
        padding: 60px 0 30px;
        text-align: left;
    }

    .nxt-footer-title::after {
        left: 0;
        transform: none;
    }

    .nxt-footer-social {
        justify-content: flex-start;
    }

    .nxt-footer-contact-info p,
    .nxt-footer-contact-info .nxt-contact-item {
        justify-content: flex-start;
    }
}