/* ─── MSSS NGO – Footer ──────────────────────────────────────────────────────── */

.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding-top: 64px;
}

.footer-top {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 48px;
  margin-bottom: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* Brand col */
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-logo-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  padding: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.footer-logo-circle img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.footer-logo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy), var(--royal-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
}
.footer-org-name {
  font-family: var(--font-hindi);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}
.footer-tagline {
  font-size: 0.72rem;
  color: var(--orange);
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-about-text {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

/* Social */
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

/* Column headings */
.footer-col-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

/* Links */
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-size: 1rem;
  line-height: 1;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

/* Contact info */
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.fci-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,130,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.82rem;
  flex-shrink: 0;
}
.fci-text { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.fci-text a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.fci-text a:hover { color: var(--orange); }

/* Map */
.footer-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
  margin-top: 14px;
}
.footer-map iframe { width: 100%; height: 160px; display: block; border: none; }

/* Footer bottom */
.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.footer-copyright a { color: var(--orange); }
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--orange); }
.footer-legal-links .sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.15);
}

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }
  .site-footer { padding-top: 40px; }
}
