/* =========================
   GENEL YAPI
========================= */
.site-footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
  color: #ddd;
  padding: 50px 20px 25px;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   SOL BÖLÜM (LOGO + BAŞLIK)
========================= */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-logo img {
  width: 100px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-left h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

/* =========================
   ORTA BÖLÜM (BAĞLANTILAR)
========================= */
.footer-center h4,
.footer-right h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-container ul li {
  margin-bottom: 8px;
}

.footer-container a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-container a:hover {
  color: #00b4ff;
  transform: translateX(2px);
  text-decoration: underline;
}
/* =========================
   SAĞ BÖLÜM (İLETİŞİM + SOSYAL)
========================= */
.contact-info li {
  margin-bottom: 6px;
}

.contact-info a {
  color: #ddd;
}

.contact-info a:hover {
  color: #00b4ff;
}

.footer-social {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ddd;
  font-size: 22px;
  width: 38px;
  height: 38px;
  border: 1px solid #333;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #00b4ff;
  border-color: #00b4ff;
  transform: scale(1.1);
}

/* =========================
   ALT KISIM
========================= */
.footer-bottom {
  text-align: center;
  margin-top: 35px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #999;
}

.footer-bottom .footer-credit a {
  color: #00b4ff;
  text-decoration: none;
}

.footer-bottom .footer-credit a:hover {
  text-decoration: underline;
}

/* =========================
   MOBİL DÜZEN
========================= */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 25px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    align-items: center;
  }

  .footer-left h3 {
    margin-bottom: 5px;
  }

  .footer-social {
    justify-content: center;
    margin-top: 15px;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .footer-bottom {
    margin-top: 25px;
    font-size: 13px;
  }
}
