.desktop-footer-container,
.mobile-footer-container {
  width: 100%;
  background-color: var(--bg-main);
  border-top: 1px solid var(--bg-border);
  padding: 25px 20px;
  box-sizing: border-box;
}

.mobile-footer-container {
  display: none;
}

.footer-links-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo-container svg {
  height: 35px;
  width: auto;
  transition: transform 0.3s ease;
}

.footer-logo-container:hover svg {
  transform: scale(1.05);
}

.social-links,
.iletisim-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 8px;
}

.social-btn .svgContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(30, 41, 59, 0.3);
  border: 1px solid var(--bg-border);
  border-radius: 8px;
  z-index: 2;
  transition: all 0.3s ease;
}

.social-btn svg {
  fill: var(--text-muted);
  width: 18px;
  height: 18px;
  transition: all 0.3s ease;
}

.social-btn .BG {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease;
}

.social-btn:hover .BG {
  opacity: 1;
  transform: rotate(35deg);
  transform-origin: bottom;
}

.social-btn:hover svg {
  fill: white;
}

.social-btn:hover .svgContainer {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: transparent;
}

.linkedin .BG {
  background-color: #0077b5;
}
.instagram .BG {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}
.github .BG {
  background-color: #24292e;
}
.spotify .BG {
  background-color: #1db954;
}
.whatsapp .BG {
  background-color: #25d366;
}
.telegram .BG {
  background-color: #229ed9;
}
.mail .BG {
  background: linear-gradient(45deg, #4f46e5, #3b82f6);
}
.phone .BG {
  background: linear-gradient(45deg, #10b981, #059669);
}

.copyright {
  width: 100%;
  padding: 15px 20px;
  background-color: var(--bg-main);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.8rem;
  border-top: 1px solid rgba(51, 65, 85, 0.3);
  box-sizing: border-box;
}

.copyright i {
  color: var(--accent);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .desktop-footer-container {
    display: none;
  }

  .mobile-footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
  }

  .mobile-footer-links-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .mobile-social-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .mobile-social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .mobile-social-btn .svgContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(30, 41, 59, 0.3);
    border: 1px solid var(--bg-border);
    border-radius: 8px;
  }

  .mobile-social-btn svg {
    fill: var(--text-muted);
    width: 20px;
    height: 20px;
  }

  .copyright {
    padding-bottom: 120px;
    border-top: none;
  }
}
