/* Public-site footer styles. Extracted from templates/layouts/footer.html. */
#footer {
  background: linear-gradient(135deg, #1a3a45 0%, var(--ot-primary-hover, #2f5563) 50%, var(--ot-primary, #3d6b7a) 100%);
  color: rgba(255,255,255,0.85);
  padding: 0;
}
#footer .footer-top {
  padding: 48px 0 32px;
}
#footer h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
#footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}
#footer .footer-about .logo .sitename {
  color: #fff !important;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
#footer .footer-about p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.6;
}
#footer .social-links {
  display: flex;
  gap: 10px;
}
#footer .social-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
}
#footer .social-links a:hover {
  background: rgba(255,255,255,0.15) !important;
  color: #fff;
  transform: translateY(-2px) !important;
  border-color: rgba(255,255,255,0.15);
}
#footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-links ul li {
  margin-bottom: 10px;
}
#footer .footer-links ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
#footer .footer-links ul li a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: background 0.2s;
}
#footer .footer-links ul li a:hover {
  color: #fff;
  padding-left: 4px;
}
#footer .footer-links ul li a:hover::before {
  background: #fff;
}
#footer .footer-contact p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-bottom: 8px;
}
#footer .footer-contact a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
#footer .footer-contact a:hover {
  color: #fff;
}
#footer .footer-contact strong {
  color: rgba(255,255,255,0.9);
}
#footer .footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
#footer .footer-contact .contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}
#footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
#footer .copyright p {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  margin: 0;
}
#footer .copyright .sitename {
  color: rgba(255,255,255,0.7) !important;
}
@media (max-width: 767.98px) {
  #footer .footer-top {
    padding: 36px 16px 24px;
  }
  #footer .copyright {
    padding: 16px;
  }
}
