/* Professional Footer Styles */
.footer {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #27292a;
  color: #f3f3f3;
  padding-top: 2.5rem;
  padding-bottom: 1.2rem;
  border-top: 1px solid #232323;
  font-size: 1rem;
  box-sizing: border-box;
}
.footer > .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.footer-logo-img {
  max-width: 120px;
  max-height: 48px;
  /* background: #fff; */
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.footer-links {
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.footer-link {
  color: #f3f3f3;
  margin: 0 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-link:hover {
  text-decoration: underline;
  color: #ffb300;
}
.footer-social {
  margin-bottom: 0.5rem;
}
.footer-social-link {
  display: inline-block;
  margin: 0 6px;
  font-size: 1.5rem;
  color: #f3f3f3;
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s, transform 0.2s;
}
.footer-social-link:hover {
  color: #ffb300;
  opacity: 1;
  transform: translateY(-2px) scale(1.1);
}
.footer-copyright {
  color: #999;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  background: #232326;
  padding: 1rem 0;
  border-radius: 0 0 8px 8px;
  border-top: 2px solid #232323;
  font-weight: bold;
  text-shadow: 0 1px 3px #000;
  opacity: 1 !important;
  filter: none !important;
}
.footer-divider {
  border-top: 1px solid #333;
  margin: 1.2rem 0 0.7rem 0;
}
@media (max-width: 767px) {
  .footer-logo-link, .footer-links, .footer-social {
    justify-content: center !important;
    text-align: center !important;
  }
  .footer-links {
    margin-bottom: 1rem;
  }
  .footer {
    font-size: 0.98rem;
    padding-top: 1.2rem;
    padding-bottom: 0.7rem;
  }
  .footer-logo-img {
    max-width: 90px;
    max-height: 36px;
  }
}
.text-muted {
    --bs-text-opacity: 1;
    color: #999 !important;
} 