/* ============================================================
   footer.css — FOOTER
   ============================================================ */

footer {
  background: #07080F;
  padding: 64px 0 32px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand column */
.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.foot-logomark {
  width: 30px; height: 30px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff;
}
.foot-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.foot-contact { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 2.2; }
.foot-contact a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.foot-contact a:hover { color: rgba(255,255,255,0.75); }

/* Link columns */
.foot-col-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 18px;
}
.foot-links { display: flex; flex-direction: column; gap: 10px; }
.foot-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
}
.foot-links a:hover { color: #fff; }

/* Bottom bar */
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-copy { font-size: 13px; color: rgba(255,255,255,0.18); }
.foot-badges { display: flex; gap: 8px; }
.foot-badge {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 4px 12px;
  letter-spacing: 0.04em;
}

/* ──────────────────────────────────────────
   FOOTER SOCIAL ICONS
────────────────────────────────────────── */

.foot-social {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}

.foot-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.foot-social a svg {
  width: 18px;
  height: 18px;
}

.foot-social a:hover {
  background: #a5b4fc; /* matches your highlight color */
  color: #0f172a;
  transform: translateY(-4px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; text-align: center; }
}




@media (max-width:600px){

  footer{
    padding:48px 0 24px;
  }

  .foot-tagline{
    max-width:100%;
  }

  .foot-social{
    justify-content:flex-start;
  }

}