/* ================================================
   FOOTER CSS
   bg-navy text-white, border-t border-white/10
   ================================================ */

.site-footer {
  background: linear-gradient(135deg, #0a1628 0%, rgba(46, 139, 87, 0.85) 100%);          /* bg-navy */
  color: rgba(255,255,255,0.60);
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px)  { .footer-container { padding: 0 24px; } }
@media (min-width: 1024px) { .footer-container { padding: 0 32px; } }

/* ================================================
   TOP SECTION — brand + 4 cols
   grid-cols-1 md:grid-cols-2 lg:grid-cols-5
   ================================================ */
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 48px; }
}

/* ---- Brand column ---- */
.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 24px;
}

.footer-brand .footer-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);   /* white logo */
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 0;
}

/* ---- Link columns ---- */
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-col a:hover {
  color: #2DA06D;
  text-decoration: none;
}

/* ================================================
   BOTTOM — copyright + policy links
   border-t border-white/10
   ================================================ */
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-bottom__links {
  display: flex;
  gap: 24px;
}

.footer-bottom__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom__links a:hover {
  color: #ffffff;
  text-decoration: none;
}
