/* =============================================
   Fleet Express - Main Stylesheet
   ============================================= */

:root {
  --navy:    #1a2b4a;
  --navy-light: #243656;
  --accent:  #f4811f;
  --accent-hover: #e0701a;
  --green:   #1cb86b;
  --light-bg:#f5f7fa;
  --border:  #e2e8f0;
  --text:    #2d3748;
  --muted:   #718096;
  --white:   #ffffff;
  --shadow:  0 4px 20px rgba(26,43,74,.10);
  --radius:  12px;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: 0.78rem;
  padding: 6px 0;
}
.topbar a { color: rgba(255,255,255,.75); text-decoration: none; }
.topbar a:hover { color: var(--accent); }

/* =============================================
   NAVBAR
   ============================================= */
.main-navbar {
  background: var(--navy-light);
  padding: 10px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  transition: background .3s;
}

.brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-icon {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: white;
}
.brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: white; letter-spacing: -0.5px;
}
.brand-accent { color: var(--accent); }

.main-navbar .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500; font-size: 0.9rem;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: all .2s;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: white !important;
  background: rgba(255,255,255,.12);
}

.btn-accent {
  background: var(--accent);
  color: white; border: none;
  font-weight: 600; border-radius: 8px;
  padding: 7px 18px;
  transition: background .2s;
}
.btn-accent:hover { background: var(--accent-hover); color: white; }

.navbar-actions { display: flex; align-items: center; gap: 8px; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4a7f 50%, #1a3560 100%);
  color: white;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(244,129,31,.2);
  border: 1px solid rgba(244,129,31,.4);
  color: #ffa05c;
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.82rem; font-weight: 600;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 .highlight { color: var(--accent); }
.hero p.lead { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 480px; }

.hero-stats { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem; font-weight: 800;
  color: var(--accent); display: block;
}
.hero-stat .label { font-size: 0.78rem; color: rgba(255,255,255,.65); }

/* Track Box */
.track-box {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  max-width: 480px;
}
.track-box h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 20px;
}
.track-input-group {
  display: flex; gap: 8px;
}
.track-input-group .form-control {
  border: 2px solid var(--border);
  border-radius: 8px; padding: 12px 16px;
  font-size: 0.95rem; font-weight: 500;
  flex: 1;
}
.track-input-group .form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,43,74,.1);
}
.btn-track {
  background: var(--navy);
  color: white; border: none;
  border-radius: 8px; padding: 12px 20px;
  font-weight: 600; white-space: nowrap;
  transition: background .2s;
}
.btn-track:hover { background: var(--accent); color: white; }

.hero-features { display: flex; gap: 16px; margin-top: 14px; flex-wrap: wrap; }
.hero-feature {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--muted);
}
.hero-feature i { color: var(--green); }

/* =============================================
   SERVICES STRIP
   ============================================= */
.services-strip {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.services-strip .strip-items {
  display: flex; overflow-x: auto;
}
.strip-item {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 24px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
  transition: background .2s;
  text-decoration: none; color: var(--text);
  flex: 1; min-width: 160px;
}
.strip-item:hover { background: var(--light-bg); color: var(--navy); }
.strip-item i { color: var(--accent); font-size: 1.3rem; }
.strip-item .strip-text strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.strip-item .strip-text span { font-size: 0.75rem; color: var(--muted); }

/* =============================================
   SECTION STYLES
   ============================================= */
section { padding: 70px 0; }
.section-bg { background: var(--light-bg); }

.section-label {
  display: inline-block;
  color: var(--accent); font-weight: 700;
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 8px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--navy);
  line-height: 1.2; margin-bottom: 12px;
}
.section-sub { color: var(--muted); max-width: 520px; margin: 0 auto; }

/* =============================================
   SERVICE CARDS
   ============================================= */
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .3s;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .3s;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.service-card h5 { font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0; }
.service-price {
  margin-top: 14px;
  font-size: 1.1rem; font-weight: 700;
  color: var(--accent);
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-item { display: flex; gap: 16px; margin-bottom: 28px; }
.why-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: rgba(244,129,31,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--accent);
}
.why-text h6 { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-text p { color: var(--muted); font-size: 0.88rem; margin: 0; }

.delivery-img-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.delivery-img-wrapper img { width: 100%; display: block; }
.img-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: white;
  border-radius: 10px;
  padding: 10px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  display: flex; align-items: center; gap: 10px;
}
.img-badge .badge-num { font-size: 1.4rem; font-weight: 800; color: var(--green); }
.img-badge small { color: var(--muted); font-size: 0.75rem; display: block; }

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4a7f 100%);
  color: white; padding: 60px 0;
}
.stat-item { text-align: center; padding: 20px; }
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem; font-weight: 800;
  color: var(--accent); display: block; line-height: 1;
}
.stat-label { color: rgba(255,255,255,.7); font-size: 0.9rem; margin-top: 6px; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.step-card { text-align: center; padding: 20px; }
.step-number {
  width: 56px; height: 56px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  margin: 0 auto 16px;
}
.step-card h6 { font-weight: 700; color: var(--navy); }
.step-card p { font-size: 0.85rem; color: var(--muted); }
.step-connector {
  position: absolute;
  top: 50%; left: calc(50% + 40px);
  width: calc(50% - 40px);
  height: 2px;
  background: var(--border);
  transform: translateY(-50%);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.stars { color: #f59e0b; font-size: 0.85rem; }
.testimonial-card p { font-size: 0.9rem; color: var(--text); font-style: italic; margin: 12px 0; }
.testimonial-author { font-weight: 700; font-size: 0.85rem; color: var(--navy); }
.testimonial-author span { font-weight: 400; color: var(--muted); }

/* =============================================
   TRACKING PAGE
   ============================================= */
.track-page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4a7f 100%);
  padding: 48px 0;
  color: white;
}
.track-page-hero h1 { font-family: 'Poppins', sans-serif; font-weight: 800; }

.tracking-result-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tracking-header {
  background: var(--navy);
  color: white;
  padding: 24px 28px;
}
.tracking-header .tracking-num { font-size: 1.05rem; font-weight: 700; }
.tracking-header .tracking-num span { opacity: .7; font-weight: 400; }

/* Progress bar */
.delivery-progress { padding: 28px; border-bottom: 1px solid var(--border); }
.progress-steps { display: flex; align-items: center; position: relative; }
.progress-line {
  position: absolute; top: 20px; left: 40px; right: 40px;
  height: 4px; background: var(--border); z-index: 0;
}
.progress-line-fill {
  height: 100%; background: var(--green);
  transition: width .5s;
}
.step-dot {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; position: relative; z-index: 1;
}
.step-dot .dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--border);
}
.step-dot.reached .dot {
  background: var(--green); color: white;
  box-shadow: 0 0 0 2px var(--green);
}
.step-dot.current .dot {
  background: var(--accent); color: white;
  box-shadow: 0 0 0 2px var(--accent);
}
.step-dot .step-label {
  font-size: 0.72rem; font-weight: 600; margin-top: 8px;
  text-align: center; color: var(--muted);
}
.step-dot.reached .step-label,
.step-dot.current .step-label { color: var(--navy); }

/* Tracking timeline */
.tracking-body { padding: 28px; }
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 19px;
  width: 2px; background: var(--border);
}
.timeline-item { display: flex; gap: 20px; margin-bottom: 24px; position: relative; }
.timeline-dot {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  background: white; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--muted);
  position: relative; z-index: 1;
}
.timeline-item:first-child .timeline-dot {
  background: var(--navy); border-color: var(--navy);
  color: white;
}
.timeline-content { flex: 1; padding-top: 6px; }
.timeline-msg { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.timeline-meta { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

/* Address box */
.address-box {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.address-line { font-size: 0.92rem; }
.address-masked { filter: blur(4px); user-select: none; }

.postcode-unlock {
  background: rgba(244,129,31,.08);
  border: 1px dashed var(--accent);
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 12px;
}

/* Delivery image */
.delivery-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
}
.delivery-photo img { width: 100%; display: block; max-height: 300px; object-fit: cover; }
.no-photo {
  background: var(--light-bg);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: var(--muted);
}

/* Status badges */
.status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
}
.status-pill.delivered { background: rgba(28,184,107,.12); color: #0e7a4a; }
.status-pill.in_transit { background: rgba(59,130,246,.12); color: #1d4ed8; }
.status-pill.out_delivery { background: rgba(245,158,11,.12); color: #92400e; }
.status-pill.returned { background: rgba(239,68,68,.12); color: #991b1b; }
.status-pill.pending { background: rgba(107,114,128,.1); color: #374151; }

/* Product info card */
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; gap: 16px; align-items: flex-start;
}
.product-card img {
  width: 80px; height: 80px;
  object-fit: contain; border-radius: 8px;
  border: 1px solid var(--border);
}
.product-card .product-title { font-size: 0.85rem; color: var(--text); font-weight: 500; }
.product-card .product-carrier { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

/* =============================================
   QUOTE CALCULATOR
   ============================================= */
.quote-section { background: var(--light-bg); }
.quote-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.quote-card-header {
  background: var(--navy);
  color: white; padding: 24px 28px;
}
.quote-card-body { padding: 28px; }

.price-result {
  background: linear-gradient(135deg, var(--navy), #2a4a7f);
  color: white;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.price-result .price-label { font-size: 0.85rem; opacity: .7; margin-bottom: 6px; }
.price-result .price-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: var(--accent);
}
.price-breakdown { list-style: none; padding: 0; margin: 0; }
.price-breakdown li {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 0.88rem;
}
.price-breakdown li:last-child { border-bottom: none; }

.service-option {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all .2s;
  margin-bottom: 8px;
  display: flex; align-items: center; justify-content: space-between;
}
.service-option:hover { border-color: var(--navy); }
.service-option.selected { border-color: var(--accent); background: rgba(244,129,31,.05); }
.service-option input[type=radio] { display: none; }
.service-option-label { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.service-option-desc { font-size: 0.78rem; color: var(--muted); }
.service-option-price { font-weight: 700; color: var(--accent); font-size: 0.95rem; }

/* =============================================
   AUTH FORMS
   ============================================= */
.auth-wrapper {
  min-height: calc(100vh - 200px);
  display: flex; align-items: center;
  background: var(--light-bg);
  padding: 40px 0;
}
.auth-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 480px; width: 100%;
  margin: 0 auto;
}
.auth-card-header {
  background: var(--navy);
  color: white; padding: 28px;
  text-align: center;
}
.auth-card-header h4 { font-family: 'Poppins', sans-serif; font-weight: 700; margin: 0; }
.auth-card-body { padding: 32px; }

.form-label { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.form-control, .form-select {
  border: 2px solid var(--border);
  border-radius: 8px; padding: 10px 14px;
  font-size: 0.9rem;
  transition: border-color .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,43,74,.08);
}
.btn-primary-navy {
  background: var(--navy); color: white;
  border: none; border-radius: 8px;
  padding: 12px; font-weight: 700;
  width: 100%; font-size: 0.95rem;
  transition: background .2s;
}
.btn-primary-navy:hover { background: var(--accent); color: white; }

.pending-notice {
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: 8px; padding: 14px 16px;
  font-size: 0.85rem; color: #92400e;
  display: flex; align-items: flex-start; gap: 10px;
}
.pending-notice i { color: #f59e0b; margin-top: 2px; }

/* =============================================
   ADMIN PANEL
   ============================================= */
.admin-layout { display: flex; min-height: calc(100vh - 110px); }
.admin-sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--navy);
  padding: 24px 0;
}
.admin-sidebar .sidebar-heading {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 1px; color: rgba(255,255,255,.4);
  padding: 0 20px 8px; margin-bottom: 4px;
}
.admin-sidebar a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 0.88rem; font-weight: 500;
  transition: all .2s;
}
.admin-sidebar a:hover,
.admin-sidebar a.active {
  background: rgba(255,255,255,.1);
  color: white;
}
.admin-sidebar a i { width: 18px; }
.admin-main { flex: 1; padding: 28px; background: var(--light-bg); }
.admin-card {
  background: white; border-radius: var(--radius);
  padding: 24px; box-shadow: 0 1px 4px rgba(0,0,0,.06);
  margin-bottom: 20px;
}
.admin-stat-card {
  background: white; border-radius: var(--radius);
  padding: 20px 24px; box-shadow: 0 1px 4px rgba(0,0,0,.06);
  border-left: 4px solid var(--accent);
}
.admin-stat-card .stat-num { font-size: 2rem; font-weight: 800; color: var(--navy); }
.admin-stat-card .stat-desc { font-size: 0.82rem; color: var(--muted); }

.table-responsive { border-radius: 8px; overflow: hidden; }
.table th { background: var(--navy); color: white; font-size: 0.82rem; font-weight: 600; border: none; }
.table td { font-size: 0.88rem; vertical-align: middle; }
.table tbody tr:hover { background: var(--light-bg); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: #111827; color: #9ca3af; margin-top: auto; }
.footer-top { padding: 56px 0 40px; }

.footer-brand { display: flex; align-items: center; gap: 10px; }
.brand-name-footer {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem; font-weight: 800; color: white;
}

.footer-heading {
  color: white; font-weight: 700; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: #9ca3af; text-decoration: none;
  font-size: 0.88rem; transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex; gap: 12px;
  margin-bottom: 12px; font-size: 0.88rem;
}
.footer-contact i { color: var(--accent); margin-top: 2px; width: 14px; flex-shrink: 0; }
.footer-contact a { color: #9ca3af; text-decoration: none; }
.footer-contact a:hover { color: var(--accent); }

.social-links { display: flex; gap: 8px; }
.social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af; text-decoration: none; font-size: 0.85rem;
  transition: all .2s;
}
.social-link:hover { background: var(--accent); color: white; }

.trust-badge {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.75rem; color: #9ca3af;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 16px 0;
}
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: #9ca3af; font-size: 0.8rem; text-decoration: none; }
.footer-bottom-links a:hover { color: var(--accent); }

/* =============================================
   PAGE HEROES (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4a7f 100%);
  color: white; padding: 48px 0;
}
.page-hero h1 { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 2rem; margin-bottom: 8px; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.7); text-decoration: none; }
.page-hero .breadcrumb-item.active { color: var(--accent); }
.page-hero .breadcrumb-divider { color: rgba(255,255,255,.4); }

/* =============================================
   UTILITIES
   ============================================= */
.btn-navy {
  background: var(--navy); color: white;
  border: none; border-radius: 8px;
  padding: 10px 22px; font-weight: 600;
  transition: background .2s;
}
.btn-navy:hover { background: var(--navy-light); color: white; }
.btn-outline-navy {
  border: 2px solid var(--navy); color: var(--navy);
  border-radius: 8px; padding: 9px 20px;
  font-weight: 600; background: transparent;
  transition: all .2s;
}
.btn-outline-navy:hover { background: var(--navy); color: white; }

.bg-navy { background: var(--navy) !important; }
.text-accent { color: var(--accent) !important; }
.text-navy { color: var(--navy) !important; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
  .track-input-group { flex-direction: column; }
  .hero { padding: 50px 0 40px; }
  .track-box { max-width: 100%; }
  .admin-sidebar { display: none; }
  .hero-stats { gap: 16px; }
}
@media (max-width: 576px) {
  .topbar { display: none; }
  .hero h1 { font-size: 1.8rem; }
  section { padding: 50px 0; }
  .stat-number { font-size: 2rem; }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp .5s ease forwards; }

/* Tracking search form on track page */
.track-search-form {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(10px);
}
.track-search-form .form-control {
  background: white; border: none;
}
.track-search-form .form-control:focus {
  box-shadow: 0 0 0 3px rgba(244,129,31,.3);
}
