/* ==========================================================================
   FOOTER.CSS — Footer, Widget, Menu, Social, Newsletter, Copyright, Floating
   ========================================================================== */

.footer{
  background: #071129;
  color: rgba(255,255,255,.75);
  padding-top: 0;
}
.footer a{ color: rgba(255,255,255,.75); }
.footer a:hover{ color: #fff; }

/* ---------- Footer Sales Banner (Profil Sales Resmi) ---------- */
.footer-sales{
  padding: 40px 24px 36px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-sales__title{
  color: #fff;
  font-size: clamp(1.05rem, 1rem + .6vw, 1.4rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.footer-sales__text{
  max-width: 700px;
  margin-inline: auto;
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(255,255,255,.7);
}
.footer-sales__name{ color: var(--color-brand); font-weight: 800; }
.footer-sales__contact{
  display: flex; align-items: center; justify-content: center; gap: 22px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-sales__contact a{
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--color-brand);
  font-weight: 800;
  font-size: 1rem;
}
.footer-sales__contact svg{ width: 18px; height: 18px; }
.footer-sales__contact .chip-icon{
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,122,26,.15);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-brand);
}

.footer__grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand .brand__name{ color: var(--color-brand); }
.footer__brand .brand__sub{ color: rgba(255,255,255,.7); }
.footer__desc{ font-size: .88rem; line-height: 1.7; margin-block: 16px; max-width: 300px; }

.footer__widget-title{ color: #fff; font-weight: 700; font-size: .92rem; margin-bottom: 18px; }
.footer__menu li{ margin-bottom: 10px; font-size: .88rem; }

.footer__contact li{ display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: .86rem; }
.footer__contact svg{ width: 16px; height: 16px; margin-top: 2px; color: var(--color-primary-light); flex-shrink: 0; }

.footer__social{ display: flex; gap: 10px; margin-top: 18px; }
.footer__social a{
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--transition-fast);
}
.footer__social a:hover{ background: var(--color-primary); }
.footer__social svg{ width: 16px; height: 16px; }

.footer__bottom{
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 22px;
  font-size: .8rem;
  flex-wrap: wrap; gap: 10px;
}
.footer__bottom-links{ display: flex; gap: 18px; }

/* ---------- Floating WhatsApp ---------- */
.floating-wa{
  position: fixed; right: 24px; bottom: 24px; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(37,211,102,.4);
  transition: transform var(--transition-fast);
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.floating-wa:hover{ transform: scale(1.08); }
.floating-wa svg{ width: 28px; height: 28px; }
@keyframes wa-pulse{
  0%, 100%{ box-shadow: 0 10px 24px rgba(37,211,102,.4); }
  50%{ box-shadow: 0 10px 24px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.12); }
}

/* ---------- Back To Top ---------- */
.back-to-top{
  position: fixed; right: 24px; bottom: 92px; z-index: 400;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--transition-fast);
}
.back-to-top.is-visible{ opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg{ width: 18px; height: 18px; }
