/* ============================================
   NEXIROX — Enhanced Footer Styles
   ============================================ */

.nx-footer {
    background: linear-gradient(135deg, #08080a 0%, #14141a 100%);
    color: #e0e0e0;
    border-top: 1px solid rgba(255, 193, 7, 0.1);
}

/* Main Footer Content */
.nx-footer__main {
    padding: 3rem 0;
}

.nx-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.nx-footer__col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nx-footer__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
}

.nx-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nx-footer__list a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
}

.nx-footer__list a:hover {
    color: #ffc107;
    padding-right: 0.5rem;
}

/* Contact Info */
.nx-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nx-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.nx-footer__contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.nx-footer__contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nx-footer__contact-item a:hover {
    color: #ffc107;
}

/* Trust Badges */
.nx-footer__trust {
    padding: 2.5rem 0;
    background: rgba(255, 193, 7, 0.05);
    border-top: 1px solid rgba(255, 193, 7, 0.1);
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
}

.nx-footer__trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.nx-footer__trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.nx-footer__trust-icon {
    font-size: 2rem;
    line-height: 1;
}

.nx-footer__trust-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.nx-footer__trust-item p {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
}

/* Bottom Footer */
.nx-footer__bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 193, 7, 0.1);
}

.nx-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.nx-footer__copyright {
    font-size: 0.9rem;
    color: #888;
}

.nx-footer__copyright p {
    margin: 0;
}

.nx-footer__copyright strong {
    color: #ffc107;
}

/* Social Links */
.nx-footer__socials {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nx-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nx-footer__socials a:hover {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.6);
    transform: translateY(-2px);
}

.nx-footer__socials svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .nx-footer__main {
        padding: 2rem 0;
    }

    .nx-footer__grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .nx-footer__trust {
        padding: 2rem 0;
    }

    .nx-footer__trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .nx-footer__bottom-inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .nx-footer__socials {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nx-footer__main {
        padding: 1.5rem 0;
    }

    .nx-footer__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .nx-footer__title {
        font-size: 0.95rem;
    }

    .nx-footer__list a {
        font-size: 0.85rem;
    }

    .nx-footer__trust-grid {
        grid-template-columns: 1fr;
    }

    .nx-footer__bottom {
        padding: 1.5rem 0;
    }

    .nx-footer__copyright {
        font-size: 0.8rem;
    }
}
