.site-footer {
  background: #0D021C;
  color: #fff;
  padding: 0 0 0 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding: 80px 0 24px 0;
}

.footer-columns {
  display: flex;
  gap: 48px;
  flex: 1 1 100%;
}

.footer-section {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.site-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px 0;
  letter-spacing: 1px;
}

.site-title a {
  color: #fff;
  text-decoration: none;
}

.site-description {
  font-size: 1rem;
  margin: 0;
}

.footer-contact p {
  margin: 0 0 4px 0;
  color: #c7c7e6;
  font-size: 0.98rem;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.social-links a {
  color: #373151;
  background: #FFFFFF;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.social-links a:hover {
  background: #a78bfa;
  color: #181828;
}

.social-links svg {
  width: 14px;
  height: 14px;
  display: block;
}

.footer-section h3 {
  color: #808080;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-menu li a:hover {
  color: #a78bfa;
}

.footer-menu .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.footer-menu .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.footer-menu .menu-item-has-children.is-open > a::after {
  transform: rotate(-135deg);
}

.footer-menu .sub-menu {
  list-style: none;
  padding: 0 0 0 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.footer-menu .menu-item-has-children.is-open > .sub-menu {
  max-height: 500px;
  margin-top: 8px;
}

.footer-menu .sub-menu li a {
  color: #c7c7e6;
  font-size: 0.9rem;
}

.footer-menu .sub-menu li a:hover {
  color: #a78bfa;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-links li a:hover {
  color: #a78bfa;
}

.footer-bottom {
  margin-top: 24px;
}

.footer-bottom-copyright {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.copyright {
  color: #c7c7e6;
  font-size: 12px;
  margin: 0;
}

.disclaimer {
  font-size: 12px;
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
  }
  .footer-section {
    max-width: 100%;
  }
  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 600px) {
 
  .footer-section {
    gap: 10px;
  }
  .footer-bottom {
    padding: 12px 0 4px 0;
    margin-top: 12px;
  }
} 