.site-footer {
  /* background: transparent; */
  background: var(--transparent);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-top: none;
  box-shadow: none;
  color: white;
  padding: 2rem;
  font-size: 0.9rem;
  /* background: #f7f7f7; */
  /* border-top: 1px solid #e0e0e0; */
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Footer Left */
.footer-left {
  color: #e0e0e0;
  font-weight: 500;
  /* color: #999; */
}

/* Footer Navigation */
.footer-nav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  align-items: center;
}

.footer-nav > ul > li:not(:last-child) {
  margin-right: 2rem;
}

.footer-nav > ul > li:not(.footer-lang) {
  display: inline-flex;
  align-items: center;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  /* color: var(--text-secondary); */
}

.footer-nav a:hover {
  color: var(--text-secondary);
  /* color: var(--color-primary); */
}

/* Language Toggle */
.footer-lang {
  position: relative;
}

.footer-lang > a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  cursor: pointer;
  display: flex;
}

.footer-lang > a:hover {
  color: var(--text-secondary);
}

/* Dropdown container */
.lang-dropdown {
  position: absolute;
  bottom: 120%;
  left: 0;
  width: 120px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(5px);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  font-size: 0;
}

.footer-lang.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Dropdown list items */
.lang-dropdown li {
  padding: 0;
  margin: 0;
  width: 100%;
  border: none;
  font-size: inherit;
  line-height: 0;
}

.lang-dropdown li:empty {
  display: none;
  height: 0;
}

/* Anchor styles inside dropdown */
.lang-dropdown a {
  display: flex;
  align-items: center;
  height: 2.4rem;
  padding: 0 0.8rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1;
  color: #333;
  font-weight: 500;
  background: #fff;
  transition: background 0.2s ease;
  box-sizing: border-box;
  text-decoration: none;
  text-align: left;
  border-top: 1px solid #eee;
}

.lang-dropdown li:first-child a {
  border-top: none;
}

.lang-dropdown a:hover {
  background: var(--text-secondary);
  color: #fff;
}

/* Social Icons */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}

.footer-social a:hover {
  transform: translateY(-2px);
}

.footer-social img {
  width: 16px;
  height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-lang {
    width: 100%;
  }

  .footer-lang > a {
    width: 100%;
    justify-content: space-between;
  }

  .lang-dropdown {
    width: 100%;
    left: 0;
    bottom: 100%;
  }
}

@media (max-width: 480px) {
  .footer-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-social a {
    width: 28px;
    height: 28px;
  }

  .footer-social img {
    width: 14px;
    height: 14px;
  }
}