/* Footer Styles */
.footer {
  background-color: var(--dark-gray);
  color: var(--white-color);
  padding-top: 60px;
}

#satis,
#bakim,
#onarim,
#saf-su {
  scroll-margin-top: 100px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 15px;
  background-color: white;
  padding: 5px;
  border-radius: 5px;
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column h4 {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary-color);
}

.footer-column ul li {
  margin-bottom: 10px;
  display: block;
}

.footer-column ul li i {
  margin-right: 10px;
  color: var(--secondary-color);
  width: 16px;
}

.footer-column a {
  color: #aaa;
  transition: color 0.3s ease, transform 0.3s ease;
  display: block;
}

.footer-column a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid #454545;
  padding: 20px 0;
  text-align: center;
}

@media (max-width: 992px) {
  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-column {
    flex: 1 0 calc(50% - 30px);
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-column {
    width: 100%;
  }
}
