/* ============================================================
   DAILY OPPORTUNITIES — footer.css
   ============================================================ */

.site-footer {
  background: #0F2210;
  color: rgba(255,255,255,.80);
  font-family: 'DM Sans', system-ui, sans-serif;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}

/* ── Container ── */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 5% 0;
}

/* ── 4-column grid ── */
.footer-content {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* ── Brand column ── */
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-brand-dot {
  width: 9px;
  height: 9px;
  background: #FFB300;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
}
.footer-text {
  font-size: .875rem;
  color: rgba(255,255,255,.50);
  line-height: 1.7;
  margin: 0 0 6px;
  max-width: 260px;
}
.footer-tagline {
  font-size: .78rem;
  color: rgba(255,255,255,.30);
  font-style: italic;
  margin: 0 0 22px;
  display: block;
}

/* ── Social icons ── */
.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-social-btn {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.footer-social-btn svg { width: 16px; height: 16px; }
.footer-social-btn:hover { background: rgba(255,255,255,.14); }
.footer-social-btn:hover svg { color: #A5D6A7; }

/* ── Column headings ── */
.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin: 0 0 16px;
}

/* ── Link lists ── */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.50);
  text-decoration: none;
  padding: 4px 0;
  display: inline-flex;
  transition: color .18s;
}
.footer-links a:hover { color: #A5D6A7; }

/* ── Bottom bar ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 clamp(24px, 4vw, 36px);
  flex-wrap: wrap;
}
.footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.28);
  margin: 0;
}
.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: .78rem;
  color: rgba(255,255,255,.28);
  text-decoration: none;
  padding: 2px 10px;
  border-right: 1px solid rgba(255,255,255,.10);
  transition: color .18s;
  white-space: nowrap;
}
.footer-legal a:last-child { border-right: none; }
.footer-legal a:hover { color: rgba(255,255,255,.60); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-section:first-child { grid-column: 1 / -1; }
  .footer-text { max-width: none; }
}

@media (max-width: 480px) {
  .footer-content { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-legal a:first-child { padding-left: 0; }
}
