.site-footer {
  background-color: var(--iki);
  color: var(--text);
  padding: 24px 40px;
  font-size: 14px;
  transition: width 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  transition: width 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

/* Logo ortada */
.footer-logo {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
  transition: width 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

#footer-logo {
  max-width: 60px;
  height: auto;
  transition: width 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

/* Alt satır için container */
.footer-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: width 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

/* KVKK linkleri - solda konumlanacak */
.footer-links {
  position: absolute;
  left: 0;
  display: flex;
  gap: 12px;
  font-weight: 500;
  transition: width 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

/* Açılır butonlar */
.footer-links .info-btn {
  width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  background: var(--iki);
  color: var(--text);
  font: inherit;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.4s ease, background-color 0.3s ease;
}

.footer-links .info-btn i {
  font-size: 16px;
  pointer-events: none;
  transition: width 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

.footer-links .info-btn span {
  margin-left: 8px;
  opacity: 0;
  transition: opacity 0.3s ease 0.15s;
  pointer-events: none;
  user-select: none;
  transition: width 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

.footer-links .info-btn:hover,
.footer-links .info-btn:focus {
  width: 160px;
  background-color: var(--hover);
  color: var(--text-hover);
  transition: width 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

.footer-links .info-btn span a:hover,
.footer-links .info-btn:hover span,
.footer-links .info-btn:focus span {
  opacity: 1;
  pointer-events: auto;
  transition: width 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

.footer-links .info-btn span a {
  color: var(--text-hover);
  text-decoration: none;
  transition: width 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

.footer-links .info-btn span a:hover {
  text-decoration: none;
  color: var(--text-hover);
  transition: width 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

/* Copyright tam ortada */
.footer-copy {
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  flex-grow: 0;
  position: relative;
  z-index: 1;
  transition: width 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

/* Sosyal medya sağda */
.footer-social {
  position: absolute;
  right: 0;
  display: flex;
  gap: 16px;
  font-weight: 600;
  transition: width 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--iki);
  border-radius: 10px;
  width: 36px;
  height: 36px;
  font-size: 16px;
  color: var(--text);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s;
  text-decoration: none;
}

.social-btn:hover {
  background-color: var(--hover);
  color: var(--text-hover);
  transform: scale(1.1);
  text-decoration: none;
  transition: width 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer-logo {
    margin-bottom: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    position: static;
  }
  .footer-links,
  .footer-social {
    position: static;
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
  }
  .footer-copy {
    position: static;
    margin-bottom: 8px;
  }
}
