/* ═══════════════════════════════════════════════════════════
   SITE FOOTER — MNIRSM 2026
   ═══════════════════════════════════════════════════════════ */

#footer.site-footer {
  background: #0c0c0e;
  color: #ffffff;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 5;
}

/* Top accent line */
#footer.site-footer::before {
  content: '';
  display: block;
  height: 0px;
  background: linear-gradient(90deg, #ff1f6b 0%, rgba(255,31,107,0.3) 60%, transparent 100%);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ── TOP GRID: brand + 3 columns ── */
.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.5fr;
  gap: 2rem 4rem;
  padding: 5rem 0 3.5rem;
  align-items: start;
}


.footer-brand-name {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 3.4rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #ffffff;
  margin: 0 0 0.4rem 0;
}

.footer-brand-name span {
  color: #ff1f6b;
  margin-left: 0.12em;
}

.footer-brand-tagline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  margin: 0 0 1.4rem 0;
}

.footer-brand-date {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0 0 1.8rem 0;
  padding-left: 0.85rem;
  border-left: 2px solid #ff1f6b;
}

/* Social icons row */
.footer-social {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-social a:hover {
  border-color: #ff1f6b;
  color: #ff1f6b;
  background: rgba(255,31,107,0.1);
}

/* ── COLUMN HEADINGS ── */
.footer-col-heading {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 1.3rem 0;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,31,107,0.28);
  position: relative;
}

/* Accent dot before heading */
.footer-col-heading::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff1f6b;
  margin-right: 0.5em;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* ── LINKS LIST ── */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  transition: color 0.2s ease, gap 0.2s ease;
}

.footer-links a::before {
  content: '›';
  color: #ff1f6b;
  font-size: 1.1em;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  gap: 0.6em;
}

.footer-links a:hover::before {
  opacity: 1;
}

/* ── CONTACT / ADDRESS ── */
.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-address-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.footer-address-icon {
  color: #ff1f6b;
  font-size: 0.85rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 1.2rem;
  text-align: center;
}

.footer-address-text {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}

.footer-address-text a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-address-text a:hover {
  color: #ff1f6b;
}

/* ── DIVIDER ── */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg,
    rgba(255,31,107,0.5) 0%,
    rgba(255,255,255,0.1) 40%,
    transparent 100%
  );
}

/* ── BOTTOM BAR ── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy,
.footer-credit {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.footer-credit {
  text-align: right;
}

.footer-credit a {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-credit a:hover {
  color: rgba(255,255,255,0.65);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 3rem;
    padding: 4rem 0 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    padding: 0 1.25rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding: 3rem 0 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-credit {
    text-align: center;
  }
}
