.footer {
  background: #0d0d0d;
  color: #ccc;
  padding: 60px 0 30px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px; /* masaüstü için geniş boşluk */
  justify-content: space-between;
  padding: 0 20px;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #f9b234;
  position: absolute;
  left: 0;
  bottom: -6px;
}

.footer-col p {
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 10px;
}

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

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

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #f9b234;
}

.footer-col a {
  color: #aaa;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col .social {
  margin-top: 15px;
}

.footer-col .social a {
  color: #aaa;
  margin-right: 12px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer-col .social a:hover {
  color: #f9b234;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid #222;
  font-size: 14px;
  color: #666;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px; /* mobilde daha dar boşluk */
  }
  .footer-col {
    width: 100%;
  }
  .footer-col h4 {
    margin-bottom: 10px;
  }
  .footer-col p,
  .footer-col ul li {
    margin-bottom: 6px;
  }
}
