/* Footer Styles */

.main-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 60px 0 30px;
}

.main-footer h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.main-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-footer ul li {
  margin-bottom: 10px;
}

.main-footer ul li a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s;
}

.main-footer ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 30px;
  margin-top: 40px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-800);
  border-radius: 50%;
  color: var(--gray-400);
  margin-right: 10px;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-badges img {
  height: 40px;
  filter: grayscale(50%);
  opacity: 0.8;
  transition: all 0.2s;
}

.trust-badges img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
