/* NCPSL Footer v6 */

.ncpsl-footer {
    background: var(--ncpsl-navy);
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin-top: 60px;
}

.ncpsl-footer-main { padding: 60px 0 40px; }
.ncpsl-footer-main .ncpsl-container {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr 1fr 1fr;
    gap: 40px; align-items: flex-start;
}

/* Column 1: Brand — logo + title CENTERED */
.footer-brand-col {
    display: flex; flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.footer-logo { width: 140px; height: 140px; object-fit: contain; }
.footer-title-hi {
    font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
    font-size: 20px; font-weight: 600; color: #fff;
    margin: 0; line-height: 1.4;
    text-align: center;
}
.footer-socials {
    display: flex; gap: 12px; margin-top: 8px;
    justify-content: center;
}
.social-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--ncpsl-navy-dark);
    color: #fff; text-decoration: none;
    transition: all 0.2s; border: 1px solid rgba(255,255,255,0.15);
}
.social-link:hover, .social-link:focus {
    background: var(--ncpsl-saffron); color: var(--ncpsl-navy);
    transform: translateY(-2px);
}

/* Columns 2-4 */
.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem; font-weight: 600; color: #fff;
    letter-spacing: 1.5px; margin: 0 0 24px; text-transform: uppercase;
}
.footer-address {
    font-family: 'Inter', sans-serif;
    font-style: normal; color: #fff;
    font-size: 0.875rem; font-weight: 500;
    line-height: 1.7; margin: 0 0 20px;
}
.footer-contact-item {
    font-family: 'Inter', sans-serif;
    color: #fff; margin: 0 0 12px;
    font-size: 0.875rem; font-weight: 500; line-height: 1.6;
}
.footer-contact-item strong { color: #fff; font-weight: 600; margin-right: 4px; }
.footer-contact-item a {
    color: #fff; text-decoration: none;
    transition: color 0.2s;
}
.footer-contact-item a:hover, .footer-contact-item a:focus {
    color: var(--ncpsl-saffron); text-decoration: underline;
}
.footer-links {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 14px;
}
.footer-links a {
    font-family: 'Inter', sans-serif;
    color: #fff; text-decoration: none;
    font-size: 0.875rem; font-weight: 500;
    transition: all 0.2s;
    display: inline-block; padding: 2px 0;
}
.footer-links a:hover, .footer-links a:focus {
    color: var(--ncpsl-saffron); padding-left: 6px;
}

/* Bottom */
.ncpsl-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 20px 0;
    background: var(--ncpsl-navy);
}
.ncpsl-footer-bottom .ncpsl-container {
    flex-wrap: wrap; gap: 16px; align-items: center;
    justify-content: space-between;
}
.footer-copyright {
    color: rgba(255,255,255,0.85); font-size: 0.8125rem;
    font-family: 'Inter', sans-serif;
    display: inline-flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.footer-sep { color: rgba(255,255,255,0.4); }
.footer-policies {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 24px;
}
.footer-policies a {
    color: rgba(255,255,255,0.85); text-decoration: none;
    font-size: 0.8125rem; transition: color 0.2s;
    font-family: 'Inter', sans-serif;
}
.footer-policies a:hover, .footer-policies a:focus {
    color: var(--ncpsl-saffron); text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .ncpsl-footer-main .ncpsl-container {
        grid-template-columns: 1fr 1fr; gap: 40px 30px;
    }
    .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 576px) {
    .ncpsl-footer-main { padding: 40px 0 30px; }
    .ncpsl-footer-main .ncpsl-container { grid-template-columns: 1fr; gap: 30px; }
    .ncpsl-footer-bottom .ncpsl-container { flex-direction: column; text-align: center; }
    .footer-policies { justify-content: center; gap: 16px; }
    .footer-copyright { justify-content: center; text-align: center; }
    .footer-logo { width: 110px; height: 110px; }
    .footer-title-hi { font-size: 17px; }
}
@media print {
    .ncpsl-footer-bottom, .footer-socials { display: none; }
    .ncpsl-footer { background: #fff !important; color: #000 !important; border-top: 2px solid #000; }
    .ncpsl-footer * { color: #000 !important; }
}
