/* ═══════════════════════════════════════════════════
   NepalTYPE shared footer typography — linked by EVERY page
   (index, result, reviews, …) so the footer looks identical
   everywhere. Layout stays in each footer's inline styles;
   this file owns fonts, sizes, weights, spacing + decorations.
   Theme colors come from CSS vars defined per page.
   ═══════════════════════════════════════════════════ */

.pro-footer {
  font-family: 'Inter', sans-serif;
}

.pro-footer .footer-logo {
  font-family: 'Inter', sans-serif;
}

.pro-footer .footer-logo span {
  font-family: 'Tiro Devanagari Hindi', serif;
}

.pro-footer .footer-desc {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.pro-footer .footer-col h5 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  display: inline-block;
}

.pro-footer .footer-col h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.pro-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pro-footer .footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.2s;
}

.pro-footer .footer-links a:hover {
  color: var(--primary);
}

.pro-footer .footer-bottom {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
