/* ── GLOBAL FOOTER ── */
.global-footer {
  border-top: 1px solid var(--border2, rgba(255,255,255,0.07)) !important;
  background: rgba(4,5,15,0.95);
  padding: 60px 48px 40px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 40px !important;
  position: relative !important;
  z-index: 1 !important;
  text-align: left !important;
}

.global-footer * {
  box-sizing: border-box;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-col h4 {
  color: var(--blue, #00C2FF) !important;
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px !important;
}

.footer-col p {
  color: var(--muted, rgba(255,255,255,0.4)) !important;
  font-size: 14px !important;
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 0;
  max-width: 300px;
}

.footer-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li {
  margin: 0 !important;
  padding: 0 !important;
}

.footer-col ul li a {
  color: var(--muted, rgba(255,255,255,0.4)) !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--blue, #00C2FF) !important;
  transform: translateX(2px);
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border2, rgba(255,255,255,0.07));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted, rgba(255,255,255,0.4)) !important;
  transition: all 0.2s !important;
  text-decoration: none !important;
}

.social-link:hover {
  background: var(--blue-glow2, rgba(0,194,255,0.06));
  border-color: var(--blue, #00C2FF);
  color: var(--blue, #00C2FF) !important;
}

.footer-bottom {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center !important;
  border-top: 1px solid var(--border2, rgba(255,255,255,0.07));
  padding-top: 30px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-bottom p {
  font-size: 13px !important;
  color: var(--muted, rgba(255,255,255,0.4)) !important;
  margin: 0;
  text-align: center;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-col p { margin-left: auto; margin-right: auto; }
  .footer-socials { justify-content: center; }
}

/* ── BREADCRUMBS ── */
.breadcrumbs {
  padding: 16px 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted, rgba(255,255,255,0.4));
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.breadcrumbs a {
  color: var(--muted, rgba(255,255,255,0.4));
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--blue, #00C2FF);
}

.breadcrumbs .separator {
  color: rgba(255,255,255,0.2);
}

.breadcrumbs .current {
  color: var(--blue, #00C2FF);
}
