/* Footer logo oranlama ve ortalama */
.footer-logo {
  display: block;
  max-width: 100px;  
  width: 100%;
  height: auto;
  margin: 8px auto 4px auto;
  object-fit: contain;
}
/* Modern dark footer style matching the provided screenshot */
.site-footer.dark-footer {
  background: #181818;
  color: #f3f3f3;
  padding: 48px 0 0 0;
  font-family: 'Inter', 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.site-footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
.site-footer .footer-col {
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 24px;
}
.site-footer .footer-logo {
  max-width: 220px;
  margin-bottom: 28px;
}

/* Newsletter and extra sections */
.site-footer .footer-newsletter {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer .footer-newsletter label {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
}
.site-footer .footer-newsletter input[type="email"] {
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  margin-right: 8px;
  width: 220px;
  max-width: 100%;
}
.site-footer .footer-newsletter button {
  background: #eab216;
  color: #181818;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.site-footer .footer-newsletter button:hover {
  background: #fff;
  color: #eab216;
}
.site-footer .footer-col h5 {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 10px;
  border-bottom: 2px solid #eab216;
  display: inline-block;
  padding-bottom: 2px;
}
.site-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-col ul li {
  margin-bottom: 8px;
}
.site-footer .footer-col ul li a {
  color: #f3f3f3;
  text-decoration: none;
  transition: color .18s;
}
.site-footer .footer-col ul li a:hover {
  color: #eab216;
}
.site-footer address, .site-footer .phone, .site-footer .hours {
  color: #d1d5db;
  font-size: 1rem;
  margin-bottom: 8px;
}
.site-footer .badges {
  margin-top: 18px;
}
.site-footer .mini-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  margin-right: 6px;
}
.site-footer .footer-bottom {
  border-top: 1px solid #23242a;
  margin-top: 32px;
  padding: 18px 0 8px 0;
  text-align: center;
  color: #d1d5db;
  font-size: 1rem;
}
.site-footer .footer-social {
  display: flex;
  gap: 12px;
  margin: 18px 0 0 0;
}
.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eab216;
  color: #181818;
  font-size: 1.3rem;
  margin-right: 2px;
  transition: background .18s, color .18s;
  text-decoration: none;
}
.site-footer .footer-social a:hover {
  background: #fff;
  color: #eab216;
}
@media (max-width: 1200px) {
  .site-footer .footer-grid {
    gap: 12px 18px;
  }
}
@media (max-width: 900px) {
  .site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    padding: 0 16px;
  }

  /* İlk kolon (logo + hakkında) tam genişlik */
  .site-footer .footer-col:first-child {
    grid-column: 1 / -1;
  }

  /* Son kolon (newsletter) tam genişlik */
  .site-footer .footer-col.newsletter {
    grid-column: 1 / -1;
  }

  .site-footer .footer-col {
    min-width: 0;
    margin-bottom: 0;
  }

  /* Logo mobilde daha küçük */
  .site-footer .footer-logo {
    max-width: 120px;
    margin-bottom: 12px;
  }

  /* Hakkında yazısı */
  .site-footer .footer-col:first-child .footer-about-text {
    font-size: 0.92rem;
    line-height: 1.55;
    color: #d1d5db;
    margin-bottom: 10px;
  }

  /* Sosyal ikonlar */
  .site-footer .footer-social {
    margin-top: 10px;
    gap: 8px;
  }
  .site-footer .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }

  /* Başlıklar */
  .site-footer .footer-col h5 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  /* Liste öğeleri */
  .site-footer .footer-col ul li {
    margin-bottom: 6px;
    font-size: 0.9rem;
  }
  .site-footer .footer-col ul li a {
    font-size: 0.9rem;
  }

  /* İletişim listesi ikonlu */
  .site-footer .footer-col ul li i {
    width: 16px;
    display: inline-block;
    margin-right: 4px;
    color: #eab216;
    font-size: 0.85rem;
  }

  /* Newsletter formu */
  .site-footer .footer-newsletter {
    margin-top: 10px;
  }
  .site-footer .footer-newsletter > div {
    display: flex;
    gap: 8px;
  }
  .site-footer .footer-newsletter input[type="email"] {
    flex: 1;
    min-width: 0;
    width: auto;
    margin-right: 0;
    font-size: 0.92rem;
    padding: 7px 10px;
  }
  .site-footer .footer-newsletter button {
    white-space: nowrap;
    padding: 7px 14px;
    font-size: 0.9rem;
  }

  /* Footer bottom */
  .site-footer .footer-bottom {
    margin-top: 20px;
    padding: 14px 16px 12px 16px;
    text-align: center;
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
  .site-footer .footer-col:first-child,
  .site-footer .footer-col.newsletter {
    grid-column: 1;
  }
}
