/* ── NIMC Page CSS ─────────────────────────────── */

.nimc-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: white;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 20px;
}

.nimc-banner-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.nimc-banner h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.nimc-banner p  { font-size: 12px; opacity: 0.85; }

.fee-note {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFF8E1;
  border: 1px solid #FFE082;
  color: #E65100;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
}

/* Result Box */
.nimc-result {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
  animation: fadeUp 0.4s ease;
}

.result-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.result-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  flex-shrink: 0;
}

.result-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
}

.result-nin {
  font-size: 13px;
  color: var(--text2);
  margin-top: 3px;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.res-item {
  background: var(--bg);
  border-radius: 10px;
  padding: 10px 12px;
}

.res-item span {
  display: block;
  font-size: 11px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.res-item strong {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}
