@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@400;500;600;700;800;900&family=Cairo:wght@400;600;700;800;900&display=swap');

:root {
  --brand-navy: #031c49;
  --brand-navy-dark: #010e26;
  --brand-navy-light: #0a2d70;
  --brand-gold: #be8126;
  --brand-gold-light: #e5b669;
  --brand-gold-dark: #8c5a13;
  --gold-metallic: linear-gradient(135deg, #be8126 0%, #f3d498 50%, #8c5a13 100%);
  --silver-metallic: linear-gradient(135deg, #cbd5e1 0%, #ffffff 50%, #64748b 100%);
  --card-radius: 24px;
  --input-radius: 12px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.reporter-page-container {
  direction: rtl;
  text-align: right;
  font-family: 'Alexandria', 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0f172a;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding-bottom: 80px;
}

.reporter-hero {
  background: radial-gradient(circle at 50% 0%, var(--brand-navy-light) 0%, var(--brand-navy) 100%);
  color: #ffffff;
  padding: 75px 20px 65px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--brand-gold);
}

.reporter-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(190, 129, 38, 0.25) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.reporter-hero-content {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.reporter-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(190, 129, 38, 0.15);
  color: var(--brand-gold-light);
  border: 1px solid rgba(190, 129, 38, 0.4);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
}

.reporter-hero h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #ffffff;
  line-height: 1.25;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reporter-hero p.subtitle {
  font-size: 20px;
  color: #cbd5e1;
  font-weight: 500;
  margin-bottom: 10px;
}

.reporter-intro-card {
  max-width: 1000px;
  margin: 40px auto 50px auto;
  background: #ffffff;
  padding: 40px 45px;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  border-right: 6px solid var(--brand-gold);
  box-shadow: 0 12px 35px rgba(3, 28, 73, 0.06);
  position: relative;
  z-index: 3;
}

.intro-header-badge {
  display: inline-block;
  background: #fdf8f0;
  color: var(--brand-gold-dark);
  border: 1px solid #f3d498;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 800;
  margin-bottom: 12px;
}

.intro-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 14px;
  line-height: 1.35;
}

.intro-main-text {
  font-size: 16.5px;
  line-height: 1.85;
  color: #475569;
  margin-bottom: 30px;
}

.intro-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  border-top: 1.5px dashed #e2e8f0;
  padding-top: 25px;
}

.intro-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #f8fafc;
  padding: 20px;
  border-radius: 16px;
  border: 1.5px solid #f1f5f9;
  transition: var(--transition-smooth);
}

.intro-feature-item:hover {
  background: #ffffff;
  border-color: var(--brand-gold);
  box-shadow: 0 8px 20px rgba(190, 129, 38, 0.08);
  transform: translateY(-3px);
}

.intro-feature-item .feature-icon {
  font-size: 32px;
  background: #ffffff;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.intro-feature-item .feature-info h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 6px;
}

.intro-feature-item .feature-info p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.reporter-section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-navy);
  margin: 50px 0 30px 0;
  position: relative;
}

.reporter-section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-navy));
  margin: 12px auto 0 auto;
  border-radius: 4px;
}

.reporter-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
  max-width: 1150px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.category-card {
  background: #ffffff;
  padding: 24px 20px;
  border-radius: 16px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}

.category-card:hover, .category-card.active {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(3, 28, 73, 0.12);
  border-color: var(--brand-gold);
  background: #fffdfa;
}

.category-card .icon {
  font-size: 34px;
  background: #f8fafc;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.category-card:hover .icon, .category-card.active .icon {
  background: #fdf6ea;
  transform: scale(1.1);
}

.category-card .text {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-navy);
}

.reporter-form-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  padding: 0 0 45px 0;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(3, 28, 73, 0.09);
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
}

.form-wizard-header {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-dark) 100%);
  color: #ffffff;
  padding: 35px 45px 30px 45px;
  text-align: right;
  position: relative;
  border-bottom: 4px solid var(--brand-gold);
}

.form-wizard-header .wizard-badge {
  display: inline-block;
  background: rgba(190, 129, 38, 0.2);
  color: var(--brand-gold-light);
  border: 1px solid rgba(190, 129, 38, 0.4);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 800;
  margin-bottom: 10px;
}

.form-wizard-header h2 {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.form-wizard-header p {
  font-size: 15px;
  color: #cbd5e1;
  margin: 0;
}

.form-step-indicators {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 45px;
  background: #f8fafc;
  border-bottom: 1.5px solid #e2e8f0;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-item .num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #cbd5e1;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  transition: var(--transition-smooth);
}

.step-item.active .num {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(190, 129, 38, 0.3);
}

.step-text {
  display: flex;
  flex-direction: column;
}

.step-text strong {
  font-size: 14.5px;
  color: var(--brand-navy);
}

.step-text span {
  font-size: 12px;
  color: #64748b;
}

.step-line {
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  margin: 0 15px;
}

.reporter-form-wrapper form {
  padding: 35px 45px 0 45px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-weight: 800;
  font-size: 14.5px;
  margin-bottom: 10px;
  color: var(--brand-navy);
}

.form-group label .required {
  color: var(--brand-gold);
}

.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-wrapper .field-icon {
  position: absolute;
  right: 14px;
  font-size: 18px;
  color: #64748b;
  pointer-events: none;
  z-index: 2;
}

.input-icon-wrapper .form-control {
  padding-right: 46px !important;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--input-radius);
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition-smooth);
  background-color: #ffffff !important;
  color: #031c49 !important;
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-navy) !important;
  box-shadow: 0 0 0 4px rgba(3, 28, 73, 0.1) !important;
  background-color: #ffffff !important;
}

select.form-control {
  color: #031c49 !important;
  background-color: #ffffff !important;
  height: 52px !important;
  line-height: 1.5 !important;
  padding: 12px 18px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: var(--input-radius) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  -webkit-appearance: select !important;
  -moz-appearance: select !important;
  appearance: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
}

select.form-control option {
  color: #031c49 !important;
  background-color: #ffffff !important;
  padding: 12px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

.custom-card-checkbox {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  padding: 16px 20px;
  border-radius: 14px;
  transition: var(--transition-smooth);
}

.custom-card-checkbox:hover {
  border-color: var(--brand-gold);
  background: #fffdf9;
}

.custom-card-checkbox.highlight-gold {
  background: #fffdf5;
  border-color: #f3d498;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  font-size: 14.5px;
  color: #334155;
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--brand-gold);
  cursor: pointer;
  border-radius: 6px;
  margin-top: 2px;
  flex-shrink: 0;
}

.map-header-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 800;
  font-size: 14.5px;
  color: var(--brand-navy);
}

.map-picker-container {
  margin-top: 10px;
}

#event-map {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  border: 1.5px solid #cbd5e1;
  z-index: 1;
}

.map-btn-locate {
  background: var(--brand-navy);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.map-btn-locate:hover {
  background: var(--brand-navy-light);
  transform: translateY(-2px);
}

.security-notice-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: linear-gradient(135deg, #fffdf5 0%, #fff8e8 100%);
  border: 1px solid #fce8c3;
  border-right: 5px solid var(--brand-gold);
  padding: 20px 24px;
  border-radius: 16px;
  margin: 30px 45px 0 45px;
  font-size: 14.5px;
  color: #71460d;
  line-height: 1.7;
}

.security-notice-box .notice-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.custom-file-dropzone {
  position: relative;
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.custom-file-dropzone:hover, .custom-file-dropzone.drag-over {
  background: #fffdf5;
  border-color: var(--brand-gold);
  box-shadow: 0 10px 25px rgba(190, 129, 38, 0.1);
}

.hidden-file-input {
  display: none !important;
}

.dropzone-icon {
  font-size: 45px;
  margin-bottom: 12px;
}

.dropzone-title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 6px;
}

.dropzone-sub {
  font-size: 13.5px;
  color: #64748b;
  margin-bottom: 18px;
}

.btn-browse-files {
  background: var(--brand-navy);
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.btn-browse-files:hover {
  background: var(--brand-gold);
  transform: translateY(-2px);
}

.file-preview-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.preview-thumb-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.preview-thumb-card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 6px;
}

.preview-file-name {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--brand-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.preview-file-size {
  font-size: 10.5px;
  color: #64748b;
}

.btn-remove-thumb {
  position: absolute;
  top: -8px;
  left: -8px;
  background: #ef4444;
  color: #fff;
  border: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
}

.btn-submit-reporter {
  width: 100%;
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  padding: 18px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(190, 129, 38, 0.35);
  transition: var(--transition-smooth);
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-submit-reporter:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(190, 129, 38, 0.45);
}

.btn-submit-reporter:disabled {
  background: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
}

.whatsapp-action-card {
  max-width: 1000px;
  margin: 50px auto 0 auto;
  background: linear-gradient(135deg, #031c49 0%, #0a388a 100%);
  color: #ffffff;
  padding: 35px 40px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(3, 28, 73, 0.2);
  border: 1px solid rgba(190, 129, 38, 0.3);
  position: relative;
  overflow: hidden;
}

.whatsapp-action-card h3 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.whatsapp-action-card p {
  font-size: 17px;
  color: #e2e8f0;
  margin-bottom: 25px;
}

.btn-whatsapp-direct {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-gold);
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 6px 20px rgba(190, 129, 38, 0.3);
}

.btn-whatsapp-direct:hover {
  background: #d4912e;
  transform: scale(1.06);
  color: #ffffff;
}

.floating-wa-widget {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.floating-wa-widget:hover {
  transform: scale(1.15) rotate(10deg);
}

.badges-section {
  max-width: 1200px;
  margin: 70px auto 0 auto;
  padding: 0 20px;
  position: relative;
}

.badges-header {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}

.badges-subtitle-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(190, 129, 38, 0.1);
  color: var(--brand-gold-dark);
  border: 1px solid rgba(190, 129, 38, 0.3);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 14px;
}

.badges-header .reporter-section-title {
  margin: 0 0 12px 0;
  font-size: 32px;
  font-weight: 900;
  color: var(--brand-navy);
  letter-spacing: -0.5px;
}

.badges-header .reporter-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-gold) 0%, var(--brand-navy) 100%);
  margin: 14px auto 0 auto;
  border-radius: 10px;
}

.badges-header p.badges-section-desc {
  max-width: 680px;
  margin: 16px auto 0 auto;
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 20px;
}

@media (max-width: 992px) {
  .badges-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
}

.badge-tier-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 42px 28px 32px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(3, 28, 73, 0.05);
  border: 1px solid #e2e8f0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.badge-tier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: 24px 24px 0 0;
}

.badge-tier-card.certified::before {
  background: linear-gradient(90deg, #38bdf8, #0284c7);
}

.badge-tier-card.featured::before {
  background: linear-gradient(90deg, #cbd5e1, var(--brand-navy), #64748b);
}

.badge-tier-card.gold::before {
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #b45309);
}

.badge-tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(3, 28, 73, 0.12);
}

/* Gold Tier Featured Special Glow & Height */
.badge-tier-card.gold {
  border-color: rgba(245, 158, 11, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
  box-shadow: 0 14px 40px rgba(190, 129, 38, 0.12);
}

.badge-tier-card.gold:hover {
  box-shadow: 0 25px 55px rgba(190, 129, 38, 0.22);
  border-color: rgba(245, 158, 11, 0.7);
}

.badge-highlight-pill {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
  letter-spacing: 0.3px;
  z-index: 2;
}

.badge-tier-level-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin: 6px auto 16px auto;
  width: fit-content;
}

.badge-tier-card.certified .badge-tier-level-tag {
  background: rgba(56, 189, 248, 0.12);
  color: #0284c7;
}

.badge-tier-card.featured .badge-tier-level-tag {
  background: rgba(3, 28, 73, 0.08);
  color: var(--brand-navy);
}

.badge-tier-card.gold .badge-tier-level-tag {
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}

.badge-icon-wrap {
  position: relative;
  width: 74px;
  height: 74px;
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon-wrap svg {
  transition: transform 0.4s ease;
}

.badge-tier-card:hover .badge-icon-wrap svg {
  transform: scale(1.12) rotate(4deg);
}

.badge-tier-card h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 10px;
}

.badge-tier-card.gold h4 {
  color: #92400e;
  font-size: 24px;
}

.badge-tier-card p.badge-tier-desc {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 22px;
  min-height: 48px;
}

.badge-perks-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  border-top: 1px dashed #e2e8f0;
  padding-top: 18px;
}

.badge-perks-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 10px;
  line-height: 1.4;
}

.badge-perks-list li:last-child {
  margin-bottom: 0;
}

.badge-perks-list li svg {
  flex-shrink: 0;
}

.badge-tier-card.certified .badge-perks-list li svg { color: #0284c7; }
.badge-tier-card.featured .badge-perks-list li svg { color: var(--brand-navy); }
.badge-tier-card.gold .badge-perks-list li svg { color: #d97706; }

.reporter-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 28, 73, 0.8);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.reporter-modal-box {
  background: #ffffff;
  width: 90%;
  max-width: 520px;
  padding: 40px 35px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlide 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlide {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-icon-success {
  font-size: 60px;
  margin-bottom: 15px;
}

.modal-ref-code {
  font-size: 26px;
  font-weight: 900;
  color: var(--brand-navy);
  background: #fdf8f0;
  padding: 12px 24px;
  border-radius: 12px;
  display: inline-block;
  letter-spacing: 1px;
  margin: 18px 0;
  border: 2px dashed var(--brand-gold);
  font-family: monospace;
}

.btn-modal-close {
  background: var(--brand-navy);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
  transition: var(--transition-smooth);
}

.btn-modal-close:hover {
  background: var(--brand-navy-light);
}

@media (max-width: 768px) {
  .reporter-hero h1 { font-size: 30px; }
  .reporter-hero p.subtitle { font-size: 17px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .reporter-form-wrapper { border-radius: 18px; }
  .reporter-form-wrapper form { padding: 25px 20px 0 20px; }
  .form-wizard-header { padding: 25px 20px; }
  .security-notice-box { margin: 20px 20px 0 20px; padding: 15px; }
  .reporter-intro-card { padding: 25px 20px; margin: 30px 15px; }
  .intro-features-grid { grid-template-columns: 1fr; }
  .form-step-indicators { display: none; }
}
