/* ═══════════════════════════════════════════════════════════
   FOOTER - DARK THEME
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --footer-bg: #1a1a1a;
  --footer-text: #e5e5e5;
  --footer-muted: #9ca3af;
  --footer-border: #2a2a2a;
  --footer-accent: #ffffff;
  --footer-hover: #f5f5f5;
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER TOP
   ═══════════════════════════════════════════════════════════ */

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--footer-border);
}

/* Brand Column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--footer-accent);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--footer-muted);
  max-width: 320px;
}

/* Social Media */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--footer-border);
  border-radius: 12px;
  color: var(--footer-text);
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.social-link.instagram:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-link.whatsapp:hover {
  background: #25D366;
}

.social-link.tiktok:hover {
  background: #000000;
  border: 2px solid #ffffff;
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--footer-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--footer-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  width: fit-content;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--footer-accent);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--footer-accent);
  transform: translateX(4px);
}

.footer-link:hover::after {
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER BOTTOM
   ═══════════════════════════════════════════════════════════ */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 14px;
  color: var(--footer-muted);
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-copyright span {
  font-weight: 600;
  color: var(--footer-accent);
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 16px;
}

.payment-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--footer-muted);
}

.payment-icons {
  display: flex;
  gap: 8px;
}

.payment-icon {
  width: 40px;
  height: 28px;
  background: var(--footer-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--footer-text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER (Optional)
   ═══════════════════════════════════════════════════════════ */

.footer-newsletter {
  background: var(--footer-border);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 48px;
}

.newsletter-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--footer-accent);
  margin-bottom: 8px;
}

.newsletter-desc {
  font-size: 14px;
  color: var(--footer-muted);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--footer-bg);
  border: 2px solid transparent;
  border-radius: 12px;
  color: var(--footer-text);
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.newsletter-input:focus {
  border-color: var(--footer-accent);
  background: rgba(255, 255, 255, 0.05);
}

.newsletter-input::placeholder {
  color: var(--footer-muted);
}

.newsletter-btn {
  padding: 14px 28px;
  background: var(--footer-accent);
  color: var(--footer-bg);
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
}

.newsletter-btn:hover {
  background: var(--footer-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 40px 0 0;
  }

  .footer-container {
    padding: 0 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-social {
    gap: 8px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
    text-align: center;
  }

  .footer-payment {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
  }
}