/* ===== FOOTER STYLES (STANDARD) ===== */
:root {
  --blue-base: #144086;
  --blue-stripe: #1a4e9e;
  --gold: #e8c158;
  --black: #141414;
  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.85);
  --footer-font: 'Public Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Container Standard */
.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Bahagian Atas (Biru Belang) */
.foot-band {
  position: relative;
  background-color: var(--blue-base);
  background-image: repeating-linear-gradient(
    135deg,
    var(--blue-stripe) 0px,
    var(--blue-stripe) 26px,
    var(--blue-base) 26px,
    var(--blue-base) 52px
  );
  color: var(--white);
  padding: 36px 0 30px; /* Saiz padding standard yang kemas */
  font-family: var(--footer-font);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: center; /* Seimbangkan aras tengah antara 3 lajur */
  text-align: center;
}

/* Lajur Kiri & Kanan */
.foot-col h4 {
  font-family: var(--footer-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin: 0 0 14px 0;
  text-transform: uppercase;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 14px;
}

.foot-links a {
  font-size: 12.5px;
  color: var(--white-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.foot-links a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.foot-links .sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
}

/* Lajur Tengah (Logo + Maklumat) */
.crest-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.crest-logo {
  height: 42px; /* Hadkan tinggi logo supaya saiz standard */
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 8px;
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
}

.crest-word {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.crest-word span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 2px;
  opacity: 0.9;
}

.crest-address {
  margin-top: 6px;
  font-size: 11.5px;
  color: var(--white-soft);
  line-height: 1.4;
}

/* Bahagian Bawah (Bar Hitam) */
.bottom-bar {
  background: var(--black);
  color: var(--white-soft);
  padding: 12px 0;
  font-family: var(--footer-font);
  font-size: 11.5px;
}

.bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  text-align: center;
}

.bottom-inner .sep {
  color: rgba(255, 255, 255, 0.25);
}

.bottom-inner a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.bottom-inner a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.bottom-inner .brand-name {
  color: var(--gold);
  font-weight: 600;
}

/* Responsif Mobile */
@media (max-width: 820px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}