:root {
  --navy-deep: #050e1a;
  --navy-mid: #0a1e33;
  --navy-card: #0d2340;
  --navy-border: #163556;
  --accent-gold: #c8a96e;
  --accent-blue: #4d9de0;
  --accent-glow: rgba(77, 157, 224, 0.18);
  --text-primary: #f0efe8;
  --text-muted: #8fa8c0;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
.ihra-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: rgba(5, 14, 26, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.12);
  transition: background 0.3s;
}

.ihra-nav__brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-gold) !important;
  text-decoration: none;
}

.ihra-nav__link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  text-decoration: none;
  transition: color 0.2s;
  /* margin-left: 1.8rem; */
}

.ihra-nav__link:hover {
  color: var(--accent-gold) !important;
}

.ihra-nav__cta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
  text-decoration: none;
  margin-left: 1.4rem;
  transition:
    background 0.2s,
    color 0.2s;
}

.ihra-nav__cta:hover {
  background: var(--accent-gold);
  color: var(--navy-deep) !important;
}

/* ── HERO ── */
.ihra-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 7rem;
  overflow: hidden;
}

.ihra-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1511578314322-379afb476865?w=1600&auto=format&fit=crop&q=80");
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.ihra-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.ihra-hero__image {
  width: min(100%, 300px);
  height: auto;
  display: block;
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.42));
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1);
  }
}

.ihra-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 14, 26, 0.38) 0%,
    rgba(5, 14, 26, 0.55) 40%,
    rgba(5, 14, 26, 0.92) 80%,
    var(--navy-deep) 100%
  );
}

.ihra-hero__content {
  position: relative;
  z-index: 2;
}

.ihra-hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border: 1px solid rgba(200, 169, 110, 0.4);
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.6rem;
}

.ihra-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.ihra-hero__title em {
  font-style: italic;
  color: var(--accent-gold);
}

.ihra-hero__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.4rem;
}

.ihra-btn-primary {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--navy-deep) !important;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}

.ihra-btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.ihra-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text-primary) !important;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 1px solid rgba(240, 239, 232, 0.3);
  border-radius: 2px;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
  margin-bottom: 0.5rem;
}

.ihra-btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold) !important;
}

/* ── STATS BAR ── */
/* .ihra-stats {
            background: var(--navy-mid);
            border-top: 1px solid var(--navy-border);
            border-bottom: 1px solid var(--navy-border);
            padding: 2.4rem 0;
        }

        .ihra-stats__item {
            text-align: center;
            padding: 0.5rem 1rem;
        }

        .ihra-stats__number {
            font-family: var(--font-display);
            font-size: 2.8rem;
            font-weight: 300;
            color: var(--accent-gold);
            line-height: 1;
        }

        .ihra-stats__label {
            font-size: 0.73rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-top: 0.3rem;
        }

        .ihra-stats__divider {
            width: 1px;
            background: var(--navy-border);
            align-self: stretch;
            min-height: 50px;
        } */

.ihra-stats {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 2.4rem 0;
}

.ihra-stats__item {
  position: relative;
  text-align: center;
  padding: 0.5rem 1rem;
}

.ihra-stats__number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--accent-gold);
  line-height: 1;
}

.ihra-stats__label {
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* Divider using pseudo-element */
.ihra-stats__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: var(--navy-border);
}

/* Remove divider for last item */
.ihra-stats__item:last-child::after {
  display: none;
}

/* ── SECTION SHARED ── */
.ihra-section {
  padding: 6rem 0;
}

.ihra-section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.8rem;
}

.ihra-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.ihra-section-desc {
  color: var(--text-muted);
  max-width: 540px;
  font-size: 0.95rem;
}

.ihra-gold-line {
  width: 48px;
  height: 2px;
  background: var(--accent-gold);
  margin: 1.4rem 0;
}

/* ── ABOUT / EXCLUSIVE ── */
.ihra-about {
  background: var(--navy-deep);
}

.ihra-about__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 3px;
  filter: brightness(0.88) saturate(0.8);
}

.ihra-about__tag {
  display: inline-block;
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid rgba(200, 169, 110, 0.3);
  color: var(--accent-gold);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  margin-bottom: 1rem;
}

/* ── AWARDS ── */
.ihra-awards {
  background: var(--navy-mid);
}

.ihra-awards__pillar-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

.ihra-awards__card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 3px;
  padding: 2rem 1.8rem;
  height: 100%;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.ihra-awards__card:hover {
  border-color: rgba(200, 169, 110, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ihra-awards__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ihra-awards__list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: color 0.2s;
}

.ihra-awards__list li:last-child {
  border-bottom: none;
}

.ihra-awards__list li:hover {
  color: var(--text-primary);
}

.ihra-awards__list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-gold);
  flex-shrink: 0;
  opacity: 0.7;
}

.ihra-awards__special-card {
  background: linear-gradient(135deg, #0d2340 0%, #163556 100%);
  border: 1px solid rgba(77, 157, 224, 0.25);
  border-radius: 3px;
  padding: 2rem 1.8rem;
  height: 100%;
}

.ihra-awards__special-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-blue);
  font-weight: 500;
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(77, 157, 224, 0.2);
}

.ihra-awards__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 3px;
  filter: brightness(0.7) saturate(0.6);
}

/* ── WHO ATTENDS ── */
.ihra-who {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.ihra-who::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(77, 157, 224, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.ihra-who__card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 3px;
  padding: 1.6rem 1.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: border-color 0.3s;
  height: 100%;
}

.ihra-who__card:hover {
  border-color: rgba(77, 157, 224, 0.3);
}

.ihra-who__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ihra-who__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 1.5;
}

.ihra-who__role {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.ihra-who__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.ihra-who__highlight {
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.08), rgba(200, 169, 110, 0.03));
  border: 1px solid rgba(200, 169, 110, 0.2);
}

.ihra-who__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 3px;
  filter: brightness(0.75) saturate(0.7);
}

/* ── WHY ATTEND ── */
.ihra-why {
  background: var(--navy-mid);
}

.ihra-why__card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 3px;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.ihra-why__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.ihra-why__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.ihra-why__card:hover::after {
  transform: scaleX(1);
}

.ihra-why__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(200, 169, 110, 0.7);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.ihra-why__heading {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.ihra-why__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── VENUE / INFO ── */
.ihra-info {
  background: var(--navy-deep);
}

.ihra-info__box {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 3px;
  padding: 2.5rem;
}

.ihra-info__box-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--navy-border);
}

.ihra-info__row {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.ihra-info__icon {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.ihra-info__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ihra-info__value {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-top: 0.1rem;
}

.ihra-info__img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 3px;
  filter: brightness(0.7) saturate(0.65);
}

.ihra-contact__link {
  color: var(--accent-blue);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  transition: color 0.2s;
}

.ihra-contact__link:hover {
  color: var(--accent-gold);
}

/* ── FOOTER ── */
.ihra-footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-border);
  padding: 2rem 0;
}

.ihra-footer__brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.ihra-footer__copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── UTILITY ── */
.text-gold {
  color: var(--accent-gold);
}

.text-blue-accent {
  color: var(--accent-blue);
}

.text-muted-custom {
  color: var(--text-muted);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .ihra-stats__item::after {
    display: none;
  }

  .ihra-hero {
    padding-bottom: 5rem;
  }

  .ihra-info__img {
    min-height: 220px;
  }
}
/* nomination styles */

/* ── HERO BANNER ── */
.nom-hero {
  position: relative;
  padding: 9rem 0 5rem;
  overflow: hidden;
}

.nom-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../../images/hr-uae-banner-img.png");
  background-size: cover;
  background-position: center top;
}

.nom-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 14, 26, 0.94) 0%, rgba(5, 14, 26, 0.78) 48%, rgba(5, 14, 26, 0.48) 100%),
    linear-gradient(to bottom, rgba(5, 14, 26, 0.08) 0%, rgba(5, 14, 26, 0.65) 100%);
}

.nom-hero__content {
  position: relative;
  z-index: 2;
}

.nom-hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border: 1px solid rgba(200, 169, 110, 0.35);
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.4rem;
}

.nom-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.nom-hero__title em {
  font-style: italic;
  color: var(--accent-gold);
}

.nom-hero__sub {
  color: var(--text-muted);
  font-size: 0.93rem;
  max-width: 500px;
}

/* ── PROGRESS STEPS ── */
.nom-steps {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--navy-border);
  padding: 1.2rem 0;
}

.nom-steps__track {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.nom-steps__track::-webkit-scrollbar {
  display: none;
}

.nom-steps__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nom-steps__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.3s;
}

.nom-steps__num.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--navy-deep);
}

.nom-steps__num.done {
  background: rgba(200, 169, 110, 0.12);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.nom-steps__label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  white-space: nowrap;
}

.nom-steps__label.active {
  color: var(--text-primary);
  font-weight: 500;
}

.nom-steps__connector {
  width: 40px;
  height: 1px;
  background: var(--navy-border);
  margin: 0 0.6rem;
  flex-shrink: 0;
}

/* ── MAIN LAYOUT ── */
.nom-body {
  padding: 4rem 0 6rem;
}

/* ── FORM PANEL ── */
.nom-form-panel {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 4px;
  overflow: hidden;
}

.nom-section-header {
  padding: 1.4rem 2rem;
  background: rgba(22, 53, 86, 0.5);
  border-bottom: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nom-section-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid rgba(200, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.nom-section-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
}

.nom-section-body {
  padding: 2rem;
}

/* ── FORM FIELDS ── */
.nom-field {
  margin-bottom: 1.6rem;
}

.nom-field:last-child {
  margin-bottom: 0;
}

.nom-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

.nom-label .req {
  color: var(--accent-gold);
  margin-left: 2px;
}

.nom-input,
.nom-textarea,
.nom-select {
  width: 100%;
  background: rgba(5, 14, 26, 0.6);
  border: 1px solid var(--navy-border);
  border-radius: 2px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.75rem 1rem;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
}

.nom-input::placeholder,
.nom-textarea::placeholder {
  color: rgba(143, 168, 192, 0.4);
}

.nom-input:focus,
.nom-textarea:focus,
.nom-select:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
}

.nom-textarea {
  resize: vertical;
  min-height: 130px;
}

.nom-select-wrap {
  position: relative;
}

.nom-select-wrap::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--text-muted);
  pointer-events: none;
}

.nom-select option {
  background: #0a1e33;
}

.nom-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.nom-input-icon {
  position: relative;
}

.nom-input-icon .nom-input {
  padding-left: 2.6rem;
}

.nom-input-icon__ico {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.nom-input-icon__ico svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* ── CATEGORY GRID ── */
.nom-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.6rem;
}

.nom-cat-item {
  display: none;
}

/* hidden real radio */
.nom-cat-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  background: rgba(5, 14, 26, 0.5);
  border: 1px solid var(--navy-border);
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: all 0.2s;
  line-height: 1.35;
  height: 100%;
}

.nom-cat-label:hover {
  border-color: rgba(200, 169, 110, 0.4);
  color: var(--text-primary);
}

.nom-cat-item:checked + .nom-cat-label {
  border-color: var(--accent-gold);
  background: rgba(200, 169, 110, 0.08);
  color: var(--text-primary);
}

.nom-cat-radio {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--navy-border);
  flex-shrink: 0;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nom-cat-item:checked + .nom-cat-label .nom-cat-radio {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
}

.nom-cat-item:checked + .nom-cat-label .nom-cat-radio::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy-deep);
  position: absolute;
}

/* pillar dividers */
.nom-cat-pillar {
  grid-column: 1 / -1;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
  padding-bottom: 0.4rem;
  margin-top: 0.4rem;
}

.nom-cat-pillar:first-child {
  margin-top: 0;
}

/* ── CHECKBOX ── */
.nom-check-item {
  display: none;
}

.nom-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.8rem;
  transition: color 0.2s;
}

.nom-check-label:last-of-type {
  margin-bottom: 0;
}

.nom-check-label:hover {
  color: var(--text-primary);
}

.nom-checkbox-box {
  width: 17px;
  height: 17px;
  border: 1.5px solid var(--navy-border);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.nom-check-item:checked + .nom-check-label .nom-checkbox-box {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.nom-check-item:checked + .nom-check-label .nom-checkbox-box::after {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--navy-deep);
  border-bottom: 2px solid var(--navy-deep);
  transform: rotate(-45deg) translate(1px, -1px);
  display: block;
}

.nom-check-item:checked + .nom-check-label {
  color: var(--text-primary);
}

/* ── SUBMIT ── */
.nom-submit-zone {
  background: rgba(5, 14, 26, 0.5);
  border-top: 1px solid var(--navy-border);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.nom-submit-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nom-submit-note svg {
  flex-shrink: 0;
}

.nom-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--accent-gold);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.nom-btn-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.nom-btn-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

/* ── SIDEBAR ── */
.nom-sidebar__card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 4px;
  padding: 1.8rem;
  margin-bottom: 1.4rem;
}

.nom-sidebar__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 1.1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--navy-border);
}

.nom-sidebar__fact {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  font-size: 0.83rem;
}

.nom-sidebar__fact:last-child {
  margin-bottom: 0;
}

.nom-sidebar__ico {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.nom-sidebar__ico svg {
  width: 15px;
  height: 15px;
}

.nom-sidebar__fval {
  color: var(--text-primary);
}

.nom-sidebar__flabel {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.nom-deadline-badge {
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.1), rgba(200, 169, 110, 0.04));
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: 3px;
  padding: 1rem 1.2rem;
  text-align: center;
  margin-top: 0.5rem;
}

.nom-deadline-badge__date {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent-gold);
  font-weight: 300;
}

.nom-deadline-badge__label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.nom-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--accent-blue);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.nom-contact-link:hover {
  color: var(--accent-gold);
}

.nom-contact-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ── SUCCESS STATE ── */
.nom-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
}

.nom-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid rgba(200, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
}

.nom-success__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.7rem;
}

.nom-success__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .nom-section-body {
    padding: 1.4rem;
  }

  .nom-submit-zone {
    flex-direction: column;
    align-items: stretch;
  }

  .nom-btn-submit {
    justify-content: center;
  }
}

/* end nomination styles */
@media (max-width: 992px) {
  .ihra-hero__image {
    width: min(100%, 200px);
  }
  .herMobpadding {
    padding-top: 200px;
  }
  .ihra-nav__cta {
    margin-left: 0;
  }
}
