/* --------------------------------------------------------------------------
   Footer Section
   -------------------------------------------------------------------------- */

.vg-footer {
  background: #5a0015;
}

.vg-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.vg-footer__top {
  padding: 4rem 0 3rem;
}

.vg-footer__top .vg-footer__inner {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2rem;
}

.vg-footer__column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vg-footer__logo svg {
  width: 48px;
  height: 48px;
  color: var(--gold);
}

.vg-footer__description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0.5rem 0 1.25rem;
}

.vg-footer__social {
  display: flex;
  gap: 0.875rem;
  margin-top: 0.5rem;
}

.vg-footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--white);
  transition: all 0.3s ease;
}

.vg-footer__social-link:hover {
  background: var(--gold);
  color: #5a0015;
  transform: translateY(-3px);
}

.vg-footer__social-link svg {
  width: 20px;
  height: 20px;
}

.vg-footer__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.vg-footer__links,
.vg-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.vg-footer__links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.vg-footer__links a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.vg-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.vg-footer__contact svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.vg-footer__bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.vg-footer__bottom .vg-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.vg-footer__copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 0;
}

.vg-footer__legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vg-footer__legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.vg-footer__legal a:hover {
  color: var(--gold);
}

.vg-footer__separator {
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1200px) {
  .vg-footer__top .vg-footer__inner {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .vg-footer__top .vg-footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .vg-footer__column--logo {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .vg-footer__top {
    padding: 3rem 0 2rem;
  }

  .vg-footer__top .vg-footer__inner {
    grid-template-columns: 1fr;
  }

  .vg-footer__column--logo {
    grid-column: span 1;
  }

  .vg-footer__bottom .vg-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
