.site-footer {
  width: 100%;
  color: var(--color-text);
  margin-top: 60px;
  position: relative;
  background: rgba(30, 30, 40, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 24px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.footer-column h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-column p {
  font-size: 14px;
  line-height: 1.6;
}
.footer-logo {
  max-width: 150px;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-column ul a {
  color: var(--color-text);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
}
.footer-column ul a:hover {
  color: #fff;
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: background-color .2s, transform .2s;
}
.social-icons a:hover {
  background-color: var(--hover);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  position: relative;
  z-index: 2;
}

.footer-legal-info {
  margin-top: 8px;
  font-size: 12px;
  color: #888;
  line-height: 1.5;
}
