/* ============================================================
   NOMINATION FORM PAGE
============================================================ */

/* HERO */
.nf-hero {
  position: relative;
  background: var(--navy-deep);
  padding: 140px 0 4rem;
  overflow: hidden;
}

.nf-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 0% 50%, rgba(26,93,171,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 100% 20%, rgba(192,33,43,0.1) 0%, transparent 50%),
    linear-gradient(135deg, #060912 0%, #0d1829 60%, #060912 100%);
}

.nf-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.nf-hero-inner { position: relative; z-index: 2; }

.nf-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  animation: fadeUp 0.8s ease both;
}
.nf-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-blue);
}

.nf-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.8s 0.1s ease both;
}
.nf-hero-title span { color: var(--brand-blue); }

.nf-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  max-width: 560px;
  animation: fadeUp 0.8s 0.2s ease both;
}

/* MAIN GRID */
.nf-main {
  background: var(--off-white);
  padding: 4rem 0 var(--sp-3xl);
}

.nf-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

/* SIDEBAR */
.nf-sidebar { position: sticky; top: 100px; }

.nf-sidebar-card {
  background: var(--navy-deep);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
}
.nf-sidebar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
}

.nf-sidebar-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.nf-sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.nf-sidebar-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
}
.nf-sidebar-list li svg { fill: var(--brand-blue); flex-shrink: 0; margin-top: 1px; }

.nf-sidebar-deadline {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.nf-deadline-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 0.3rem;
}

.nf-deadline-date {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--navy-deep);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.nf-deadline-divider {
  height: 1px;
  background: rgba(0,0,0,0.07);
  margin-bottom: 0.8rem;
}

.nf-deadline-note {
  font-size: 0.68rem;
  color: #999;
  margin-bottom: 0.4rem;
}

.nf-deadline-contact {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-blue);
  text-decoration: none;
  margin-bottom: 0.2rem;
  transition: opacity 0.2s;
}
.nf-deadline-contact:hover { opacity: 0.7; }

.nf-sidebar-link {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand-blue);
  text-decoration: none;
  padding: 0.8rem;
  border: 1.5px solid rgba(26,93,171,0.2);
  border-radius: 6px;
  background: rgba(26,93,171,0.04);
  transition: all 0.2s ease;
}
.nf-sidebar-link:hover { background: var(--brand-blue); color: #ffffff; border-color: var(--brand-blue); }

/* FORM WRAP */
.nf-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* FORM SECTION */
.nf-form-section {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.nf-form-section-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.nf-step {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: rgba(26,93,171,0.1);
  line-height: 1;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.nf-form-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--navy-deep);
  margin-bottom: 0.2rem;
}

.nf-form-section-sub {
  font-size: 0.8rem;
  color: #999;
}

.nf-req { color: var(--brand-red); }

/* FIELDS */
.nf-fields { display: flex; flex-direction: column; }

.nf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.nf-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
}

.nf-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.nf-input {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--navy-deep);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  appearance: none;
}
.nf-input::placeholder { color: rgba(0,0,0,0.25); }
.nf-input:focus { border-color: var(--brand-blue); background: #ffffff; }

.nf-input--error {
  border-color: var(--brand-red) !important;
  background: #fff5f5 !important;
}

.nf-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238A97A8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* CATEGORIES */
.nf-categories { display: flex; flex-direction: column; gap: 1.5rem; }

.nf-cat-group {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  overflow: hidden;
}

.nf-cat-group--gold {
  background: var(--navy-deep);
  border-color: rgba(201,168,76,0.2);
}

.nf-cat-group-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--navy-deep);
  padding: 1rem 1.4rem;
  background: rgba(26,93,171,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-transform: uppercase;
}
.nf-cat-group-title svg { fill: var(--brand-blue); flex-shrink: 0; }

.nf-cat-group--gold .nf-cat-group-title {
  background: rgba(201,168,76,0.1);
  color: #C9A84C;
  border-bottom-color: rgba(201,168,76,0.15);
}
.nf-cat-group--gold .nf-cat-group-title svg { fill: #C9A84C; }

.nf-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0.5rem 0;
}

.nf-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.65rem 1.4rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.nf-check:hover { background: rgba(26,93,171,0.04); }
.nf-cat-group--gold .nf-check:hover { background: rgba(201,168,76,0.06); }

.nf-check input[type="checkbox"] {
  margin-top: 2px;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  accent-color: var(--brand-blue);
  cursor: pointer;
}
.nf-cat-group--gold .nf-check input[type="checkbox"] { accent-color: #C9A84C; }

.nf-check span {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #444;
}
.nf-cat-group--gold .nf-check span { color: rgba(255,255,255,0.6); }
.nf-check span em { font-size: 0.72rem; color: #C9A84C; font-style: normal; }

.nf-cat-error {
  font-size: 0.78rem;
  color: var(--brand-red);
  margin-top: 0.5rem;
  font-weight: 600;
}

/* UPLOAD */
.nf-upload-wrap {
  position: relative;
}

.nf-file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.nf-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 2px dashed rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 3rem 2rem;
  background: var(--off-white);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.nf-upload-label svg { fill: rgba(0,0,0,0.2); transition: fill 0.2s ease; }
.nf-upload-wrap:hover .nf-upload-label,
.nf-upload-wrap--done .nf-upload-label {
  border-color: var(--brand-blue);
  background: var(--blue-pale);
}
.nf-upload-wrap:hover .nf-upload-label svg,
.nf-upload-wrap--done .nf-upload-label svg { fill: var(--brand-blue); }

.nf-upload-wrap--error .nf-upload-label { border-color: var(--brand-red); background: #fff5f5; }

.nf-upload-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-deep);
}
.nf-upload-sub {
  font-size: 0.75rem;
  color: #999;
}
.nf-upload-filename {
  font-size: 0.8rem;
  color: var(--brand-blue);
  font-weight: 600;
  margin-top: 0.5rem;
  text-align: center;
}

/* SUBMIT */
.nf-submit-wrap {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

.nf-submit-note {
  font-size: 0.78rem;
  color: #999;
  line-height: 1.6;
}

.nf-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--brand-blue);
  color: #ffffff;
  border: none;
  border-radius: var(--radius);
  padding: 1.1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}
.nf-submit-btn svg { fill: #ffffff; transition: transform 0.2s ease; }
.nf-submit-btn:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,93,171,0.3);
}
.nf-submit-btn:hover svg { transform: translateX(4px); }

.nf-success {
  display: none;
  align-items: center;
  gap: 1rem;
  background: #f0fdf4;
  border: 1.5px solid #22c55e;
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  width: 100%;
}
.nf-success.visible { display: flex; }
.nf-success svg { fill: #22c55e; flex-shrink: 0; }
.nf-success-title { font-size: 0.9rem; font-weight: 700; color: #166534; margin-bottom: 0.2rem; }
.nf-success-sub { font-size: 0.8rem; color: #166534; opacity: 0.8; }

/* MOBILE */
@media (max-width: 900px) {
  .nf-grid { grid-template-columns: 1fr; }
  .nf-sidebar { position: static; }
}
@media (max-width: 600px) {
  .nf-row { grid-template-columns: 1fr; }
  .nf-checkboxes { grid-template-columns: 1fr; }
  .nf-form-section { padding: 1.5rem; }
}