/* Footer */
.site-footer {
  background: radial-gradient(52.57% 286.34% at 47.43% 58.02%, #07002B 0%, #32114A 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
  border-top: none;
}

.footer-logo {
  height: 30px !important;
}

.footer-about {
  background: linear-gradient(150deg, rgba(131, 7, 222, 0.1) 0%, rgb(79 0 138 / 55%) 50%, rgb(77 0 133 / 80%) 100%);
}

.footer-about .footer-illustration {
  transform: translate(40%, 40%);
  pointer-events: none;
}

.copyright {
  border-color: #32045e !important;
}

@media (max-width: 991px) {
  .site-footer__bg-image {
    background-size: auto 60%;
    background-position: right bottom;
    opacity: 0.5;
    display: none;
  }
}

.site-footer__column {
  margin-bottom: 2rem;
}

@media (min-width: 576px) {
  .site-footer__title {
    pointer-events: none;
  }

  .site-footer__column {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .site-footer__column:nth-child(2n+1) {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }

  .site-footer__column:nth-child(2n) {
    border-right: none;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }

  .footer-accordion-item+.footer-accordion-item {
    margin-top: 2.5rem;
  }
}

@media (min-width: 768px) {
  .site-footer__column {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .site-footer__column:nth-child(2n+1) {
    padding-left: 1.5rem;
  }

  .site-footer__column:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 1.5rem;
  }

  .site-footer__column:nth-child(3n+1) {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }

  .site-footer__column:nth-child(3n) {
    border-right: none;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
}

@media (min-width: 992px) {
  .site-footer__column {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .site-footer__column:nth-child(3n+1) {
    padding-left: 1.5rem;
  }

  .site-footer__column:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 1.5rem;
  }

  .site-footer__column:nth-child(4n+1) {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }

  .site-footer__column:nth-child(4n) {
    border-right: none;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
}

/* Ensure the very last column never has a right border */
.site-footer__column:last-child {
  border-right: none !important;
}

/* Accordion styles for mobile */
@media (max-width: 575.98px) {
  .site-footer__column {
    margin-bottom: 0;
    padding: 0;
    border-bottom: none;
  }

  .footer-accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
  }

  .site-footer__column:last-child .footer-accordion-item:last-child {
    border-bottom: none;
  }

  .site-footer__title {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .site-footer__title::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
  }

  .site-footer__title[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }

  .site-footer__collapse {
    padding-top: 1rem;
  }
}

.site-footer__title {
  color: #ffffff;
  font-weight: var(--font-weight-600);
  font-size: var(--font-size-16);
  margin-bottom: 1.5rem;
}

.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__link {
  color: #d1d1e0;
  font-size: var(--font-size-13);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-footer__link:hover {
  color: #ffffff;
  padding-left: 0.25rem;
}

.footer-chevron {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  color: #d1d1e0;
}

.site-footer__bottom-bar {
  background-color: #070020;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer__copyright {
  color: #d1d1e0;
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #8800ff;
  /* Purple matching screenshot */
  border-radius: 50%;
  color: #ffffff;
  transition: var(--transition-fast);
  text-decoration: none;
}

.social-icon:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}