.np-footer {
    --np-bg: #F8FAFC;
    --np-primary: #10b981; /* Emerald Green */
    --np-text: #1e293b;
    --np-text-muted: #64748b;
    --np-border: #f1f5f9;
    
    background-color: var(--np-bg);
    color: var(--np-text);
    padding: 100px 0 0;
    font-family: var(--font-main);
    position: relative;
    border-top: 1px solid #cbd5e1; /* Slate 300 for clearer separation */
}

.np-footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.np-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Brand */
.np-footer-brand .np-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--np-text);
    text-decoration: none;
    margin-bottom: 24px;
}
.np-footer-brand .np-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}
.np-footer-brand .np-logo span {
   background: linear-gradient(135deg, var(--np-primary), #059669);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
}

.np-footer-brand .np-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--np-text-muted);
    max-width: 320px;
    margin: 0;
}

/* Columns */
.np-footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--np-text);
    margin-bottom: 28px;
}

.np-links { list-style: none; padding: 0; margin: 0; }
.np-links li { margin-bottom: 14px; }
.np-links a {
    color: var(--np-text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}
.np-links a:hover {
    color: var(--np-primary);
    transform: translateX(4px);
}

/* Contact */
.np-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--np-text-muted);
    font-size: 15px;
}
.np-contact-item svg { color: var(--np-primary); opacity: 0.8; }
.np-contact-item a { color: inherit; text-decoration: none; transition: 0.2s; }
.np-contact-item a:hover { color: var(--np-primary); }

/* Bottom Bar */
.np-footer-bottom {
    padding: 32px 0;
    border-top: 1px solid var(--np-border);
    background: #f8fafc;
}

.np-bottom-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.np-copyright {
    font-size: 14px;
    color: var(--np-text-muted);
}

.np-social { display: flex; gap: 20px; }
.np-social a {
    color: var(--np-text-muted);
    transition: all 0.2s;
}
.np-social a:hover {
    color: var(--np-primary);
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 1024px) {
    .np-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .np-footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    .np-footer { padding: 50px 0 0; }
    .np-footer-container { padding: 0 30px; }
    
    .np-footer-grid { 
        grid-template-columns: 1fr; /* Single column stack for mobile */
        gap: 40px; 
        text-align: center; 
    }
    
    .np-footer-brand { 
        grid-column: span 1;
        margin-bottom: 10px;
    }
    
    .np-footer-brand .np-logo { justify-content: center; }
    .np-footer-brand .np-desc { margin: 0 auto; max-width: 280px; }
    
    .np-footer-col h4 {
        margin-bottom: 20px;
    }
    
    .np-links li {
        margin-bottom: 12px;
    }
    
    /* Support column styling */
    .np-footer-col:last-child {
        border-top: 1px solid var(--np-border);
        padding-top: 35px;
        margin-top: 10px;
    }
    
    .np-contact-item { 
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .np-bottom-content { 
        flex-direction: column; 
        gap: 24px; 
        padding: 30px 24px;
        text-align: center;
    }
}
