:root {
  --et-footer-bg: #07190d;
  --et-footer-text: #ffffff;
  --et-accent: #ff8200;
}

.et-footer {
  background: var(--et-footer-bg);
  color: var(--et-footer-text);
  font-family: "Outfit", sans-serif;
}

.et-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
  padding: 56px 24px;
  min-height: 360px;
}

.et-col {
  display: flex;
  flex-direction: column;
}

.et-col-brand,
.et-col-social {
  justify-content: space-between;
  gap: 48px;
}

.et-footer .et-logo {
  width: 120px;
  height: auto;
  display: block;
}

.et-description {
  margin-top: 40px;
  max-width: 455px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--et-footer-text);
}

.et-copyright {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: var(--et-footer-text);
}

.et-footer .et-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--et-footer-text);
}

.et-quick-links {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.et-quick-links li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.et-quick-links li + li {
  margin-top: 28px;
}

.et-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffffff;
  flex: 0 0 auto;
}

.et-quick-links a {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.et-quick-links a:hover,
.et-quick-links a:focus {
  color: var(--et-accent);
  text-decoration: none;
}

.et-social-row {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.et-social-row img {
  width: 58px;
  height: 58px;
}

.et-social-row a {
  display: inline-flex;
  transition: opacity 0.2s ease;
}

.et-social-row a:hover,
.et-social-row a:focus {
  opacity: 0.8;
}

.et-back-top {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: var(--et-accent);
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.et-back-top:hover,
.et-back-top:focus {
  background: #e87500;
  color: #ffffff;
  text-decoration: none;
}

.et-back-arrow {
  font-size: 44px;
  line-height: 1;
  transform: translateY(-2px);
  display: inline-block;
}

/* Hide the old Unfold back-to-top since the footer has its own */
.travel-go-to.u-go-to-modern {
  display: none !important;
}

@media (min-width: 576px) {
  .et-footer-inner {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (min-width: 992px) {
  .et-footer-inner {
    min-height: 430px;
    padding: 64px 0;
    grid-template-columns: 1.35fr 0.8fr 1fr;
  }

  .et-col-links {
    padding-left: 20px;
  }

  .et-footer .et-logo {
    width: 158px;
  }

  .et-back-top {
    align-self: flex-end;
    margin-right: 16px;
  }
}
