/*
  =============================================================
  DRAFT CSS — NABET EIA Consultant Page
  Deploy with: _draft-NABET-EIA-Consultant-TN.html
  Rename to: NABET-EIA-Consultant-TN.css on launch day
  =============================================================
*/

/* ---- HERO ---- */
.nabet-hero-image {
  min-height: 420px;
  position: relative;
}

.nabet-badge-overlay {
  position: absolute;
  bottom: 32px;
  left: 32px;
}

.nabet-badge-box {
  background: rgba(255,81,38,0.92);
  border-radius: 0;
  padding: 16px 22px;
  max-width: 240px;
}

.nabet-badge-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 4px 0;
}

.nabet-badge-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px 0;
  line-height: 1.25;
}

.nabet-badge-org {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* ---- CARDS GRID ---- */
.nabet-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .nabet-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .nabet-cards-grid { grid-template-columns: 1fr; }
}

.nabet-card {
  background: #fff;
  border: 1px solid #e8eaf2;
  border-radius: 0;
  padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(3,51,156,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nabet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(3,51,156,0.12);
}

.nabet-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.nabet-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.nabet-card p {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* ---- PROCESS STEPS ---- */
.nabet-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nabet-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #eef0f6;
}

.nabet-step:last-child {
  border-bottom: none;
}

.nabet-step-num {
  font-family: 'Tinos', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #dde3f5;
  line-height: 1;
  min-width: 56px;
  text-align: center;
  flex-shrink: 0;
}

.nabet-step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.nabet-step-content p {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* ---- SECTORS GRID ---- */
.nabet-sectors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.nabet-sector-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 0;
  backdrop-filter: blur(4px);
}

.nabet-sector-pill:hover {
  background: rgba(255,255,255,0.22);
}

a.nabet-sector-pill {
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

a.nabet-sector-pill:focus {
  outline: 2px solid #ff5126;
  outline-offset: 2px;
}

/* ---- ACCREDITATION DETAILS TABLE ---- */
.nabet-details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.nabet-details-table tr {
  border-bottom: 1px solid #eef0f6;
}

.nabet-details-table tr:last-child {
  border-bottom: none;
}

.nabet-dt-label {
  font-weight: 700;
  color: #03339c;
  padding: 12px 16px 12px 0;
  white-space: nowrap;
  vertical-align: top;
  width: 38%;
}

.nabet-dt-value {
  color: #444;
  padding: 12px 0;
  line-height: 1.5;
}

.nabet-cert-number {
  color: #ff5126;
  font-weight: 700;
}

/* ---- CERTIFICATE PLACEHOLDER ---- */
.nabet-cert-placeholder {
  background: #f5f7ff;
  border: 2px dashed #c5cde8;
  border-radius: 0;
  padding: 32px 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ---- RELATED TILES ---- */
.nabet-related-tile {
  transition: filter 0.2s;
}

.nabet-related-tile:hover {
  filter: brightness(1.1);
}

/* ---- NAV HIGHLIGHT ---- */
.nabet-nav-highlight {
  font-weight: 700 !important;
  color: #ffcc44 !important;
}

/* ---- RESPONSIVE HERO TEXT ---- */
@media (max-width: 768px) {
  .nabet-hero-image {
    min-height: 300px;
  }
  .nabet-badge-overlay {
    bottom: 16px;
    left: 16px;
  }
}
