/* Footer + inner-page hero */

/* ══════════════ FOOTER ══════════════ */
#footer {
  /* Kept deliberately deep — grad-deep runs too bright at this scale */
  background: linear-gradient(160deg, var(--brand-blue-900) 0%, var(--brand-blue-800) 100%);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 56px; margin-bottom: 56px;
}
.footer-brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem; color: var(--white);
  font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 0.7rem; color: var(--gold-light);
  text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 18px;
  font-weight: 500;
}
.footer-brand-text {
  font-size: 0.86rem; color: rgba(255,255,255,0.68);
  line-height: 1.65; max-width: 280px;
}
.footer-col-title {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--white); margin-bottom: 18px;
}
.footer-link {
  display: block; font-size: 0.86rem; color: rgba(255,255,255,0.68);
  margin-bottom: 10px; transition: var(--transition); cursor: pointer;
  font-weight: 400; letter-spacing: -0.005em;
}
.footer-link:hover { color: var(--gold-light); }
.footer-addr {
  font-size: 0.84rem; color: rgba(255,255,255,0.68);
  line-height: 1.7; margin-bottom: 16px;
}
.footer-mail {
  font-size: 0.84rem; color: rgba(255,255,255,0.68);
  margin-bottom: 6px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-text {
  font-size: 0.78rem; color: rgba(255,255,255,0.6);
  letter-spacing: -0.005em;
}

/* ── Social links ─────────────────────────────────────
   Icons come from MALINDO.social; hover fills with the
   brand gradient.                                       */
.footer-social { margin-top: 24px; }
.footer-social-label {
  font-size: 0.68rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.16em; color: rgba(255,255,255,0.62); margin-bottom: 12px;
}
.social-list { display: flex; gap: 10px; list-style: none; padding: 0; margin: 0; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.78);
  transition: var(--transition);
}
.social-link svg { width: 24px; height: 24px; display: block; }
.social-link:hover,
.social-link:focus-visible {
  background: var(--grad-primary);
  border-color: var(--brand-blue-400);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--brand-blue-600-rgb),0.42);
}
.social-link:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }

/* ── RBI trust signal ── */
.footer-rbi {
  display: flex; align-items: flex-start; gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0 4px;
}
.footer-rbi-mark { flex-shrink: 0; margin-top: 2px; color: var(--brand-blue-300); }
.footer-rbi-line {
  font-size: 0.8rem; color: rgba(255,255,255,0.72);
  line-height: 1.55; font-weight: 500;
}
.footer-rbi-note {
  font-size: 0.72rem; color: rgba(255,255,255,0.62);
  line-height: 1.55; margin-top: 4px;
}


/* ══════════════ PAGE HERO (inner pages) ══════════════ */
.inner-hero {
  background: var(--grad-deep);
  padding: 176px 0 72px; position: relative; overflow: hidden;
}
.inner-hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 48px 48px;
}
.inner-hero h1 { color: var(--white); margin-bottom: 12px; }
.inner-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 560px; }
