/* ═══════════════════════════════════════════════════════════════════════════
   TOPSTAR COURIER EXPRESS — Public Site CSS
   Color system:
     --orange:   #E84C00  primary / energy
     --navy:     #0D1B2A  authority / depth
     --orange-l: #FF6B2B  lighter orange for hovers
     --gold:     #F5A623  accent highlights
     --light:    #F7F8FA  section backgrounds
     --white:    #FFFFFF
     --text:     #1A1A2E  body text
     --muted:    #6B7280  secondary text
═══════════════════════════════════════════════════════════════════════════ */

:root {
  --orange:   #E84C00;
  --orange-l: #FF6B2B;
  --navy:     #0D1B2A;
  --navy-l:   #152534;
  --gold:     #F5A623;
  --light:    #F7F8FA;
  --white:    #FFFFFF;
  --text:     #1A1A2E;
  --muted:    #6B7280;
  --border:   #E5E7EB;
  --radius:   10px;
  --shadow:   0 4px 24px rgba(0,0,0,.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
}

.section-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 14px 32px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-orange:hover {
  background: var(--orange-l);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 6px;
  padding: 12px 28px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 14px 32px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-navy:hover {
  background: var(--navy-l);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Topbar ──────────────────────────────────────────────────────────────── */
.site-topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  padding: 8px 0;
}
.site-topbar i { color: var(--orange); }
.topbar-admin-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .5px;
}
.topbar-admin-link:hover { color: var(--white); }

/* ── Main Nav ────────────────────────────────────────────────────────────── */
.site-nav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 14px 0;
  transition: all .3s;
}
.site-nav.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.12);
}

.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-logo-img { height: 42px; object-fit: contain; }
.logo-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.1;
}

.site-nav .nav-link {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  letter-spacing: .3px;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--orange);
  background: rgba(232,76,0,.06);
}

.nav-track-btn {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 6px !important;
  padding: 8px 18px !important;
}
.nav-track-btn:hover {
  background: var(--orange-l) !important;
  color: var(--white) !important;
}

/* ── Sections ────────────────────────────────────────────────────────────── */
.section { padding: 90px 0; }
.section-light { background: var(--light); }
.section-navy  { background: var(--navy); }
.section-dark  { background: #0A141F; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://i.imgur.com/UH07Rm0.png');
  background-size: cover;
  background-position: center;
  opacity: .35;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,27,42,.92) 45%, rgba(232,76,0,.25) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,76,0,.15);
  border: 1px solid rgba(232,76,0,.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow span { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; display: block; }
.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

/* Hero tracking bar */
.hero-track-bar {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 24px 28px;
  max-width: 560px;
}
.hero-track-bar h6 {
  color: rgba(255,255,255,.6);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-track-input {
  display: flex;
  gap: 10px;
}
.hero-track-input input {
  flex: 1;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 7px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border .2s;
}
.hero-track-input input::placeholder { color: rgba(255,255,255,.4); }
.hero-track-input input:focus { border-color: var(--orange); }

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-val {
  font-family: 'Barlow', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-val span { color: var(--orange); }
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}

/* ── Services ────────────────────────────────────────────────────────────── */
.service-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-body { padding: 24px; }
.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,76,0,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 14px;
}
.service-body h5 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.service-body p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

/* ── About ───────────────────────────────────────────────────────────────── */
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 500px;
}
.about-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(232,76,0,.35);
  text-align: center;
}
.about-badge-num {
  font-family: 'Barlow', sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}
.about-badge-label { font-size: 12px; opacity: .85; margin-top: 4px; }

.about-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.about-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,76,0,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--orange);
  flex-shrink: 0;
}
.about-feature h6 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.about-feature p  { font-size: 13px; color: var(--muted); margin: 0; }

/* ── Why Us ──────────────────────────────────────────────────────────────── */
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 32px 28px;
  height: 100%;
  transition: background .2s, border-color .2s;
}
.why-card:hover {
  background: rgba(232,76,0,.08);
  border-color: rgba(232,76,0,.3);
}
.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,76,0,.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--orange);
  margin-bottom: 18px;
}
.why-card h5 { color: var(--white); font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.why-card p  { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.7; margin: 0; }

/* ── Stats banner ────────────────────────────────────────────────────────── */
.stats-banner {
  background: var(--orange);
  padding: 56px 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Barlow', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  margin-top: 6px;
  font-weight: 500;
}

/* ── CTA ─────────────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://i.imgur.com/alYd4yA.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.93) 0%, rgba(232,76,0,.7) 100%);
  z-index: 1;
}
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content h2 { color: var(--white); font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }
.cta-content p  { color: rgba(255,255,255,.8); font-size: 17px; max-width: 520px; margin: 0 auto 36px; }

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--orange);
  opacity: .2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }
.testimonial-text  { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-name  { font-weight: 700; font-size: 14px; }
.testimonial-role  { font-size: 12px; color: var(--muted); }

/* ── Tracking page ───────────────────────────────────────────────────────── */
.track-hero {
  position: relative;
  background: var(--navy);
  padding: 80px 0 60px;
  overflow: hidden;
}
.track-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://i.imgur.com/EHcHq5J.png');
  background-size: cover;
  background-position: center;
  opacity: .2;
}
.track-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,.85) 0%, rgba(13,27,42,.95) 100%);
}
.track-hero-content { position: relative; z-index: 2; text-align: center; }
.track-hero-content h1 { color: var(--white); font-size: clamp(30px, 5vw, 52px); margin-bottom: 12px; }
.track-hero-content p  { color: rgba(255,255,255,.7); font-size: 16px; }

.track-box {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  padding: 40px;
  margin-top: -60px;
  position: relative;
  z-index: 3;
}
.track-input-wrap {
  display: flex;
  gap: 12px;
}
.track-input-wrap input {
  flex: 1;
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 16px;
  outline: none;
  transition: border .2s;
  font-family: 'Inter', sans-serif;
}
.track-input-wrap input:focus { border-color: var(--orange); }

/* Tracking result */
.track-result { margin-top: 32px; }
.track-order-header {
  background: var(--navy);
  border-radius: 12px;
  padding: 24px 28px;
  color: var(--white);
  margin-bottom: 24px;
}
.track-order-num {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 800;
}
.track-status-pill {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
}
.status-transit   { background: #FFF4E0; color: #B8860B; }
.status-delivered { background: #E6F9F0; color: #1A9E5F; }
.status-pending   { background: #E8EEF8; color: #0D1B2A; }
.status-failed    { background: #FDECEA; color: #C0392B; }

.track-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.track-info-card {
  background: var(--light);
  border-radius: 10px;
  padding: 18px 20px;
}
.track-info-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin-bottom: 6px; }
.track-info-val   { font-size: 15px; font-weight: 600; color: var(--navy); }

/* Timeline */
.track-timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.track-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.track-timeline li {
  display: flex;
  gap: 16px;
  padding-bottom: 28px;
  position: relative;
}
.track-timeline li:last-child { padding-bottom: 0; }
.tl-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 1;
  border: 3px solid var(--border);
  background: var(--white);
  color: var(--muted);
}
.tl-dot.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(232,76,0,.15);
}
.tl-body { padding-top: 8px; }
.tl-event    { font-weight: 700; font-size: 15px; color: var(--navy); }
.tl-desc     { font-size: 13px; color: var(--muted); margin-top: 2px; }
.tl-location { font-size: 13px; color: var(--muted); margin-top: 4px; }
.tl-time     { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── Contact page ────────────────────────────────────────────────────────── */
.contact-hero {
  position: relative;
  background: var(--navy);
  padding: 80px 0 60px;
  overflow: hidden;
  text-align: center;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://i.imgur.com/f5pwznW.png');
  background-size: cover;
  background-position: center;
  opacity: .2;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,.85);
}
.contact-hero-content { position: relative; z-index: 2; }
.contact-hero-content h1 { color: var(--white); font-size: clamp(30px, 5vw, 52px); }
.contact-hero-content p  { color: rgba(255,255,255,.7); }

.contact-info-card {
  background: var(--navy);
  border-radius: 14px;
  padding: 28px;
  color: var(--white);
  height: 100%;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(232,76,0,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 16px;
}
.contact-info-card h6 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.contact-info-card p  { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.7; margin: 0; }

.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 40px;
}
.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  transition: border .2s;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,76,0,.1);
}
.contact-form-card label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--orange); }
.faq-question {
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--orange); }
.faq-question i { color: var(--orange); flex-shrink: 0; transition: transform .25s; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 22px 18px;
}

/* ── Page hero (about, services) ─────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,76,0,.15) 0%, transparent 70%);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.65); font-size: 16px; }
.breadcrumb-item a { color: rgba(255,255,255,.6); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--orange); }
.breadcrumb-item.active { color: var(--orange); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); }
.footer-top  { padding: 70px 0 50px; }
.footer-brand-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.8; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 16px;
  text-decoration: none;
  transition: all .2s;
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer-heading {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 14px; margin-bottom: 16px; }
.footer-contact i { color: var(--orange); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact span { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.7; }
.footer-bottom {
  background: rgba(0,0,0,.25);
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ── Animations ──────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero { min-height: auto; }
  .hero-stats { gap: 24px; }
  .about-badge { left: 10px; }
  .track-info-grid { grid-template-columns: 1fr; }
  .track-box { padding: 24px 20px; margin-top: -30px; }
  .contact-form-card { padding: 24px 20px; }
  .track-input-wrap { flex-direction: column; }
}

/* ── WhatsApp floating button ─────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 9999;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: #1a1a1a;
  color: #fff;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ── 404 page ─────────────────────────────────────────────────────────────── */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-code {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  opacity: .15;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.error-content { position: relative; z-index: 1; }
.error-content h1 { font-size: clamp(28px, 4vw, 42px); color: var(--navy); margin-bottom: 16px; }
.error-content p  { color: var(--muted); font-size: 16px; max-width: 440px; margin: 0 auto 28px; line-height: 1.7; }

/* ── Google Translate widget ─────────────────────────────────────────────── */
.translate-wrap {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.75);
  font-size: 13px;
}
.translate-wrap i { font-size: 14px; }

/* Hide Google's default top banner */
body > .skiptranslate { display: none !important; }
.goog-te-banner-frame  { display: none !important; }
body { top: 0 !important; }

/* Style the select dropdown to match topbar */
#google_translate_element .goog-te-gadget-simple {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.25) !important;
  border-radius: 6px !important;
  padding: 3px 8px !important;
  font-size: 12px !important;
}
#google_translate_element .goog-te-gadget-simple .goog-te-menu-value span {
  color: rgba(255,255,255,.85) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
}
#google_translate_element .goog-te-gadget-simple .goog-te-menu-value span:last-child {
  color: rgba(255,255,255,.4) !important;
}
#google_translate_element .goog-te-gadget-simple img { display: none !important; }

/* Dropdown menu */
.goog-te-menu-frame { box-shadow: 0 8px 32px rgba(0,0,0,.15) !important; border-radius: 10px !important; }