/* ============================================
   SENTINEL ASSURE - Complete Stylesheet
   Theme: Black, Neon Blue, White
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --black: #0a0a0a;
  --black-light: #141414;
  --black-card: #1a1a1a;
  --neon-blue: #00f0ff;
  --neon-blue-dim: #00b8c4;
  --neon-blue-glow: rgba(0, 240, 255, 0.3);
  --white: #ffffff;
  --white-dim: #e0e0e0;
  --white-muted: #a0a0a0;
  --success: #00ff88;
  --warning: #ffaa00;
  --error: #ff4444;
  --info: #00f0ff;
  --border: #2a2a2a;
  --border-light: #333333;
  --shadow: 0 0 20px rgba(0, 240, 255, 0.1);
  --shadow-lg: 0 0 40px rgba(0, 240, 255, 0.2);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --max-width: 1200px;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--neon-blue);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--white);
  text-shadow: 0 0 10px var(--neon-blue);
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== HEADER ===== */
.header {
  background: var(--black-light);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header-top {
  background: var(--black);
  padding: 8px 0;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.header-top-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-inner span {
  color: var(--white-muted);
}

.header-top-inner span:first-child {
  color: var(--neon-blue);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.logo:hover {
  color: var(--white);
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--black);
  border: 2px solid var(--neon-blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--neon-blue);
  box-shadow: 0 0 15px var(--neon-blue-glow);
}

.logo-text h1 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--white);
}

.logo-text span {
  font-size: 0.75rem;
  color: var(--neon-blue);
  display: block;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--white-dim);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-blue);
  background: rgba(0, 240, 255, 0.08);
  box-shadow: 0 0 15px var(--neon-blue-glow);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}

.lang-switcher button {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white-muted);
  padding: 4px 10px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.lang-switcher button:hover,
.lang-switcher button.active {
  background: var(--neon-blue);
  color: var(--black);
  border-color: var(--neon-blue);
  box-shadow: 0 0 10px var(--neon-blue-glow);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--neon-blue);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* ===== HERO ===== */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(0, 240, 255, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 240, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
  color: var(--white);
  position: relative;
}

.hero h2 .highlight {
  color: var(--neon-blue);
  text-shadow: 0 0 20px var(--neon-blue-glow);
}

.hero .tagline {
  font-size: 1.2rem;
  color: var(--white-muted);
  max-width: 700px;
  margin: 0 auto 40px;
  position: relative;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--neon-blue);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-feature .check {
  color: var(--success);
  font-size: 1.2rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 24px;
  position: relative;
}

.section-alt {
  background: var(--black-light);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 12px;
}

.section-title .accent {
  color: var(--neon-blue);
}

.section-subtitle {
  text-align: center;
  color: var(--white-muted);
  font-size: 1.1rem;
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--neon-blue);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--neon-blue);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--neon-blue);
}

.card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
}

.card p {
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card ul {
  margin-top: 12px;
  padding-left: 20px;
  color: var(--white-muted);
}

.card ul li {
  margin-bottom: 6px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--neon-blue);
  color: var(--black);
  border-color: var(--neon-blue);
}

.btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
  box-shadow: 0 0 25px var(--neon-blue-glow);
}

.btn-accent {
  background: transparent;
  color: var(--neon-blue);
  border-color: var(--neon-blue);
}

.btn-accent:hover {
  background: var(--neon-blue);
  color: var(--black);
  box-shadow: 0 0 25px var(--neon-blue-glow);
}

.btn-outline {
  background: transparent;
  color: var(--neon-blue);
  border-color: var(--neon-blue);
}

.btn-outline:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 15px var(--neon-blue-glow);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== FORMS ===== */
.form-section {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.form-section h3 {
  color: var(--neon-blue);
  margin-bottom: 24px;
  font-size: 1.2rem;
  font-weight: 700;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--white-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--black);
  color: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 3px var(--neon-blue-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-muted);
  opacity: 0.6;
}

.form-group select option {
  background: var(--black-card);
  color: var(--white);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group small {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--white-muted);
}

.form-group small a {
  color: var(--neon-blue);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.required {
  color: var(--error);
}

/* ===== FILE UPLOAD ===== */
.file-upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--black);
}

.file-upload-zone:hover,
.file-upload-zone.dragover {
  border-color: var(--neon-blue);
  background: rgba(0, 240, 255, 0.03);
  box-shadow: 0 0 20px var(--neon-blue-glow);
}

.file-list {
  margin-top: 16px;
}

.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--black);
  border-radius: var(--radius);
  margin-bottom: 8px;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  color: var(--white-dim);
}

.file-item button {
  background: none;
  border: none;
  color: var(--error);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 2px 8px;
  transition: var(--transition);
}

.file-item button:hover {
  color: #ff6666;
}

/* ===== HS CODE SEARCH ===== */
.hs-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--black-card);
  border: 1px solid var(--neon-blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-height: 300px;
  overflow-y: auto;
  z-index: 100;
  margin-top: 4px;
}

.hs-result-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.hs-result-item:hover {
  background: rgba(0, 240, 255, 0.1);
}

.hs-result-item .hs-code {
  font-weight: 700;
  color: var(--neon-blue);
  font-size: 0.9rem;
}

.hs-result-item .hs-name {
  font-size: 0.85rem;
  color: var(--white-muted);
  margin-top: 2px;
}

/* ===== PROGRESS STEPS ===== */
.steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white-muted);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  color: var(--white-muted);
}

.step.active .step-num {
  background: var(--neon-blue);
  border-color: var(--neon-blue);
  color: var(--black);
  box-shadow: 0 0 15px var(--neon-blue-glow);
}

.step.completed .step-num {
  background: var(--success);
  border-color: var(--success);
  color: var(--black);
}

.step.active {
  color: var(--neon-blue);
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
}

.badge-submitted { background: rgba(0, 240, 255, 0.15); color: var(--neon-blue); border: 1px solid var(--neon-blue); }
.badge-underreview { background: rgba(255, 170, 0, 0.15); color: var(--warning); border: 1px solid var(--warning); }
.badge-approved { background: rgba(0, 255, 136, 0.15); color: var(--success); border: 1px solid var(--success); }
.badge-completed { background: rgba(138, 43, 226, 0.15); color: #a855f7; border: 1px solid #a855f7; }
.badge-rejected { background: rgba(255, 68, 68, 0.15); color: var(--error); border: 1px solid var(--error); }
.badge-verified { background: rgba(0, 255, 136, 0.15); color: var(--success); border: 1px solid var(--success); }
.badge-flagged { background: rgba(255, 68, 68, 0.15); color: var(--error); border: 1px solid var(--error); }
.badge-pending { background: rgba(255, 170, 0, 0.15); color: var(--warning); border: 1px solid var(--warning); }

/* ===== TRACK PAGE ===== */
.track-box {
  max-width: 500px;
  margin: 0 auto 40px;
  background: var(--black-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.track-result {
  max-width: 700px;
  margin: 0 auto;
  background: var(--black-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 28px;
  opacity: 0.4;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--border);
  border: 3px solid var(--black-card);
  box-shadow: 0 0 0 2px var(--border);
}

.timeline-item.completed {
  opacity: 1;
}

.timeline-item.completed::before {
  background: var(--success);
  box-shadow: 0 0 0 2px var(--success);
}

.timeline-item.active {
  opacity: 1;
}

.timeline-item.active::before {
  background: var(--neon-blue);
  box-shadow: 0 0 0 2px var(--neon-blue), 0 0 15px var(--neon-blue-glow);
  animation: pulse 2s infinite;
}

.timeline-item h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 0.85rem;
  color: var(--white-muted);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ===== ALERTS ===== */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 0.9rem;
  font-weight: 500;
  border-left: 4px solid;
}

.alert-error {
  background: rgba(255, 68, 68, 0.1);
  color: var(--error);
  border-color: var(--error);
}

.alert-success {
  background: rgba(0, 255, 136, 0.1);
  color: var(--success);
  border-color: var(--success);
}

.alert-info {
  background: rgba(0, 240, 255, 0.1);
  color: var(--neon-blue);
  border-color: var(--neon-blue);
}

/* ===== ADMIN DASHBOARD ===== */
.admin-header {
  background: var(--black-card);
  border: 1px solid var(--neon-blue);
  color: var(--white);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--black-card);
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--neon-blue);
  box-shadow: var(--shadow);
}

.stat-card .number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--neon-blue);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 10px var(--neon-blue-glow);
}

.stat-card .label {
  font-size: 0.85rem;
  color: var(--white-muted);
  font-weight: 500;
}

.filters {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filters input,
.filters select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  min-width: 180px;
  background: var(--black);
  color: var(--white);
  transition: var(--transition);
}

.filters input:focus,
.filters select:focus {
  outline: none;
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 3px var(--neon-blue-glow);
}

/* ===== TABLE ===== */
.table-container {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow-x: auto;
  box-shadow: var(--shadow);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table thead {
  background: var(--black-light);
  color: var(--neon-blue);
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--white-dim);
}

.data-table th {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.data-table tbody tr:hover {
  background: rgba(0, 240, 255, 0.03);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neon-blue);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal h3 {
  color: var(--neon-blue);
  margin-bottom: 24px;
}

/* ===== LOADING ===== */
.loading {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 240, 255, 0.3);
  border-top-color: var(--neon-blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black-light);
  color: var(--white);
  padding: 56px 24px 24px;
  margin-top: auto;
  border-top: 1px solid var(--border);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-grid h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--neon-blue);
}

.footer-grid a {
  display: block;
  color: var(--white-muted);
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: var(--neon-blue);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 0 !important;
}

.footer-social a:hover {
  background: rgba(0, 240, 255, 0.2);
  border-color: rgba(0, 240, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 240, 255, 0.2);
}

.footer-social svg {
  transition: all 0.3s ease;
}

.footer-social a:hover svg {
  fill: #fff;
}

.footer-grid p {
  color: var(--white-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--white-muted);
}

/* ===== INFO BOXES ===== */
.info-box {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid var(--neon-blue);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0;
}

.info-box h4 {
  color: var(--neon-blue);
  margin-bottom: 12px;
}

.info-box p {
  color: var(--white-muted);
  font-size: 0.9rem;
}

.warning-box {
  background: rgba(255, 170, 0, 0.05);
  border: 1px solid var(--warning);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0;
}

.warning-box h4 {
  color: var(--warning);
  margin-bottom: 12px;
}

.warning-box p {
  color: var(--white-muted);
  font-size: 0.9rem;
}

/* ===== DISCLAIMER ===== */
.disclaimer-box {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0;
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.8;
}

.disclaimer-box h4 {
  color: var(--error);
  margin-bottom: 12px;
  font-size: 1rem;
}

.disclaimer-box ul {
  padding-left: 20px;
  margin-top: 8px;
}

.disclaimer-box ul li {
  margin-bottom: 6px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--neon-blue);
  box-shadow: var(--shadow);
}

.contact-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--neon-blue);
}

.contact-card h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.contact-card p {
  color: var(--white-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--neon-blue);
  font-size: 0.9rem;
}

/* ===== LOGIN ===== */
.login-container {
  max-width: 420px;
  margin: 80px auto;
}

.login-box {
  background: var(--black-card);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--neon-blue);
  box-shadow: var(--shadow-lg);
}

.login-box h2 {
  text-align: center;
  color: var(--neon-blue);
  margin-bottom: 8px;
}

.login-box p {
  text-align: center;
  color: var(--white-muted);
  margin-bottom: 32px;
}

.lang-switcher-mobile {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.8rem;
  }

  .hero .tagline {
    font-size: 1rem;
  }

  .section {
    padding: 48px 16px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black-light);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-top: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
    z-index: 1000;
  }

  .nav-links a {
    padding: 12px 16px;
    width: 100%;
  }

  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    padding-top: 8px;
    border-top: 1px solid var(--border);
  }

  .lang-switcher-mobile {
    display: flex;
    gap: 4px;
    margin-right: 8px;
  }

  .lang-switcher-mobile button {
    padding: 4px 8px;
    font-size: 0.75rem;
    background: var(--black);
    border: 1px solid var(--border);
    color: var(--white-muted);
    border-radius: var(--radius);
    cursor: pointer;
  }

  .lang-switcher-mobile button.active {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    background: var(--black-light);
  }

  .mobile-toggle {
    display: block;
  }

  .steps {
    flex-wrap: wrap;
    gap: 12px;
  }

  .steps::before {
    display: none;
  }

  .step {
    flex: none;
    width: calc(50% - 6px);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .admin-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .filters {
    flex-direction: column;
  }

  .filters input,
  .filters select {
    width: 100%;
  }

  .data-table {
    font-size: 0.8rem;
  }

  .data-table th,
  .data-table td {
    padding: 10px 12px;
  }

  .hero-features {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 16px;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .step {
    width: 100%;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .login-box {
    padding: 32px 24px;
  }
}

/* ===== PRINT ===== */
@media print {
  .header,
  .footer,
  .lang-switcher,
  .btn {
    display: none !important;
  }

  .form-section,
  .track-result,
  .card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-blue);
}
