@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,300&family=Barlow+Condensed:wght@400;500;600;700;900&display=swap');

:root {
  --yellow: #F5C400;
  --yellow-dark: #D4A900;
  --yellow-light: #FFD740;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #222222;
  --dark-4: #2E2E2E;
  --gray: #666666;
  --gray-light: #999999;
  --white: #F5F5F5;
  --white-pure: #FFFFFF;
  --red: #E53935;
  --green: #2ECC71;
  --blue: #2196F3;

  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --radius: 4px;
  --radius-lg: 8px;
  --radius-xl: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-yellow: 0 4px 32px rgba(245,196,0,0.2);
  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); letter-spacing: 0.02em; line-height: 1.1; }
.condensed { font-family: var(--font-condensed); }
.text-yellow { color: var(--yellow); }
.text-gray { color: var(--gray-light); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

/* ── LAYOUT ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 640px; margin: 0 auto; padding: 0 24px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }
.grid { display: grid; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius); font-family: var(--font-condensed);
  font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition); border: 2px solid transparent;
  text-decoration: none; white-space: nowrap; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1); opacity: 0; transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-primary { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-primary:hover { background: var(--yellow-light); box-shadow: var(--shadow-yellow); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--yellow); border-color: var(--yellow); }
.btn-outline:hover { background: rgba(245,196,0,0.1); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--dark-4); }
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-danger { background: var(--red); color: var(--white-pure); border-color: var(--red); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.btn .spinner { width: 16px; height: 16px; border: 2px solid currentColor; border-top-color: transparent; border-radius: 50%; animation: spin 0.7s linear infinite; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245,196,0,0.12);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(10,10,10,0.98); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.navbar-logo img { height: 36px; }
.navbar-menu { display: flex; align-items: center; gap: 32px; list-style: none; }
.navbar-menu a { color: var(--gray-light); text-decoration: none; font-family: var(--font-condensed); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; transition: var(--transition); padding: 4px 0; border-bottom: 2px solid transparent; }
.navbar-menu a:hover, .navbar-menu a.active { color: var(--yellow); border-bottom-color: var(--yellow); }
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.navbar-toggle { display: none; background: none; border: none; color: var(--white); cursor: pointer; padding: 8px; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #111 40%, #1a1400 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,196,0,0.08) 0%, transparent 70%);
}
.hero-bg::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, var(--black), transparent);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(var(--yellow) 1px, transparent 1px), linear-gradient(90deg, var(--yellow) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow { font-family: var(--font-condensed); font-size: 0.875rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--yellow); }
.hero-title { font-size: clamp(3.5rem, 10vw, 8rem); line-height: 0.95; margin-bottom: 24px; }
.hero-title span { color: var(--yellow); }
.hero-subtitle { font-size: 1.1rem; color: var(--gray-light); max-width: 520px; margin-bottom: 40px; font-weight: 300; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 64px; flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--yellow); line-height: 1; }
.hero-stat-label { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ── SECTION ── */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-eyebrow { font-family: var(--font-condensed); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--yellow); margin-bottom: 12px; }
.section-title { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px; }
.section-subtitle { color: var(--gray-light); max-width: 560px; font-weight: 300; font-size: 1.05rem; }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ── CARDS ── */
.card {
  background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); padding: 32px; transition: var(--transition);
}
.card:hover { border-color: rgba(245,196,0,0.3); transform: translateY(-2px); box-shadow: var(--shadow); }
.card-icon { width: 52px; height: 52px; background: rgba(245,196,0,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.5rem; }
.card-title { font-family: var(--font-condensed); font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.card-text { color: var(--gray-light); font-size: 0.9rem; line-height: 1.7; }

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-family: var(--font-condensed); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-light); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--dark-3); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); color: var(--white); font-family: var(--font-body); font-size: 0.95rem;
  padding: 12px 16px; transition: var(--transition); outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,196,0,0.12); }
.form-input::placeholder { color: var(--gray); }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.form-select option { background: var(--dark-3); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-error { color: var(--red); font-size: 0.8rem; margin-top: 6px; display: none; }
.form-group.has-error .form-input, .form-group.has-error .form-select { border-color: var(--red); }
.form-group.has-error .form-error { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-icon-wrap { position: relative; }
.input-icon-wrap .form-input { padding-left: 44px; }
.input-icon-wrap .input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--gray); pointer-events: none; font-size: 1rem; }

/* ── BADGE ── */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; font-family: var(--font-condensed); letter-spacing: 0.08em; text-transform: uppercase; }
.badge-yellow { background: rgba(245,196,0,0.15); color: var(--yellow); border: 1px solid rgba(245,196,0,0.3); }
.badge-green { background: rgba(46,204,113,0.15); color: var(--green); border: 1px solid rgba(46,204,113,0.3); }
.badge-red { background: rgba(229,57,53,0.15); color: var(--red); border: 1px solid rgba(229,57,53,0.3); }
.badge-blue { background: rgba(33,150,243,0.15); color: var(--blue); border: 1px solid rgba(33,150,243,0.3); }
.badge-gray { background: rgba(102,102,102,0.15); color: var(--gray-light); border: 1px solid rgba(102,102,102,0.3); }
.badge-dot::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); }
.divider-text { display: flex; align-items: center; gap: 16px; color: var(--gray); font-size: 0.85rem; margin: 24px 0; }
.divider-text::before, .divider-text::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08); }

/* ── TOAST ── */
#toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast {
  display: flex; align-items: center; gap: 12px; padding: 14px 20px;
  background: var(--dark-3); border-radius: var(--radius-lg);
  border-left: 4px solid var(--yellow); box-shadow: var(--shadow);
  animation: slideIn 0.3s ease; max-width: 360px; font-size: 0.9rem;
}
.toast.success { border-color: var(--green); }
.toast.error { border-color: var(--red); }
.toast.info { border-color: var(--blue); }
.toast-icon { font-size: 1.1rem; flex-shrink: 0; }
.toast-close { margin-left: auto; background: none; border: none; color: var(--gray); cursor: pointer; padding: 2px; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOut { to { transform: translateX(110%); opacity: 0; } }
.toast.removing { animation: slideOut 0.3s ease forwards; }

/* ── MODAL ── */
.modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.75); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-xl); padding: 40px; max-width: 560px; width: 100%; position: relative; animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.modal-close { position: absolute; top: 16px; right: 16px; background: var(--dark-3); border: none; color: var(--gray-light); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--transition); }
.modal-close:hover { color: var(--white); background: var(--dark-4); }
.modal-title { font-size: 1.75rem; margin-bottom: 8px; }
.modal-subtitle { color: var(--gray-light); margin-bottom: 28px; font-size: 0.95rem; }
@keyframes modalIn { from { opacity: 0; transform: scale(0.92) translateY(20px); } to { opacity: 1; transform: none; } }

/* ── TABS ── */
.tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; gap: 4px; }
.tab { background: none; border: none; color: var(--gray); font-family: var(--font-condensed); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 12px 20px; cursor: pointer; border-bottom: 2px solid transparent; transition: var(--transition); margin-bottom: -1px; }
.tab:hover { color: var(--white); }
.tab.active { color: var(--yellow); border-bottom-color: var(--yellow); }

/* ── PROGRESS/STEPPER ── */
.stepper { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.step:not(:last-child)::after { content: ''; position: absolute; top: 16px; left: 50%; width: 100%; height: 2px; background: var(--dark-4); z-index: 0; }
.step.done:not(:last-child)::after, .step.active:not(:last-child)::after { background: var(--yellow); }
.step-circle { width: 32px; height: 32px; border-radius: 50%; background: var(--dark-4); border: 2px solid var(--dark-4); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; z-index: 1; margin-bottom: 8px; transition: var(--transition); }
.step.done .step-circle { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.step.active .step-circle { background: var(--dark); border-color: var(--yellow); color: var(--yellow); box-shadow: 0 0 0 4px rgba(245,196,0,0.2); }
.step-label { font-size: 0.72rem; font-family: var(--font-condensed); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); }
.step.active .step-label { color: var(--yellow); }
.step.done .step-label { color: var(--gray-light); }

/* ── TABLE ── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.06); }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
thead { background: var(--dark-3); }
th { font-family: var(--font-condensed); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); padding: 14px 20px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); white-space: nowrap; }
td { padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.04); color: var(--white); }
tr:last-child td { border-bottom: none; }
tbody tr { transition: var(--transition); }
tbody tr:hover { background: rgba(255,255,255,0.03); }

/* ── SIDEBAR DASHBOARD ── */
.dash-layout { display: flex; min-height: 100vh; padding-top: 72px; }
.sidebar { width: 260px; background: var(--dark); border-right: 1px solid rgba(255,255,255,0.06); position: fixed; top: 72px; left: 0; bottom: 0; overflow-y: auto; z-index: 100; transition: var(--transition); }
.sidebar-menu { padding: 24px 0; }
.sidebar-section { padding: 8px 20px; font-family: var(--font-condensed); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-top: 16px; }
.sidebar-link { display: flex; align-items: center; gap: 12px; padding: 11px 20px; color: var(--gray-light); text-decoration: none; font-family: var(--font-condensed); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.04em; transition: var(--transition); border-left: 3px solid transparent; }
.sidebar-link:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.sidebar-link.active { color: var(--yellow); background: rgba(245,196,0,0.06); border-left-color: var(--yellow); }
.sidebar-link .icon { width: 20px; text-align: center; }
.sidebar-badge { margin-left: auto; background: var(--yellow); color: var(--black); font-size: 0.65rem; font-weight: 700; padding: 2px 7px; border-radius: 100px; }
.dash-main { flex: 1; margin-left: 260px; padding: 40px; min-width: 0; }
.dash-header { margin-bottom: 40px; }
.dash-header h1 { font-size: 2.5rem; }
.dash-header p { color: var(--gray-light); margin-top: 4px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-lg); padding: 24px; }
.stat-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.stat-card-icon { width: 44px; height: 44px; background: rgba(245,196,0,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.stat-card-change { font-size: 0.78rem; font-weight: 700; }
.stat-card-change.up { color: var(--green); }
.stat-card-change.down { color: var(--red); }
.stat-card-value { font-family: var(--font-display); font-size: 2.2rem; color: var(--white); line-height: 1; margin-bottom: 4px; }
.stat-card-label { font-size: 0.82rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── AUTH PAGES ── */
.auth-layout { min-height: 100vh; display: flex; }
.auth-side { flex: 1; background: linear-gradient(135deg, #0F0E00 0%, #1a1500 100%); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 60px; }
.auth-side::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 80% at 30% 30%, rgba(245,196,0,0.12) 0%, transparent 60%); }
.auth-side-grid { position: absolute; inset: 0; opacity: 0.06; background-image: linear-gradient(var(--yellow) 1px, transparent 1px), linear-gradient(90deg, var(--yellow) 1px, transparent 1px); background-size: 48px 48px; }
.auth-side-content { position: relative; z-index: 1; }
.auth-side-title { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 20px; line-height: 1; }
.auth-side-title span { color: var(--yellow); }
.auth-side-text { color: var(--gray-light); max-width: 400px; font-size: 1.05rem; font-weight: 300; margin-bottom: 40px; }
.auth-features { display: flex; flex-direction: column; gap: 16px; }
.auth-feature { display: flex; align-items: center; gap: 12px; color: var(--gray-light); font-size: 0.9rem; }
.auth-feature-icon { width: 32px; height: 32px; background: rgba(245,196,0,0.15); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--yellow); flex-shrink: 0; }
.auth-form-side { width: 560px; background: var(--dark); display: flex; align-items: center; justify-content: center; padding: 60px 40px; }
.auth-form-wrap { width: 100%; max-width: 440px; }
.auth-logo { margin-bottom: 48px; display: flex; align-items: center; }
.auth-logo img { height: 32px; }
.auth-title { font-size: 2.5rem; margin-bottom: 6px; }
.auth-subtitle { color: var(--gray-light); margin-bottom: 36px; font-size: 0.95rem; }
.auth-footer { margin-top: 28px; text-align: center; color: var(--gray); font-size: 0.875rem; }
.auth-footer a { color: var(--yellow); text-decoration: none; font-weight: 600; }
.auth-footer a:hover { text-decoration: underline; }
.remember-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.checkbox-wrap { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.checkbox-wrap input { accent-color: var(--yellow); width: 15px; height: 15px; cursor: pointer; }
.checkbox-wrap span { font-size: 0.875rem; color: var(--gray-light); }
.forgot-link { font-size: 0.875rem; color: var(--yellow); text-decoration: none; font-weight: 600; }
.forgot-link:hover { text-decoration: underline; }

/* ── TRACKING ── */
.track-result { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-xl); padding: 40px; margin-top: 32px; }
.track-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 20px; }
.track-id { font-family: var(--font-display); font-size: 1.75rem; color: var(--yellow); }
.track-route { display: flex; align-items: center; gap: 12px; margin-top: 4px; color: var(--gray-light); font-size: 0.9rem; }
.track-route-arrow { color: var(--yellow); font-size: 0.7rem; }
.track-timeline { margin: 40px 0; }
.track-event { display: flex; gap: 20px; padding-bottom: 32px; position: relative; }
.track-event:last-child { padding-bottom: 0; }
.track-event-line { position: absolute; left: 15px; top: 32px; bottom: 0; width: 2px; background: var(--dark-4); }
.track-event:last-child .track-event-line { display: none; }
.track-event.done .track-event-line { background: rgba(245,196,0,0.3); }
.track-dot { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; position: relative; z-index: 1; }
.track-dot.done { background: var(--yellow); color: var(--black); }
.track-dot.active { background: var(--dark); border: 2px solid var(--yellow); color: var(--yellow); box-shadow: 0 0 0 4px rgba(245,196,0,0.15); }
.track-dot.pending { background: var(--dark-4); color: var(--gray); border: 2px solid var(--dark-4); }
.track-event-info { flex: 1; }
.track-event-title { font-family: var(--font-condensed); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.track-event-desc { font-size: 0.875rem; color: var(--gray-light); margin-bottom: 4px; }
.track-event-time { font-size: 0.775rem; color: var(--gray); }
.track-map-placeholder { height: 220px; background: var(--dark-3); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin-top: 24px; border: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden; font-size: 0.9rem; color: var(--gray); }
.track-map-placeholder::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 40% 60%, rgba(245,196,0,0.05) 0%, transparent 60%); }

/* ── SIMULATION ── */
.sim-card { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-xl); overflow: hidden; }
.sim-header { background: var(--dark-3); padding: 28px 32px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sim-header h3 { font-size: 1.5rem; margin-bottom: 4px; }
.sim-header p { color: var(--gray-light); font-size: 0.9rem; }
.sim-body { padding: 32px; }
.transport-selector { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 12px; margin-bottom: 8px; }
.transport-option { background: var(--dark-3); border: 2px solid rgba(255,255,255,0.06); border-radius: var(--radius-lg); padding: 16px 12px; text-align: center; cursor: pointer; transition: var(--transition); }
.transport-option:hover { border-color: rgba(245,196,0,0.4); }
.transport-option.selected { border-color: var(--yellow); background: rgba(245,196,0,0.08); }
.transport-option .t-icon { font-size: 1.75rem; display: block; margin-bottom: 6px; }
.transport-option .t-name { font-size: 0.75rem; font-family: var(--font-condensed); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-light); }
.transport-option.selected .t-name { color: var(--yellow); }
.sim-result { background: var(--dark-3); border-radius: var(--radius-lg); padding: 28px; margin-top: 24px; border: 1px solid rgba(245,196,0,0.15); }
.sim-result-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px; margin-bottom: 24px; }
.sim-result-item label { font-family: var(--font-condensed); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); display: block; margin-bottom: 4px; }
.sim-result-item .value { font-family: var(--font-display); font-size: 1.8rem; color: var(--yellow); line-height: 1; }
.sim-result-item .value.price { color: var(--green); }
.sim-result-item .unit { font-size: 0.75rem; color: var(--gray); margin-top: 2px; }

/* ── FOOTER ── */
footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand-desc { color: var(--gray); font-size: 0.9rem; max-width: 280px; margin: 20px 0; line-height: 1.8; }
.footer-col-title { font-family: var(--font-condensed); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom-text { color: var(--gray); font-size: 0.85rem; }
.footer-socials { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; background: var(--dark-3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gray); text-decoration: none; transition: var(--transition); font-size: 0.9rem; }
.social-btn:hover { background: var(--yellow); color: var(--black); }

/* ── LOADING ── */
.page-loader { position: fixed; inset: 0; background: var(--black); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; transition: opacity 0.5s ease; }
.page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-logo img { height: 40px; }
.loader-bar { width: 200px; height: 3px; background: var(--dark-3); border-radius: 2px; overflow: hidden; }
.loader-bar-fill { height: 100%; background: var(--yellow); border-radius: 2px; animation: loadBar 1.2s ease forwards; }
@keyframes loadBar { from { width: 0%; } to { width: 100%; } }

/* ── ANIMATIONS ── */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
.animate-fadeup { animation: fadeUp 0.6s ease forwards; }
.animate-fadein { animation: fadeIn 0.5s ease forwards; }
.anim-delay-1 { animation-delay: 0.1s; opacity: 0; }
.anim-delay-2 { animation-delay: 0.2s; opacity: 0; }
.anim-delay-3 { animation-delay: 0.3s; opacity: 0; }
.anim-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: none; }
  .dash-main { margin-left: 0; }
  .sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 99; }
  .sidebar-overlay.open { display: block; }
}
@media (max-width: 900px) {
  .auth-side { display: none; }
  .auth-form-side { width: 100%; }
  .hero-title { font-size: clamp(3rem, 12vw, 6rem); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar-menu { display: none; position: absolute; top: 72px; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 20px 24px 28px; flex-direction: column; gap: 4px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .navbar-menu.open { display: flex; }
  .navbar-toggle { display: flex; align-items: center; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .dash-main { padding: 24px 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .modal { padding: 28px 24px; }
  .auth-form-side { padding: 40px 24px; }
  .sim-body { padding: 20px; }
  .transport-selector { grid-template-columns: repeat(3, 1fr); }
  .track-result { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { width: 100%; }
  .stats-grid { grid-template-columns: 1fr; }
  .transport-selector { grid-template-columns: repeat(2, 1fr); }
}
