/* Footer Styles */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 60px 0 30px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.footer .container { max-width: 1200px; }
.footer h5 { font-weight: 700; margin-bottom: 20px; color: white; }
.footer p, .footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
  line-height: 1.8;
}
.footer a:hover { color: var(--primary-color); }
.footer .list-unstyled li { margin-bottom: 6px; }

.footer .social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  margin-right: 10px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer .social-links a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  margin-top: 40px;
  text-align: center;
}
.footer-bottom p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

@media (max-width: 768px) {
  .footer { padding: 40px 0 20px; }
  .footer-bottom { margin-top: 20px; padding-top: 20px; }
}
