/* ═══════════════════════════════════════════════════════
   NEODUSTRIA — MEGA FOOTER (nd-ft-*)
   Shared across all pages. Uses absolute asset paths.
═══════════════════════════════════════════════════════ */
.nd-ft {
  background: #010810;
  color: #A9B8C8;
  font-family: inherit;
  border-top: 1px solid rgba(22,139,255,0.14);
}

/* ── Main section ── */
.nd-ft-main { padding: 64px 0 0; position: relative; }
.nd-ft-main::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(rgba(22,139,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,139,255,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
}
.nd-ft-main::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22,139,255,0.18), transparent);
  pointer-events: none;
}

.nd-ft-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
}

/* Brand column */
.nd-ft-brand {
  padding-right: 48px;
  border-right: 1px solid rgba(22,139,255,0.12);
  display: flex;
  flex-direction: column;
  position: relative;
}
.nd-ft-logo {
  display: block;
  width: 140px; height: 48px;
  background: url('../imgs/logo/logo.webp') no-repeat left center / contain;
  flex-shrink: 0;
}
.nd-ft-logo img { display: none; }
.nd-ft-divider {
  width: 32px; height: 2px;
  background: #168BFF; border-radius: 1px;
  margin: 16px 0;
}
.nd-ft-brand-tagline {
  font-size: 13px; font-weight: 700; color: #ffffff;
  line-height: 1.55; margin: 18px 0 0;
}
.nd-ft-brand-tagline em { color: #168BFF; font-style: normal; }
.nd-ft-city-img {
  display: block;
  width: 100%;
  aspect-ratio: 620 / 317;
  margin-top: 28px;
  opacity: 0.88;
  background: url('../imgs/footer/footer-image.webp') no-repeat center / contain;
}
.nd-ft-brand::after {
  content: '';
  position: absolute; bottom: 0; left: 130px;
  width: 6px; height: 6px; border-radius: 50%;
  background: #168BFF;
  box-shadow: 0 0 12px rgba(22,139,255,0.70);
  pointer-events: none;
}

/* Nav columns */
.nd-ft-nav-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.nd-ft-col {
  padding: 0 16px 48px 32px;
  border-right: 1px solid rgba(22,139,255,0.07);
}
.nd-ft-col:last-child { border-right: none; }

.nd-ft-col-header {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(22,139,255,0.12);
}
.nd-ft-col-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: rgba(22,139,255,0.08);
  border: 1px solid rgba(22,139,255,0.22);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 10px rgba(22,139,255,0.08);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.nd-ft-col-icon i { font-size: 15px; color: #168BFF; }
.nd-ft-col:hover .nd-ft-col-icon {
  background: rgba(22,139,255,0.16);
  border-color: rgba(22,139,255,0.45);
  box-shadow: 0 0 16px rgba(22,139,255,0.22);
}
.nd-ft-col-header span {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: rgba(255,255,255,0.80);
}

.nd-ft-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.nd-ft-col ul li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
  font-size: 13px; color: rgba(169,184,200,0.65);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.22s ease, border-color 0.22s ease;
}
.nd-ft-col ul li a::after {
  content: '›'; font-size: 16px;
  color: rgba(22,139,255,0.60);
  opacity: 0; transform: translateX(-5px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.nd-ft-col ul li a:hover { color: #ffffff; border-color: rgba(22,139,255,0.35); }
.nd-ft-col ul li a:hover::after { opacity: 1; transform: translateX(0); }

/* ── CTA command bar ── */
.nd-ft-cta-bar {
  background: rgba(2,6,18,0.98);
  border-top: 1px solid rgba(22,139,255,0.18);
  border-bottom: 1px solid rgba(22,139,255,0.10);
  padding: 12px 0;
  position: relative; overflow: hidden;
}
.nd-ft-cta-bar::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(22,139,255,0.015) 3px, rgba(22,139,255,0.015) 4px
  );
}
.nd-ft-cta-bar::after {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,139,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.nd-ft-cta-inner {
  display: flex; align-items: center; gap: 0;
  position: relative; z-index: 1;
}
.nd-ft-cta-sep {
  width: 1px; height: 32px; flex-shrink: 0;
  background: linear-gradient(180deg, transparent, rgba(22,139,255,0.30), transparent);
  margin: 0 24px;
}
.nd-ft-cta-title {
  font-size: 14px; font-weight: 800; color: #ffffff;
  line-height: 1.2; margin: 0; white-space: nowrap; flex-shrink: 0;
}
.nd-ft-cta-title em { color: #168BFF; font-style: normal; }
.nd-ft-cta-desc {
  font-size: 12px; color: rgba(169,184,200,0.62);
  line-height: 1.5; flex: 1; margin: 0;
}
.nd-ft-cta-btn {
  display: flex; align-items: center; gap: 10px;
  background: #168BFF; color: #ffffff;
  font-size: 12px; font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px; text-decoration: none; white-space: nowrap;
  flex-shrink: 0; margin-left: 24px;
  border: 1px solid rgba(22,139,255,0.5);
  box-shadow: 0 0 20px rgba(22,139,255,0.25);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.nd-ft-cta-btn:hover {
  background: #1a9fff;
  box-shadow: 0 0 28px rgba(22,139,255,0.45);
}
.nd-ft-cta-btn i { font-size: 11px; }

/* ── Bottom bar ── */
.nd-ft-bottom {
  background: rgba(1,5,16,0.98);
  border-top: 1px solid rgba(22,139,255,0.08);
  padding: 20px 0;
}
.nd-ft-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nd-ft-copyright {
  font-size: 11px; color: rgba(169,184,200,0.35);
  line-height: 1.80; margin: 0; flex-shrink: 0;
}

/* Premium status widget */
.nd-ft-status {
  display: flex; align-items: center; gap: 14px;
  background: rgba(22,139,255,0.05);
  border: 1px solid rgba(22,139,255,0.14);
  border-radius: 12px;
  padding: 10px 18px;
}
.nd-ft-status-live {
  display: flex; align-items: center; gap: 7px;
  flex-shrink: 0;
}
.nd-ft-status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74,222,128,0.60);
  animation: nd-ft-blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes nd-ft-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(74,222,128,0.60); }
  50%       { opacity: 0.40; box-shadow: none; }
}
.nd-ft-status-live-lbl {
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.18em; color: #4ade80;
}
.nd-ft-status-body {
  display: flex; flex-direction: column; gap: 1px;
  border-left: 1px solid rgba(22,139,255,0.16);
  padding-left: 14px;
}
.nd-ft-status-eyebrow {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(169,184,200,0.40);
}
.nd-ft-status-text {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.nd-ft-status-viz {
  display: flex; align-items: flex-end; gap: 3px;
  height: 20px; flex-shrink: 0;
}
.nd-ft-bar {
  display: block; width: 3px; border-radius: 2px;
  background: rgba(22,139,255,0.55);
  animation: nd-ft-bar-wave 1.4s ease-in-out infinite;
}
.nd-ft-bar:nth-child(1) { height: 8px;  animation-delay: 0s;    }
.nd-ft-bar:nth-child(2) { height: 14px; animation-delay: 0.10s; }
.nd-ft-bar:nth-child(3) { height: 20px; animation-delay: 0.20s; }
.nd-ft-bar:nth-child(4) { height: 12px; animation-delay: 0.30s; }
.nd-ft-bar:nth-child(5) { height: 18px; animation-delay: 0.15s; }
.nd-ft-bar:nth-child(6) { height: 10px; animation-delay: 0.25s; }
.nd-ft-bar:nth-child(7) { height: 16px; animation-delay: 0.05s; }
@keyframes nd-ft-bar-wave {
  0%, 100% { transform: scaleY(0.35); opacity: 0.50; }
  50%       { transform: scaleY(1);   opacity: 1; }
}

.nd-ft-legal-social {
  display: flex; align-items: center; gap: 20px; flex-shrink: 0;
}
.nd-ft-legal { display: flex; align-items: center; }
.nd-ft-legal a {
  font-size: 11px; color: rgba(169,184,200,0.40);
  text-decoration: none;
  padding: 0 10px;
  border-right: 1px solid rgba(169,184,200,0.12);
  transition: color 0.22s ease;
}
.nd-ft-legal a:first-child { padding-left: 0; }
.nd-ft-legal a:last-child  { border-right: none; padding-right: 0; }
.nd-ft-legal a:hover { color: #ffffff; }
.nd-ft-legal .ck-footer-trigger {
  font-size: 11px; color: rgba(169,184,200,0.40);
  background: none; border: none; cursor: pointer;
  padding: 0 10px;
  border-right: 1px solid rgba(169,184,200,0.12);
  transition: color 0.22s ease;
  font-family: inherit;
}
.nd-ft-legal .ck-footer-trigger:hover { color: #168BFF; }

.nd-ft-social { display: flex; align-items: center; gap: 8px; }
.nd-ft-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(22,139,255,0.06);
  border: 1px solid rgba(22,139,255,0.16);
  display: flex; align-items: center; justify-content: center;
  color: rgba(169,184,200,0.55); text-decoration: none;
  font-size: 13px;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.nd-ft-social a:hover {
  background: rgba(22,139,255,0.16);
  border-color: rgba(22,139,255,0.45);
  color: #ffffff;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .nd-ft-grid { grid-template-columns: 220px 1fr; }
  .nd-ft-col { padding-left: 24px; }
  .nd-ft-cta-title { font-size: 13px; }
}

@media (max-width: 991px) {
  .nd-ft-grid { grid-template-columns: 1fr; }
  .nd-ft-brand {
    border-right: none;
    border-bottom: 1px solid rgba(22,139,255,0.10);
    padding-right: 0; padding-bottom: 36px;
  }
  .nd-ft-city-img { max-width: 280px; }
  .nd-ft-nav-cols { grid-template-columns: repeat(3, 1fr); padding-top: 36px; }
  .nd-ft-col { padding-left: 0; }
  .nd-ft-cta-inner { flex-wrap: wrap; gap: 14px; }
  .nd-ft-cta-sep { display: none; }
  .nd-ft-cta-title { white-space: normal; }
  .nd-ft-cta-desc { flex: none; width: 100%; }
  .nd-ft-cta-btn { margin-left: 0; }
  .nd-ft-bottom-inner { flex-wrap: wrap; gap: 16px; }
  .nd-ft-status { order: -1; }
}

@media (max-width: 767px) {
  .nd-ft-nav-cols { grid-template-columns: repeat(2, 1fr); }
  .nd-ft-col:nth-child(2n) { border-right: none; }
  .nd-ft-legal-social { flex-direction: column; align-items: flex-start; gap: 12px; }
  .nd-ft-status-viz { display: none; }
}

@media (max-width: 479px) {
  .nd-ft-nav-cols { grid-template-columns: 1fr; }
  .nd-ft-col { border-right: none; padding-left: 0; }
  .nd-ft-cta-btn { width: 100%; justify-content: space-between; }
  .nd-ft-status { flex-wrap: wrap; }
}
