/* ==============================
   NAUKRIGULF EXACT FOOTER SYSTEM (WHITE THEME)
   ============================== */
.ng-footer {
  background: #ffffff;
  padding: 48px 0 0;
  color: #475569;
  border-top: 1px solid #e2e8f0;
  font-family: var(--ng-font-primary), sans-serif;
}

.ng-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1.2fr 1.2fr 1.5fr;
  gap: 32px;
  padding-bottom: 40px;
}

.ng-footer-head {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.ng-footer-subhead {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  margin-top: 16px;
}

.ng-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ng-footer-links li {
  margin-bottom: 10px;
}

.ng-footer-links a {
  font-size: 13px;
  color: #475569;
  text-decoration: none;
  transition: color 0.15s ease;
}

.ng-footer-links a:hover {
  color: var(--ng-blue, #1d64f2);
  text-decoration: underline;
}

/* SOCIAL & LANG */
.ng-social-links {
  display: flex;
  gap: 8px;
}

.ng-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  background: #fff;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.ng-social-btn:hover {
  color: #fff;
  background: var(--ng-blue, #1d64f2);
  border-color: var(--ng-blue, #1d64f2);
  transform: translateY(-1px);
}

.ng-footer-lang-link:hover {
  text-decoration: underline !important;
}

/* APP BUTTONS EXPLAINED */
.ng-app-badge-btn-exact {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f172a;
  color: #fff;
  border-radius: 4px;
  padding: 6px 12px;
  width: 140px;
  box-sizing: border-box;
  text-decoration: none !important;
  transition: opacity 0.15s ease;
}

.ng-app-badge-btn-exact:hover {
  opacity: 0.9;
}

.ng-app-badge-btn-exact svg {
  color: #fff;
  flex-shrink: 0;
}

.ng-app-badge-text-exact {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.ng-app-badge-text-exact .lbl {
  font-size: 7.5px;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 500;
  line-height: 1.1;
}

.ng-app-badge-text-exact .val {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

/* CORPORATE FOOTER BOTTOM */
.ng-footer-bottom-exact {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 20px 0;
  margin-top: 24px;
}

.ng-footer-bottom-inner-exact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.ng-footer-infoedge-logo {
  display: flex;
  align-items: center;
}

.ng-footer-partners {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.ng-footer-partners .partner-lbl {
  color: #64748b;
  font-weight: 600;
}

.ng-footer-partners .partner-link {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
}

.ng-footer-partners .partner-link:hover {
  color: var(--ng-blue, #1d64f2);
  text-decoration: underline;
}

.ng-footer-copy-exact {
  font-size: 11px;
  color: #64748b;
  margin: 0;
}

/* Breakpoints */
@media (max-width: 992px) {
  .ng-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .ng-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ng-footer-bottom-inner-exact {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .ng-footer-infoedge-logo {
    justify-content: center;
  }
  .ng-footer-partners {
    justify-content: center;
    flex-wrap: wrap;
  }
}
