/* ============================================
   Footer
   ============================================ */

.footer {
  position: relative;
  z-index: 1;
  padding: 120px 0 60px 0;
  background: var(--accent-orange);
  color: #fff;
  overflow: hidden;
}

.footer-top-container {
  position: relative;
  z-index: 10;
}

.footer-links-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 48px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-links {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover {
  opacity: .75;
}

.footer-app-badges {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-app-badges img {
  height: 48px;
  width: auto;
  border-radius: 10px;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, .2);
  margin-bottom: 40px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .92rem;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-right-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-right-group a {
  font-size: .88rem;
  font-weight: 500;
  color: #fff;
  transition: color .15s ease;
}

.footer-right-group a:hover {
  opacity: .75;
}

.footer-right-group .social-link {
  display: flex;
  align-items: center;
}

.footer-social-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social-wrapper span {
  font-size: .92rem;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.social-link {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .15);
  border-radius: 50%;
  transition: transform var(--transition-fast), opacity var(--transition-fast), background var(--transition-fast);
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .25);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* Giant Logo */
.footer-giant-logo {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 2vw;
  color: rgba(255, 255, 255, .92);
  line-height: .8;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
}

.footer-giant-icon {
  width: clamp(60px, 10vw, 180px);
  height: auto;
  flex-shrink: 0;
  margin-bottom: .5%;
}

.footer-giant-text {
  font-family: var(--font-heading);
  font-size: clamp(70px, 15vw, 240px);
  font-weight: 900;
  letter-spacing: -.03em;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-desc {
    max-width: 100%;
  }
}
