/* Responsive Footer Styles */
.footer {
  width: 100%;
  background: #222;
  color: #fff;
}
.footer .brand-logo {
  max-width: 140px;
  height: auto;
}
.footer .social-links a {
  display: inline-block;
  margin-right: 0.75rem;
  color: #fff;
  transition: color 0.2s;
}
.footer .social-links a:last-child {
  margin-right: 0;
}
.footer .social-links a:hover {
  color: #0d6efd;
}
.footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer ul {
  padding-left: 0;
  list-style: none;
}
.footer ul li {
  margin-bottom: 0.5rem;
}
.footer ul li:last-child {
  margin-bottom: 0;
}
.footer a.text-light {
  opacity: 0.9;
}
.footer a.text-light:hover {
  opacity: 1;
  color: #0d6efd !important;
}
.footer hr {
  border-color: #444;
}
.footer .text-center p {
  font-size: 0.95rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer .row {
    flex-direction: column;
    gap: 2rem;
  }
  .footer .col-lg-4 {
    max-width: 100%;
    flex: 0 0 100%;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .footer .brand-logo {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .footer .social-links {
    justify-content: center;
    margin-top: 1rem;
  }
}
@media (max-width: 576px) {
  .footer {
    padding: 2rem 0.5rem;
  }
  .footer .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .footer h5 {
    font-size: 1.1rem;
  }
  .footer .text-center p {
    font-size: 0.85rem;
  }
} 