/* Shared footer — digunakan oleh semua halaman publik */
:root {
  --ft-red-deep: #0d0000;
  --ft-red-mid:  #3d0000;
  --ft-red:      #7B0000;
  --ft-gold:     #C9A84C;
  --ft-gold-lt:  #E8C96A;
  --ft-white:    #FFFFFF;
}

.info-footer {
  background: linear-gradient(135deg, var(--ft-red-deep) 0%, var(--ft-red-mid) 45%, var(--ft-red) 100%);
  border-top: 2px solid rgba(201,168,76,0.25);
  position: relative; overflow: hidden;
}
.info-footer::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url('/img/footer-pattern.svg');
  background-size: 120px 120px; background-repeat: repeat;
}
.info-footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding: 56px 5vw 40px;
  max-width: 1400px; margin: 0 auto;
  position: relative; z-index: 1;
}
.info-footer-logo { height: 44px; width: auto; margin-bottom: 14px; display: block; }
.info-footer-brand-fallback {
  display: none; font-family: var(--font-display, 'Amiri', serif);
  font-size: 1.15rem; color: var(--ft-white); margin-bottom: 14px;
}
.info-footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.info-footer-copy { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.info-footer-socmed { display: flex; gap: 8px; flex-wrap: wrap; }
.info-footer-socmed a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  color: rgba(255,255,255,0.7);
}
.info-footer-socmed a:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); color: var(--ft-white); }
.info-footer-socmed a svg { width: 16px; height: 16px; display: block; flex-shrink: 0; }
.info-footer-col-title {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--ft-gold-lt); margin-bottom: 18px;
}
.info-footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.info-footer-nav-list a { font-size: 0.82rem; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 7px; transition: color 0.2s; }
.info-footer-nav-list a::before { content: '›'; color: var(--ft-gold); font-size: 1rem; line-height: 1; }
.info-footer-nav-list a:hover { color: var(--ft-white); }
.info-footer-addr { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .info-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .info-footer-inner > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .info-footer-inner { grid-template-columns: 1fr 1fr; gap: 20px 16px; padding: 36px 5vw 24px; }
  .info-footer-inner > div:last-child { grid-column: 1 / -1; }
}
