/* Footer Styles */

/* Footer Background */
footer.footer-main {
  background-color: #333132;
  color: #e0e0e0;
}

.footer-text {
  color: rgba(224, 224, 224, 0.85);
  line-height: 1.6;
}

.footer-copyright {
  color: rgba(224, 224, 224, 0.75);
}

/* Footer Links with Square Bullets */
.footer-links {
  list-style-type: square;
  padding-left: 1.25rem;
  margin: 0;
  list-style-position: outside;
}

.footer-links li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-links li::marker {
  color: #F9B233;
}

.footer-link {
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #F9B233;
  padding-left: 0.25rem;
}

/* Social Media Icons */
.footer-social-icon {
  color: #e0e0e0;
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-social-icon:hover {
  background-color: rgba(249, 178, 51, 0.2);
  color: #F9B233;
}

/* Mobile Spacing */
@media (max-width: 767px) {
  footer h6 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }
  
  footer .row > div {
    margin-bottom: 1.5rem;
  }
  
  footer .row > div:last-child {
    margin-bottom: 0;
  }
  
  .footer-links {
    padding-left: 1rem;
  }
}
