/* ============================================================
   LASER EXPRESS LOGISTICS — STYLESHEET
   ============================================================ */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: "Inter", "Roboto", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
  background: #fff;
  margin: 0;
  font-weight: 400;
}
a { color: #ff7719; text-decoration: none; outline: none; }
a:hover, a:focus { color: #36b1ca; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; border: 0; }
ul, ol { margin: 0 0 14px; padding: 0; list-style: none; }
p { margin: 0 0 14px; line-height: 1.75; color: #555; }

/* ===== HEADINGS ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a2e;
  margin-top: 0;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
h1 { font-size: 38px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.15; }
h2 { font-size: 30px; font-weight: 700; }
h3 { font-size: 22px; font-weight: 700; }
h4 { font-size: 18px; font-weight: 600; }
h5 { font-size: 15px; font-weight: 600; }
h6 { font-size: 13px; font-weight: 600; }

hr { margin: 24px 0; border: 0; border-top: 1px solid #eee; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ===== CONTAINER & GRID ===== */
.container {
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
@media (min-width: 768px)  { .container { width: 750px; } }
@media (min-width: 992px)  { .container { width: 970px; } }
@media (min-width: 1200px) { .container { width: 1170px; } }
.container::after, .row::after { content: ''; display: table; clear: both; }

.row { margin: 0 -15px; }
.row::before, .row::after { content: ' '; display: table; }
.row::after { clear: both; }

[class*="col-"] { position: relative; min-height: 1px; padding: 0 15px; float: left; }
.col-sm-3  { width: 25%; }
.col-sm-4  { width: 33.333%; }
.col-sm-6  { width: 50%; }
.col-sm-8  { width: 66.666%; }
.col-sm-9  { width: 75%; }
.col-sm-12 { width: 100%; }
.col-md-12 { width: 100%; }
.col-sm-offset-2 { margin-left: 16.666%; }
@media (max-width: 767px) {
  [class*="col-"] { width: 100%; float: none; }
  .col-sm-offset-2 { margin-left: 0; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  font-family: "Inter", "Roboto", Helvetica, Arial, sans-serif;
}
.btn:hover { text-decoration: none; }
.btn-primary { color: #fff; background: #ff7719; border-color: #ff7719; }
.btn-primary:hover { color: #fff; background: #bd4f03; border-color: #bd4f03; }
.btn-secondary { color: #fff; background: #09397a; border-color: #09397a; }
.btn-secondary:hover { color: #fff; background: #849cbc; border-color: #849cbc; }
.btn-info { color: #fff; background: #36b1ca; border-color: #36b1ca; }
.btn-info:hover { color: #fff; background: #2a8fa3; border-color: #2a8fa3; }

/* ===== HELPERS ===== */
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }
.margin-bottom-30 { margin-bottom: 30px; }
.margin-bottom-60 { margin-bottom: 60px; }
.clearfix::after { content: ''; display: table; clear: both; }

/* ===== TOP BAR ===== */
.top {
  background: #1a1a1a;
  color: #9ca3af;
  font-size: 12px;
  padding: 9px 0;
  letter-spacing: 0.3px;
  display: none; /* removed — login/register moved to nav */
}
.top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.top__tagline {
  color: #9ca3af;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  flex: 1;
}
.top__menu { margin-left: auto; }
.top__menu ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.top__menu a {
  color: #aaa;
  font-size: 12px;
  padding: 3px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  transition: all 0.2s;
  display: inline-block;
}
.top__menu a:hover { color: #fff; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); }

/* ===== HEADER ===== */
.header__container {
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
  /* needed so the full-width dropdown positions relative to this */
  isolation: isolate;
}
.header__inner {
  width: 100%;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.header {
  display: flex;
  align-items: center;
  padding: 12px 0;
  gap: 20px;
  flex-wrap: wrap;
  overflow: visible;
}
.header__logo { flex-shrink: 0; }
.header__logo img { height: 50px; width: auto; }
.header__navigation { flex: 1; overflow: visible; }
.header__widgets {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 16px;
}
.header__widgets-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.header__widgets .btn { margin-left: auto; }
.header__navigation-widgets {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header__navigation-widgets a { color: #aaa; font-size: 16px; }
.header__navigation-widgets a:hover { color: #ff7719; }

/* ICON BOXES IN HEADER */
.widget-icon-box { display: flex; align-items: center; }
.icon-box { display: flex; align-items: center; gap: 10px; }
.icon-box i { font-size: 20px; color: #ff7719; }
.icon-box__title {
  font-size: 10px;
  color: #999;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  display: block;
}
.icon-box__subtitle {
  font-size: 13px;
  color: #1a1a2e;
  font-weight: 700;
  display: block;
  letter-spacing: -0.2px;
}

/* MOBILE TOGGLE */
.navbar-toggle {
  display: none;
  background: none;
  border: 1px solid #ddd;
  padding: 6px 8px;
  cursor: pointer;
  border-radius: 4px;
  margin-left: auto;
}
.navbar-toggle__text { font-size: 10px; color: #555; display: block; text-transform: uppercase; letter-spacing: 1px; }
.navbar-toggle__icon-bar { display: block; }
.icon-bar { display: block; width: 20px; height: 2px; background: #555; margin: 3px 0; border-radius: 1px; }

/* MAIN NAVIGATION */
.main-navigation {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: visible;
}
.main-navigation > li { position: relative; }
.main-navigation > li > a {
  display: block;
  padding: 10px 13px;
  color: #2d2d2d;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  transition: color 0.2s;
  font-family: "Inter", "Roboto", Helvetica, Arial, sans-serif;
}
.main-navigation > li > a:hover,
.main-navigation > li.active > a { color: #ff7719; }

/* DROPDOWN */
.main-navigation .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 210px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  z-index: 999;
  border-top: 3px solid #ff7719;
  list-style: none;
  margin: 0;
  padding: 6px 0;
}
.main-navigation .sub-menu li a {
  display: block;
  padding: 10px 18px;
  color: #444;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid #f5f5f5;
  text-transform: none;
  letter-spacing: 0.2px;
  transition: all 0.15s;
}
.main-navigation .sub-menu li:last-child a { border-bottom: none; }
.main-navigation .sub-menu li a:hover { background: #ff7719; color: #fff; padding-left: 22px; }
.main-navigation li:hover .sub-menu { display: block; }

@media (max-width: 991px) {
  .navbar-toggle { display: block; }
  .header__navigation { width: 100%; order: 10; }
  .main-navigation {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    align-items: flex-start;
  }
  .main-navigation.open { display: flex; }
  .main-navigation > li { width: 100%; }
  .main-navigation > li > a { padding: 12px 16px; border-bottom: 1px solid #f0f0f0; }
  .main-navigation .sub-menu { position: static; box-shadow: none; border-top: none; background: #f9f9f9; }
  .main-navigation li:hover .sub-menu { display: none; }
  .main-navigation li.open .sub-menu { display: block; }
  .header__widgets { display: none; }
  .header__navigation-widgets { display: none; }
}

/* ===== JUMBOTRON / SLIDER ===== */
.jumbotron { position: relative; overflow: hidden; }
.jumbotron--with-captions { min-height: 0; }
.carousel { position: relative; }
.carousel-inner { position: relative; overflow: hidden; }
.carousel-inner .item { display: none; position: relative; }
.carousel-inner .item.active { display: block; }
.carousel-inner img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* dark overlay on every slide for text legibility */
.carousel-inner .item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.1) 100%
  );
  pointer-events: none;
}
/* content sits on top of overlay */
.carousel-inner .item .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.jumbotron-content {
  max-width: 620px;
  padding: 0 20px;
  color: #fff;
}
.jumbotron-content__title h1 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.jumbotron-content__description p {
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  max-width: 520px;
}
.jumbotron-content__description .btn {
  margin-right: 10px;
  margin-bottom: 8px;
}
/* carousel arrows */
.jumbotron__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  color: #fff;
  padding: 14px 18px;
  font-size: 26px;
  z-index: 10;
  transition: background 0.2s;
  line-height: 1;
  cursor: pointer;
}
.jumbotron__control:hover { background: #ff7719; color: #fff; }
.jumbotron__control.left  { left: 20px; }
.jumbotron__control.right { right: 20px; }

/* ── TABLET (≤991px) ── */
@media (max-width: 991px) {
  .carousel-inner img { height: 400px; }
  .jumbotron-content__title h1 { font-size: 28px; }
  .jumbotron-content__description p { font-size: 14px; }
}

/* ── MOBILE (≤767px) ── */
@media (max-width: 767px) {
  .carousel-inner img { height: 300px; }
  /* anchor content to bottom-left on mobile */
  .carousel-inner .item .container {
    align-items: flex-end;
    padding-bottom: 24px;
  }
  .jumbotron-content { padding: 0 16px; max-width: 100%; }
  .jumbotron-content__title h1 {
    font-size: 20px;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  .jumbotron-content__description p {
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .jumbotron-content__description .btn {
    padding: 8px 16px;
    font-size: 12px;
    margin-right: 6px;
    margin-bottom: 0;
  }
  .jumbotron__control { padding: 10px 13px; font-size: 18px; }
  .jumbotron__control.left  { left: 8px; }
  .jumbotron__control.right { right: 8px; }
}

/* ── SMALL PHONES (≤480px) ── */
@media (max-width: 480px) {
  .carousel-inner img { height: 240px; }
  .carousel-inner .item .container { padding-bottom: 16px; }
  .jumbotron-content__title h1 { font-size: 16px; margin-bottom: 6px; }
  .jumbotron-content__description p { font-size: 12px; margin-bottom: 10px; -webkit-line-clamp: 2; line-clamp: 2; }
  .jumbotron-content__description .btn { padding: 7px 14px; font-size: 11px; }
  /* hide second button on very small screens to avoid crowding */
  .jumbotron-content__description .btn + .btn { display: none; }
}

/* ===== JUMBOTRON OVERLAP (4-col boxes below slider) ===== */
.jumbotron-overlap {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding: 30px 0;
  margin-bottom: 40px;
}
.jumbotron-overlap.first { border-top: 4px solid #ff7719; }

/* FEATURED (orange) WIDGET */
.featured-widget {
  background: #ff7719;
  color: #fff;
  padding: 24px;
  height: 100%;
}
.featured-widget h3.widget-title {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 10px;
  margin-bottom: 14px;
  margin-top: 0;
}
.featured-widget p { color: rgba(255,255,255,0.9); font-size: 13px; }
.featured-widget .read-more { color: #fff; font-weight: bold; text-transform: uppercase; font-size: 12px; border-bottom: 1px solid rgba(255,255,255,0.5); }
.featured-widget .read-more:hover { color: rgba(255,255,255,0.8); }

/* POST IMAGE BOXES */
.post-image { width: 100%; height: 170px; object-fit: cover; margin-bottom: 12px; }
.page-box__title { font-size: 14px; text-transform: uppercase; color: #1a1a2e; margin: 10px 0 6px; font-weight: 700; letter-spacing: 0.3px; }
.page-box__title a { color: #1a1a2e; }
.page-box__title a:hover { color: #ff7719; }
.read-more { color: #ff7719; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }
.read-more:hover { color: #bd4f03; }

/* ===== WIDGET TITLE ===== */
.widget-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a2e;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #eee;
  margin-top: 0;
  letter-spacing: 0.5px;
}
.widget-title.big.lined {
  position: relative;
  text-align: center;
  margin: 36px 0 28px;
  border-bottom: none;
  padding-bottom: 0;
}
.widget-title.big.lined span {
  background: #fff;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1a2e;
}
.widget-title.big.lined::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #ddd;
}

/* ===== OUR SERVICES ICON BOXES ===== */
.widget_pw_icon_box .icon-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border: 1px solid #eee;
  border-bottom: 2px solid #d0d0d0;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  border-radius: 2px;
}
.widget_pw_icon_box .icon-box:hover { border-bottom-color: #ff7719; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.widget_pw_icon_box .icon-box i { font-size: 36px; color: #d0d0d0; flex-shrink: 0; margin-top: 2px; transition: color 0.2s; }
.widget_pw_icon_box .icon-box:hover i { color: #ff7719; }
.widget_pw_icon_box .icon-box__title {
  font-size: 13px;
  color: #1a1a2e;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 5px;
  display: block;
  letter-spacing: 0.4px;
}
.widget_pw_icon_box .icon-box__subtitle { font-size: 13px; color: #777; display: block; line-height: 1.6; }

/* ===== CTA BAND ===== */
.cta { background: #09397a; padding: 36px 0; }
.call-to-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.call-to-action__text {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

/* ===== NEWS SECTION ===== */
.news { padding: 56px 0; background: #f9f9f9; }

/* news card wrapper */
.latest-news {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  margin-bottom: 16px;
}
.latest-news:hover { text-decoration: none; }
.latest-news:hover .latest-news__content,
.latest-news:hover.latest-news--more-news { background: #f0f0f0; }

/* image */
.latest-news img { width: 100%; height: 180px; object-fit: cover; display: block; }

/* date badge — absolute over image */
.latest-news__date {
  position: absolute;
  right: 10px;
  top: 10px;
  background: #ff7719;
  color: #fff;
  padding: 7px 8px;
  line-height: 1;
  text-align: center;
  min-width: 44px;
  z-index: 2;
}
.latest-news__date::after {
  position: absolute;
  content: '';
  right: 0;
  bottom: -9px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 9px 10px 0 0;
  border-color: #bf1926 transparent transparent transparent;
}
.latest-news__date__month { font-size: 10px; text-transform: uppercase; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 3px; }
.latest-news__date__day { font-size: 20px; font-weight: 800; line-height: 1; }

/* content block below image */
.latest-news__content {
  display: block;
  background: #fff;
  padding: 16px 18px 14px;
  transition: background 0.15s;
}
.latest-news__title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 6px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.latest-news:hover .latest-news__title { color: #ff7719; }
.latest-news__author { font-size: 12px; color: #999; font-style: italic; }

/* inline list style (3rd column) */
.latest-news--inline {
  display: block;
  margin-bottom: 0;
}
.latest-news--inline .latest-news__content {
  padding: 14px 18px;
  border-bottom: 1px solid #eee;
}
.latest-news--inline .latest-news__title { font-size: 13px; text-transform: none; }

/* more news link */
.latest-news--more-news {
  display: block;
  background: #fff;
  padding: 14px 18px;
  color: #ff7719;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: background 0.15s;
}
.latest-news--more-news:hover { background: #f0f0f0; color: #bd4f03; }

/* ===== VALUES SECTION ===== */
.values { padding: 56px 0; }
.values h3 { text-align: center; text-transform: uppercase; color: #1a1a2e; font-size: 22px; letter-spacing: 0.5px; }
.values .text-center span { color: #999; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.hr-quote { border-top: 2px solid #ff7719; width: 60px; margin: 18px auto; }
.values p.text-center { font-size: 15px; color: #555; line-height: 1.85; max-width: 680px; margin: 0 auto 14px; }

/* ===== QUICK QUOTE FORM ===== */
.featured-widget .form-control {
  display: block;
  width: 100%;
  height: 36px;
  padding: 6px 12px;
  font-size: 13px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  color: #fff;
  margin-bottom: 10px;
}
.featured-widget .form-control::placeholder { color: rgba(255,255,255,0.7); }
.featured-widget .form-control:focus { outline: none; border-color: rgba(255,255,255,0.7); }
.featured-widget select.form-control option { color: #333; background: #fff; }
.featured-widget textarea.form-control { height: auto; resize: vertical; }

/* ===== PAGE TITLE / BREADCRUMB ===== */
.main-title {
  background: #f5f7fa;
  padding: 28px 0;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 44px;
}
.main-title h1 {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: #1a1a2e;
  margin: 0 0 6px;
  letter-spacing: 0.3px;
}
.breadcrumbs { font-size: 12px; color: #999; letter-spacing: 0.3px; }
.breadcrumbs a { color: #999; }
.breadcrumbs a:hover { color: #ff7719; }
.breadcrumbs .separator { margin: 0 6px; }

/* ===== FOOTER ===== */
.footer { background: #1a1a1a; color: #9ca3af; padding: 56px 0 0; }
.footer__logo { margin-bottom: 16px; }
.footer__logo img { height: 40px; }
.footer__description { font-size: 13px; line-height: 1.8; margin-bottom: 20px; color: #9ca3af; }
.footer__title {
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #2d2d2d;
  letter-spacing: 1.2px;
  font-weight: 700;
}
.footer__links { list-style: none; margin: 0; padding: 0; }
.footer__links li { margin-bottom: 9px; }
.footer__links a { color: #9ca3af; font-size: 13px; transition: color 0.2s; font-weight: 400; }
.footer__links a:hover { color: #ff7719; }
.footer__links a::before { content: '› '; color: #ff7719; }
.footer__contact-item { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer__contact-item i { color: #ff7719; font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.footer__contact-item span { font-size: 13px; color: #9ca3af; line-height: 1.6; }
.footer__social { display: flex; gap: 8px; margin-top: 16px; }
.footer__social a {
  width: 34px; height: 34px;
  background: #2d2d2d;
  color: #9ca3af;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s;
}
.footer__social a:hover { background: #ff7719; color: #fff; }
.footer__bottom {
  background: #111;
  padding: 18px 0;
  margin-top: 48px;
  text-align: center;
  font-size: 12px;
  color: #555;
  letter-spacing: 0.3px;
}
.footer__bottom a { color: #ff7719; }

/* ===== PARTNERS STRIP ===== */
.partners { padding: 30px 0; background: #fff; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.partners__grid { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.partners__grid img { height: 40px; width: auto; opacity: 0.6; filter: grayscale(100%); transition: all 0.2s; object-fit: contain; }
.partners__grid img:hover { opacity: 1; filter: none; }

/* ===== TRACKING PAGE ===== */
.tracking-section { padding: 50px 0; }
.tracking-form-box {
  background: #fff;
  border: 1px solid #eee;
  border-top: 4px solid #ff7719;
  padding: 30px;
  margin-bottom: 30px;
}
.tracking-form-box h3 { color: #333; text-transform: uppercase; margin-bottom: 20px; }
.tracking-form-box .form-control {
  display: block;
  width: 100%;
  height: 42px;
  padding: 8px 14px;
  font-size: 14px;
  color: #555;
  background: #f5f5f5;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.2s;
}
.tracking-form-box .form-control:focus { border-color: #ff7719; background: #fff; }
.track-result-box {
  background: #fff;
  border: 1px solid #eee;
  border-top: 4px solid #09397a;
  padding: 30px;
  display: none;
}
.track-result-box.show { display: block; }
.track-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f5f5;
  padding: 16px 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.track-status-bar h4 { margin: 0; color: #333; font-size: 16px; }
.status-pill {
  padding: 5px 14px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-transit   { background: #fff3cd; color: #856404; }
.status-delivered { background: #d4edda; color: #155724; }
.status-pending   { background: #cce5ff; color: #004085; }
.track-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}
.track-info-item label { font-size: 11px; text-transform: uppercase; color: #aaa; letter-spacing: 0.5px; display: block; margin-bottom: 4px; }
.track-info-item span { font-size: 14px; color: #333; font-weight: 500; }
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: #eee; }
.timeline-event { position: relative; padding-bottom: 20px; }
.timeline-event::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #eee;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #eee;
}
.timeline-event.current::before { background: #ff7719; box-shadow: 0 0 0 3px rgba(255,119,25,0.2); }
.timeline-event h5 { font-size: 14px; color: #333; margin: 0 0 3px; }
.timeline-event p  { font-size: 12px; color: #aaa; margin: 0; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 56px 0; }
.contact-form-box {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-top: 4px solid #ff7719;
  padding: 32px;
}
.contact-form-box h3 { color: #1a1a2e; text-transform: uppercase; margin-bottom: 24px; font-size: 16px; letter-spacing: 0.5px; }
.contact-info-box { padding: 28px; background: #f9f9f9; border: 1px solid #eee; height: 100%; }
.contact-info-box h3 { color: #1a1a2e; text-transform: uppercase; margin-bottom: 24px; font-size: 16px; letter-spacing: 0.5px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info-item i { font-size: 18px; color: #ff7719; flex-shrink: 0; margin-top: 2px; }
.contact-info-item h5 { font-size: 11px; text-transform: uppercase; color: #1a1a2e; margin: 0 0 4px; letter-spacing: 0.8px; font-weight: 700; }
.contact-info-item p { font-size: 13px; color: #666; margin: 0; line-height: 1.65; }

/* ===== FORMS ===== */
.form-control {
  display: block;
  width: 100%;
  height: 40px;
  padding: 8px 14px;
  font-size: 14px;
  color: #333;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: "Inter", "Roboto", Helvetica, Arial, sans-serif;
}
.form-control:focus { border-color: #ff7719; background: #fff; }
textarea.form-control { height: auto; resize: vertical; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; color: #444; margin-bottom: 5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-box { padding: 24px; background: #f9f9f9; border: 1px solid #eee; height: 100%; }
.contact-info-box h3 { color: #333; text-transform: uppercase; margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-info-item i { font-size: 20px; color: #ff7719; flex-shrink: 0; margin-top: 2px; }
.contact-info-item h5 { font-size: 13px; text-transform: uppercase; color: #333; margin: 0 0 4px; }
.contact-info-item p { font-size: 13px; color: #aaa; margin: 0; line-height: 1.6; }

/* ===== ABOUT PAGE ===== */
.about-section { padding: 50px 0; }
.about-img { width: 100%; height: 300px; object-fit: cover; }
.team-member { text-align: center; margin-bottom: 30px; }
.team-member img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; border: 4px solid #ff7719; }
.team-member h4 { color: #333; font-size: 15px; margin-bottom: 4px; }
.team-member p { font-size: 13px; color: #aaa; }

/* ===== SERVICES PAGE ===== */
.service-section { padding: 50px 0; border-bottom: 1px solid #eee; }
.service-section:last-child { border-bottom: none; }
.service-section h2 { color: #333; text-transform: uppercase; margin-bottom: 16px; font-size: 22px; }
.service-section p { color: #aaa; line-height: 1.8; }
.service-section ul { list-style: none; padding: 0; margin-bottom: 20px; }
.service-section ul li { padding: 6px 0; color: #555; font-size: 14px; border-bottom: 1px solid #f0f0f0; display: flex; gap: 8px; }
.service-section ul li::before { content: '✓'; color: #ff7719; font-weight: bold; flex-shrink: 0; }
.service-img-box { background: #f5f5f5; height: 260px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.service-img-box img { width: 100%; height: 100%; object-fit: cover; }
.service-img-box i { font-size: 80px; color: #ddd; }

/* ===== AUTH PAGES ===== */
.auth-page { min-height: 100vh; background: #f5f5f5; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-box {
  background: #fff;
  border: 1px solid #eee;
  border-top: 4px solid #ff7719;
  padding: 40px;
  width: 100%;
  max-width: 460px;
}
.auth-box h2 { color: #333; text-transform: uppercase; text-align: center; margin-bottom: 6px; font-size: 22px; }
.auth-box .auth-sub { text-align: center; color: #aaa; font-size: 13px; margin-bottom: 28px; }
.auth-box .logo-wrap { text-align: center; margin-bottom: 20px; }
.auth-box .logo-wrap img { height: 44px; margin: 0 auto; }
.auth-footer { text-align: center; margin-top: 16px; font-size: 13px; color: #aaa; }
.auth-footer a { color: #ff7719; }
.divider { text-align: center; color: #aaa; font-size: 12px; margin: 18px 0; position: relative; }
.divider::before, .divider::after { content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: #eee; }
.divider::before { left: 0; }
.divider::after  { right: 0; }

/* ===== DASHBOARD ===== */
.dashboard-layout { display: flex; min-height: 100vh; }
.sidebar {
  width: 240px;
  background: #1a1a1a;
  color: #aaa;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.sidebar-logo {
  padding: 20px;
  border-bottom: 1px solid #333;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sidebar-logo img { height: 36px; }
.sidebar-nav { padding: 10px 0; flex: 1; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  color: #aaa;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  border-left: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-left-color: #ff7719;
}
.sidebar-nav a i { width: 16px; text-align: center; font-size: 13px; }
.sidebar-section {
  padding: 12px 20px 4px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #555;
  font-weight: 700;
}
.dashboard-main { flex: 1; background: #f5f5f5; overflow-y: auto; min-width: 0; }
.dashboard-header {
  background: #fff;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.dashboard-header h2 { font-size: 18px; color: #333; margin: 0; text-transform: uppercase; }
.dashboard-content { padding: 24px; }
.stats-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.stat-card {
  background: #fff;
  border: 1px solid #eee;
  border-top: 3px solid #ff7719;
  padding: 20px;
}
.stat-card .stat-icon { font-size: 28px; color: #ff7719; margin-bottom: 10px; }
.stat-card h3 { font-size: 28px; font-weight: 700; color: #333; margin-bottom: 4px; }
.stat-card p  { font-size: 12px; color: #aaa; margin: 0; text-transform: uppercase; letter-spacing: 0.5px; }
.icon-red    { color: #ff7719 !important; }
.icon-blue   { color: #09397a !important; }
.icon-green  { color: #57ad68 !important; }
.icon-yellow { color: #f0ad4e !important; }
.data-table { background: #fff; border: 1px solid #eee; }
.data-table-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  background: #f9f9f9;
}
.data-table-header h3 { font-size: 14px; color: #333; margin: 0; text-transform: uppercase; letter-spacing: 0.5px; }
table { width: 100%; border-collapse: collapse; }
table th {
  background: #f5f5f5;
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #aaa;
  font-weight: 700;
  border-bottom: 1px solid #eee;
}
table td { padding: 12px 14px; font-size: 13px; border-bottom: 1px solid #f0f0f0; color: #555; }
table tr:last-child td { border-bottom: none; }
table tr:hover td { background: #fafafa; }
.badge { display: inline-block; padding: 3px 8px; border-radius: 3px; font-size: 11px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-transit   { background: #fff3cd; color: #856404; }
.badge-delivered { background: #d4edda; color: #155724; }
.badge-pending   { background: #cce5ff; color: #004085; }
.badge-cancelled { background: #f8d7da; color: #721c24; }

/* ===== FAQ ===== */
.faq-item { border: 1px solid #eee; margin-bottom: 8px; }
.faq-question {
  padding: 14px 18px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  background: #f9f9f9;
  transition: background 0.2s;
  user-select: none;
}
.faq-question:hover { background: #f0f0f0; }
.faq-icon { color: #ff7719; font-size: 18px; flex-shrink: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s;
  color: #aaa;
  font-size: 14px;
  line-height: 1.7;
  padding: 0 18px;
}
.faq-answer.open { max-height: 400px; padding: 14px 18px 18px; border-top: 1px solid #eee; }
.faq-answer a { color: #ff7719; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .stats-cards { grid-template-columns: 1fr 1fr; }
  .dashboard-layout { flex-direction: column; }
  .sidebar { width: 100%; }
  .sidebar-nav { display: flex; flex-wrap: wrap; padding: 8px; }
  .sidebar-nav a { padding: 8px 12px; border-left: none; border-bottom: 2px solid transparent; font-size: 12px; }
  .sidebar-nav a.active { border-left: none; border-bottom-color: #ff7719; }
  .sidebar-section { display: none; }
  .jumbotron-overlap { margin-top: 0 !important; }
  .call-to-action { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .stats-cards { grid-template-columns: 1fr 1fr; }
}

/* ===== TESTIMONIALS (original CargoPress style) ===== */
.testimonials {
  padding: 64px 0;
  background: #eeeeee;
}
.testimonials .widget-title.lined > span {
  background: #eeeeee;
}
.testimonial { margin-bottom: 30px; }
.testimonial .widget-title {
  float: left;
  margin-top: 10px;
  margin-bottom: 30px;
  width: calc(100% - 132px);
  border-bottom: 2px solid #ccc;
}
@media (min-width: 992px) { .testimonial .widget-title { margin-top: 0; } }
.testimonial__carousel { float: right; padding-top: 0; position: relative; top: -18px; }
.testimonial__carousel--left,
.testimonial__carousel--right {
  display: inline-block;
  text-align: center;
  background-color: #ffffff;
  color: #aaaaaa;
  margin-left: 10px;
  transition: all 100ms ease-out;
  height: 40px; width: 40px;
  font-size: 18px; line-height: 40px;
  cursor: pointer; border: none;
}
.testimonial__carousel--left:hover,
.testimonial__carousel--right:hover { color: #033155; }
.testimonial .carousel-inner { clear: both; }
.testimonial__quote {
  position: relative;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 22px 18px 22px 48px;
  margin-bottom: 30px;
  font-size: 14px;
  min-height: 80px;
  margin-top: 30px;
  color: #555;
  line-height: 1.8;
  font-style: italic;
}
@media (min-width: 992px) { .testimonial__quote { margin-top: 0; } }
.testimonial__quote::before {
  position: absolute;
  content: '\201C';
  font-family: Georgia, "Times New Roman", serif;
  top: 20px; left: 0;
  background-color: #ff7719;
  color: #ffffff;
  width: 32px;
  height: calc(100% - 40px);
  font-size: 44px;
  text-align: center;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  line-height: 60px;
}
.testimonial__quote::after {
  position: absolute;
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #ffffff transparent transparent transparent;
  bottom: -20px; left: 32px;
}
.testimonial__author {
  font-size: 14px;
  color: #1a1a2e;
  font-weight: 700;
  margin-top: 30px;
  display: block;
  letter-spacing: 0.2px;
}
.testimonial__author-description {
  color: #999;
  font-weight: 400;
  font-style: italic;
  display: inline-block;
  margin-left: 6px;
  font-size: 13px;
}
.testimonial blockquote { padding: 0; margin: 0; border-left: 0; }
@media (min-width: 992px) { .testimonial__quote { margin-top: 0; } }
.testimonial__quote::before {
  position: absolute;
  content: '\201C';
  font-family: Georgia, "Times New Roman", serif;
  top: 24px;
  left: 0;
  background-color: #ff7719;
  color: #ffffff;
  width: 30px;
  height: calc(100% - 46px);
  font-size: 40px;
  text-align: center;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  line-height: 56px;
}
.testimonial__quote::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #ffffff transparent transparent transparent;
  bottom: -20px;
  left: 30px;
}
.testimonial__author {
  font-size: 15px;
  color: #033155;
  font-weight: bold;
  margin-top: 28px;
  display: block;
}
.testimonial__author-description {
  color: #aaaaaa;
  font-weight: normal;
  font-style: italic;
  display: inline-block;
  margin-left: 6px;
}
.testimonial blockquote {
  padding: 0;
  margin: 0;
  border-left: 0;
}

/* ===== PARTNERS / LOGO PANEL (original CargoPress style) ===== */
.partners-section {
  padding: 40px 0;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
.partners-section .widget-title.big.lined > span {
  background: #ffffff;
}
.logo-panel {
  text-align: center;
}
.logo-panel img {
  display: inline-block;
  margin: 10px auto;
  border: 1px solid #e6e6e6;
  border-bottom: 2px solid #b9babc;
  border-radius: 2px;
  transition: all 100ms ease-out;
  opacity: 0.6;
  max-height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.logo-panel img:hover {
  box-shadow: 0 6px 9px rgba(0,0,0,0.1);
  border-bottom: 2px solid #ff7719;
  opacity: 1;
}

/* ===== NUMBER COUNTERS (original CargoPress style) ===== */
.counters {
  padding: 60px 0;
  background-color: #1a1a2e;
  background-image: url('images/slider_2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.counters::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9, 57, 122, 0.82);
}
.counters .container { position: relative; z-index: 1; }
.widget-number-counters {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
@media (min-width: 768px) {
  .widget-number-counters { flex-direction: row; }
}
.number-counter {
  flex-grow: 1;
  text-align: center;
  transition: all 100ms ease-out;
  background-color: #ffffff;
  position: relative;
  padding: 28px 20px 22px;
  border-bottom: 1px dashed rgba(0,0,0,0.2);
}
@media (min-width: 768px) {
  .number-counter {
    border-right: 1px dashed rgba(0,0,0,0.2);
    border-bottom: 0;
  }
}
.number-counter:last-of-type { border-right: 0; border-bottom: 0; }
.number-counter__icon {
  color: #ff7719;
  margin-right: 10px;
  vertical-align: middle;
  transition: all 100ms ease-out;
  font-size: 36px;
}
.number-counter__number {
  vertical-align: middle;
  display: inline-block;
  font-size: 44px;
  color: #033155;
  font-weight: 700;
  transition: all 100ms ease-out;
  line-height: 1;
}
.number-counter__title {
  font-size: 14px;
  color: #aaaaaa;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   MOBILE RESPONSIVE — COMPREHENSIVE FIX
   All breakpoints: 991px (tablet), 767px (mobile), 480px (small)
   ============================================================ */

/* ===== TABLET (≤991px) ===== */
@media (max-width: 991px) {

  /* TOP BAR */
  .top__tagline { font-size: 11px; letter-spacing: 0.5px; }

  /* HEADER — show toggle, hide widgets */
  .navbar-toggle { display: flex; align-items: center; gap: 8px; margin-left: auto; }
  .header { padding: 6px 0; flex-wrap: wrap; }
  .header__logo { display: flex; align-items: center; width: 100%; justify-content: space-between; }
  .header__logo img { height: 36px; }
  .header__navigation { width: 100%; order: 3; position: relative; }
  .header__widgets-info,
  .header__navigation-widgets,
  .header__widgets { display: none !important; }

  /* NAV DROPDOWN — overlays content, does not push it down */
  .main-navigation {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-top: 2px solid #ff7719;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  .main-navigation.open { display: flex; }
  .main-navigation > li { width: 100%; border-bottom: 1px solid #f0f0f0; }
  .main-navigation > li > a { padding: 13px 16px; font-size: 13px; }
  .main-navigation .sub-menu { position: static; box-shadow: none; border-top: none; background: #f9f9f9; display: none; }
  .main-navigation li.open .sub-menu { display: block; }
  .main-navigation li:hover .sub-menu { display: none; }
  .main-navigation li.open:hover .sub-menu { display: block; }

  /* SLIDER — handled in main slider block above */

  /* OVERLAP BOXES */
  .jumbotron-overlap { margin-top: 0 !important; }

  /* STATS CARDS */
  .stats-cards { grid-template-columns: repeat(2, 1fr); }

  /* DASHBOARD */
  .sidebar { width: 200px; }
}

/* ===== MOBILE (≤767px) ===== */
@media (max-width: 767px) {

  /* TOP BAR */
  .top .container { flex-direction: column; align-items: flex-start; gap: 6px; padding: 8px 15px; }
  .top__tagline { font-size: 10px; }
  .top__menu { margin-left: 0; width: 100%; }
  .top__menu ul { gap: 6px; }
  .top__menu a { padding: 3px 10px; font-size: 11px; }

  /* HEADER */
  .header { padding: 10px 0; }
  .header__logo img { height: 40px; }

  /* SLIDER — handled in main slider block above */
  .jumbotron__control.right { right: 6px; }

  /* OVERLAP BOXES — stack cleanly, no gap */
  .jumbotron--with-captions { min-height: 0; }
  .jumbotron-overlap { margin-top: 0 !important; padding: 20px 0; box-shadow: none; border-top: 4px solid #ff7719; }
  .jumbotron-overlap .col-sm-3 { margin-bottom: 20px; }
  .jumbotron-overlap .col-sm-3:last-child { margin-bottom: 0; }
  .jumbotron { margin-bottom: 0; }
  .featured-widget { padding: 20px; }

  /* GRID — all cols stack */
  [class*="col-"] { width: 100%; float: none; padding: 0 15px; }
  .col-sm-offset-2 { margin-left: 0; }

  /* WIDGET TITLE */
  .widget-title.big.lined { margin: 20px 0 16px; }
  .widget-title.big.lined span { font-size: 16px; }

  /* SERVICES ICON BOXES */
  .widget_pw_icon_box { margin-bottom: 12px !important; }
  .widget_pw_icon_box .icon-box { padding: 14px; gap: 12px; }
  .widget_pw_icon_box .icon-box i { font-size: 26px; }
  .widget_pw_icon_box .icon-box__title { font-size: 13px; }

  /* CTA */
  .cta { padding: 20px 0; }
  .call-to-action { flex-direction: column; text-align: center; gap: 12px; }
  .call-to-action__text { font-size: 15px; }

  /* NEWS */
  .news { padding: 30px 0; }
  .latest-news img { height: 160px; }
  .latest-news__title { font-size: 13px; }

  /* VALUES */
  .values { padding: 30px 0; }
  .values h3 { font-size: 18px; }

  /* ABOUT + QUICK QUOTE */
  .margin-bottom-60 { margin-bottom: 30px; }
  .margin-bottom-30 { margin-bottom: 16px; }

  /* TESTIMONIALS */
  .testimonials { padding: 30px 0; }
  .testimonial__quote { padding: 16px 12px 16px 38px; font-size: 13px; margin-top: 20px; }
  .testimonial__quote::before { font-size: 32px; width: 26px; line-height: 48px; }
  .testimonial__author { font-size: 13px; }

  /* PARTNERS */
  .partners-section { padding: 24px 0; }
  .logo-panel img { max-height: 44px; margin: 8px auto; }
  .partners-section .col-sm-2 { width: 33.333%; float: left; }

  /* PAGE TITLE */
  .main-title { padding: 16px 0; margin-bottom: 24px; }
  .main-title h1 { font-size: 18px; }

  /* TRACKING PAGE */
  .tracking-section { padding: 24px 0; }
  .tracking-form-box { padding: 20px; }
  .track-result-box { padding: 20px; }
  .track-info-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* CONTACT PAGE */
  .contact-section { padding: 24px 0; }
  .contact-form-box { padding: 20px; }
  .contact-info-box { padding: 20px; margin-top: 20px; }

  /* ABOUT PAGE */
  .about-section { padding: 24px 0; }
  .about-img { height: 220px; }

  /* FOOTER */
  .footer { padding: 30px 0 0; }
  .footer .col-sm-3 { margin-bottom: 24px; }
  .footer__bottom { margin-top: 20px; padding: 14px 0; font-size: 11px; }

  /* AUTH PAGES */
  .auth-page { padding: 20px 15px; align-items: flex-start; padding-top: 40px; }
  .auth-box { padding: 24px 20px; }
  .auth-box h2 { font-size: 18px; }

  /* DASHBOARD */
  .dashboard-layout { flex-direction: column; }
  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 260px;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    height: 100vh;
    overflow-y: auto;
  }
  .sidebar.open { transform: translateX(0); }
  .sidebar-logo { padding: 14px 16px; font-size: 14px; }
  .sidebar-nav { display: flex; flex-direction: column; padding: 10px 0; }
  .sidebar-nav a { padding: 11px 20px; border-left: 3px solid transparent; font-size: 13px; gap: 10px; }
  .sidebar-nav a.active { background: rgba(255,255,255,0.12); color: #fff; border-left-color: #ff7719; }
  .sidebar-section { display: block; }
  .sidebar-toggle { display: flex !important; }
  /* Sidebar overlay backdrop */
  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
  }
  .sidebar-overlay.open { display: block; }
  .dashboard-header { padding: 12px 16px; }
  .dashboard-header h2 { font-size: 15px; }
  .dashboard-content { padding: 16px; }
  .stats-cards { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
  .stat-card { padding: 16px; }
  .stat-card h3 { font-size: 22px; }

  /* TABLES — horizontal scroll on mobile */
  .data-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .data-table table { min-width: 480px; }
  .data-table th, .data-table td { padding: 10px 12px; font-size: 12px; white-space: nowrap; }

  /* ADMIN MODAL */
  .modalDialog > div { width: 95%; margin: 5% auto; }
}

/* ===== SMALL PHONES (≤480px) ===== */
@media (max-width: 480px) {

  /* TOP BAR — single line */
  .top__tagline { display: none; }
  .top__menu { width: 100%; }
  .top__menu ul { justify-content: flex-end; }

  /* SLIDER — handled in main slider block above */

  /* STATS CARDS */
  .stats-cards { grid-template-columns: 1fr; }

  /* PARTNERS — 2 per row on tiny screens */
  .partners-section .col-sm-2 { width: 50%; }

  /* BUTTONS — full width in forms */
  .tracking-form-box .btn,
  .contact-form-box .btn { width: 100%; text-align: center; }

  /* AUTH */
  .auth-box { padding: 20px 16px; }

  /* DASHBOARD */
  .dashboard-content { padding: 12px; }

  /* FOOTER */
  .footer__bottom { font-size: 10px; line-height: 1.6; }
}

/* ===== TOUCH / HOVER IMPROVEMENTS ===== */
@media (hover: none) {
  /* On touch devices, show sub-menu via JS .open class only */
  .main-navigation li:hover .sub-menu { display: none; }
  .main-navigation li.open .sub-menu { display: block; }

  /* Larger tap targets */
  .main-navigation > li > a { min-height: 48px; display: flex; align-items: center; }
  .top__menu a { min-height: 36px; display: inline-flex; align-items: center; }
  .btn { min-height: 44px; }
  .faq-question { min-height: 48px; }
}

/* ===== TRACK DROPDOWN IN NAV ===== */
.nav-track-item { position: relative; }

.nav-track-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-top: 3px solid #ff7719;
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  padding: 20px;
  width: 320px;
  z-index: 9999;
  /* bridge the gap so mouse can reach the dropdown */
  margin-top: 0;
}
/* invisible bridge so hover doesn't break when moving mouse down */
.nav-track-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
  z-index: 9998;
}
.nav-track-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 8px 7px 8px;
  border-style: solid;
  border-color: transparent transparent #ff7719 transparent;
}
.nav-track-item:hover .nav-track-dropdown,
.nav-track-item:focus-within .nav-track-dropdown { display: block; }

.nav-track-dropdown p {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 10px;
  text-transform: none;
  letter-spacing: 0;
}
.nav-track-dropdown .track-input-row {
  display: flex;
  gap: 8px;
}
.nav-track-dropdown input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #eee;
  border-radius: 4px;
  font-size: 13px;
  outline: none;
  color: #333;
  font-family: inherit;
  transition: border-color 0.2s;
  height: 36px;
}
.nav-track-dropdown input:focus { border-color: #ff7719; }
.nav-track-dropdown .btn {
  padding: 8px 14px;
  font-size: 12px;
  white-space: nowrap;
  min-height: unset;
  height: 36px;
  line-height: 1;
}

/* Mobile — tap to toggle, full-width panel */
@media (max-width: 991px) {
  .nav-track-item:hover .nav-track-dropdown { display: none; }
  .nav-track-item::after { display: none; }
  .nav-track-dropdown {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid #ff7719;
    padding: 12px 16px;
    background: #f9f9f9;
    margin-top: 0;
  }
  .nav-track-dropdown::before { display: none; }
  .nav-track-item.open .nav-track-dropdown { display: block; }
  .nav-track-dropdown .track-input-row { flex-direction: column; }
  .nav-track-dropdown .btn { width: 100%; text-align: center; }
}

/* ===== SERVICE SPLIT SECTIONS (homepage) ===== */
.service-split {
  display: flex;
  min-height: 520px;
  width: 100%;
}
.service-split__content {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0;
}
.service-split__content--dark {
  background: #1a1a2e;
}
.service-split__content--dark .service-split__inner h2 { color: #fff; }
.service-split__content--dark .service-split__inner p  { color: #c8d6e5; }
.service-split__content--dark .service-split__list li  { color: #c8d6e5; border-bottom-color: rgba(255,255,255,0.08); }
.service-split__content--dark .service-split__list li::before { color: #ff7719; }
.service-split__content--dark .service-split__tag { color: #ff7719; border-color: rgba(255,119,25,0.3); }

.service-split__inner {
  padding: 60px 64px;
  max-width: 560px;
}
.service-split__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ff7719;
  border: 1px solid rgba(255,119,25,0.3);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.service-split__inner h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.service-split__inner p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px;
}
.service-split__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.service-split__list li {
  padding: 9px 0;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-split__list li:last-child { border-bottom: none; }
.service-split__list li::before {
  content: '✓';
  color: #ff7719;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
}

.service-split__image {
  flex: 0 0 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 520px;
  position: relative;
}
.service-split__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.15) 0%, rgba(0,0,0,0.05) 100%);
}

/* Reverse layout — image left, content right */
.service-split--reverse .service-split__content { order: 2; }
.service-split--reverse .service-split__image   { order: 1; }

/* Alternating accent line */
.service-split:nth-child(odd) .service-split__content { border-left: 4px solid #ff7719; }
.service-split--reverse:nth-child(even) .service-split__content { border-left: none; border-right: 4px solid #ff7719; }

/* ===== RESPONSIVE — SERVICE SPLIT ===== */
@media (max-width: 991px) {
  .service-split { flex-direction: column; min-height: auto; }
  .service-split--reverse { flex-direction: column; }
  .service-split--reverse .service-split__content,
  .service-split--reverse .service-split__image { order: unset; }
  .service-split__image { min-height: 280px; flex: none; width: 100%; }
  .service-split__content { flex: none; width: 100%; }
  .service-split__inner { padding: 40px 32px; max-width: 100%; }
  .service-split__inner h2 { font-size: 26px; }
  .service-split:nth-child(odd) .service-split__content { border-left: none; border-top: 4px solid #ff7719; }
  .service-split--reverse:nth-child(even) .service-split__content { border-right: none; border-top: 4px solid #ff7719; }
}
@media (max-width: 767px) {
  .service-split__image { min-height: 220px; }
  .service-split__inner { padding: 28px 20px; }
  .service-split__inner h2 { font-size: 22px; }
  .service-split__inner p { font-size: 14px; }
}

/* ===== TRACK YOUR PACKAGE BUTTON DROPDOWN ===== */
.header__track-wrap {
  position: static;
}
.btn-track-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #1a1a2e;
  border-top: 4px solid #ff7719;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  padding: 32px 40px;
  z-index: 9999;
}
/* invisible bridge to prevent hover gap */
.header__track-wrap::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 10px;
  background: transparent;
}
.header__track-wrap:hover .btn-track-dropdown,
.header__track-wrap:focus-within .btn-track-dropdown { display: block; }

.btn-track-dropdown p {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: 0.3px;
}
.btn-track-dropdown .track-input-row {
  display: flex;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.btn-track-dropdown input {
  flex: 1;
  padding: 0 24px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 16px;
  outline: none;
  color: #333;
  font-family: inherit;
  height: 58px;
  background: #fff;
  letter-spacing: 0.2px;
}
.btn-track-dropdown input::placeholder { color: #aaa; }
.btn-track-dropdown input:focus { background: #fff; }
.btn-track-dropdown .btn {
  padding: 0 36px;
  font-size: 14px;
  height: 58px;
  line-height: 1;
  min-height: unset;
  border-radius: 0 4px 4px 0;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Mobile — tap to toggle */
@media (max-width: 991px) {
  .header__track-wrap:hover .btn-track-dropdown { display: none; }
  .header__track-wrap.open .btn-track-dropdown {
    display: block;
    position: fixed;
    top: auto;
    left: 0; right: 0;
    padding: 20px 16px;
  }
  .btn-track-dropdown .track-input-row { flex-direction: column; gap: 10px; }
  .btn-track-dropdown input { border-radius: 4px; height: 48px; }
  .btn-track-dropdown .btn { width: 100%; text-align: center; border-radius: 4px; height: 48px; }
}

/* ===== MOBILE TRACK BAR (after hero, before welcome) ===== */
.mobile-track-bar {
  display: none;
}
@media (max-width: 991px) {
  .mobile-track-bar {
    display: block;
    background: #1a1a2e;
    padding: 14px 16px 16px;
    border-top: 3px solid #ff7719;
  }
  .mobile-track-bar p {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px;
    font-weight: 600;
  }
  .mobile-track-bar form {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .mobile-track-bar input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    color: #333;
    font-family: inherit;
    background: #fff;
  }
  .mobile-track-bar input::placeholder { color: #aaa; font-size: 13px; }
  .mobile-track-bar .btn {
    width: 100%;
    height: 44px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    min-height: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
}

/* ===== MOBILE CONTACT INFO BAR ===== */
.mobile-contact-bar {
  display: none;
}
@media (max-width: 991px) {
  .mobile-contact-bar {
    display: flex;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mobile-contact-bar::-webkit-scrollbar { display: none; }
  .mobile-contact-bar .container {
    display: flex;
    width: 100%;
    padding: 0;
  }
  .mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    flex: 1;
    min-width: 0;
    border-right: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
  }
  .mobile-contact-item:last-child { border-right: none; }
  .mobile-contact-item i {
    font-size: 13px;
    color: #ff7719;
    flex-shrink: 0;
  }
  .mobile-contact-label {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #aaa;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.2;
  }
  .mobile-contact-value {
    display: block;
    font-size: 11px;
    color: #1a1a2e;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
  }
}
@media (max-width: 480px) {
  .mobile-contact-bar .container { width: max-content; min-width: 100%; }
  .mobile-contact-item { min-width: 110px; padding: 5px 12px; }
}

/* ===== HEADER AUTH (Login / Register) — far right of header ===== */
.header__auth {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  flex-shrink: 0;
}
.auth-link {
  color: #555;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  white-space: nowrap;
  transition: color 0.2s;
}
.auth-link:hover { color: #ff7719; }

/* Register gets a bordered button look */
.auth-register {
  border: 1px solid #ff7719;
  border-radius: 4px;
  color: #ff7719;
  padding: 5px 14px;
  transition: background 0.2s, color 0.2s;
}
.auth-register:hover {
  background: #ff7719;
  color: #fff !important;
}

/* On mobile — show inside hamburger menu dropdown, full width */
@media (max-width: 991px) {
  .header__auth {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    border-top: 1px solid #eee;
    padding: 0;
  }
  .header__auth.open {
    display: flex;
  }
  .header__auth .auth-link {
    padding: 13px 16px;
    display: block;
    width: 100%;
    font-size: 13px;
  }
  .header__auth .auth-register {
    border: none;
    border-radius: 0;
    padding: 13px 16px;
    color: #ff7719;
    background: none !important;
  }
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE FIXES — ALL PAGES
   Covers: admin pages, about, contact, faq, track, news, etc.
   ============================================================ */

/* ===== TABLET (≤991px) ===== */
@media (max-width: 991px) {

  /* ── ADMIN DASHBOARD: chart + table grid ── */
  .dashboard-content > [style*="grid-template-columns: 1fr 2fr"],
  .dashboard-content > div[style*="grid-template-columns: 1fr 2fr"],
  .dashboard-content > [style*="grid-template-columns:1fr 2fr"],
  .dashboard-content > div[style*="grid-template-columns:1fr 2fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ── ADMIN CREATE: 2-column form → stack ── */
  #createForm[style*="grid-template-columns: 1fr 1fr"],
  form[id="createForm"] {
    grid-template-columns: 1fr !important;
  }

  /* ── ADMIN USERS: inline 3-col stats → 2-col ── */
  .dashboard-content .stats-cards[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ── ADMIN MODALS ── */
  #statusModal > div,
  #userModal > div {
    margin: 10px !important;
    padding: 24px 20px !important;
    max-width: 100% !important;
    width: calc(100% - 20px) !important;
  }

  /* Edit modal: align to top so heading stays visible on short viewports */
  #editModal {
    align-items: flex-start !important;
    padding-top: 16px;
  }

  /* ── TRACKING PAGE: sidebar stack ── */
  .tracking-section .col-sm-4 [style*="background:#f9f9f9"],
  .tracking-section .col-sm-4 [style*="background:#1a1a2e"] {
    margin-top: 20px !important;
  }

  /* ── ABOUT PAGE: inline stat boxes ── */
  .about-section .row [class*="col-sm-6"] [style*="background:#f9f9f9"] {
    padding: 16px !important;
  }
  .about-section .row [class*="col-sm-6"] [style*="background:#f9f9f9"] [style*="font-size:36px"] {
    font-size: 28px !important;
  }

  /* ── CONTACT PAGE: emergency box ── */
  .contact-section .col-sm-4 > [style*="background:#09397a"] {
    padding: 20px !important;
    margin-top: 16px !important;
  }
  .contact-section .col-sm-4 > [style*="background:#09397a"] p[style*="font-size:20px"] {
    font-size: 16px !important;
  }

  /* ── NEWS PAGE: grid items ── */
  .news .col-sm-4 { margin-bottom: 24px; }

  /* ── FAQ PAGE: page-hero ── */
  .page-hero { padding: 28px 16px !important; }
  .page-hero h1 { font-size: 22px !important; }
  .page-hero p { font-size: 14px !important; }

  /* ── SHIP PAGE ── */
  .ship-layout { flex-direction: column !important; }
  .ship-layout__sidebar { width: 100% !important; max-width: 100% !important; }
}

/* ===== MOBILE (≤767px) ===== */
@media (max-width: 767px) {

  /* ── ADMIN DASHBOARD: stats & chart ── */
  .dashboard-content .stats-cards[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
  .dashboard-content > [style*="grid-template-columns: 1fr 2fr"],
  .dashboard-content > div[style*="grid-template-columns: 1fr 2fr"],
  .dashboard-content > [style*="grid-template-columns:1fr 2fr"],
  .dashboard-content > div[style*="grid-template-columns:1fr 2fr"] {
    gap: 16px !important;
  }

  /* ── ADMIN CREATE: form section padding ── */
  #createForm > div[style*="border-top:3px"] {
    padding: 18px 16px !important;
  }
  #createForm .form-group { margin-bottom: 12px; }
  #createForm label { font-size: 11px; }

  /* ── ADMIN: filter bars ── */
  .dashboard-content > [style*="background:#fff;border:1px solid #eee;padding:16px 20px"],
  .dashboard-content > div[style*="background:#fff;border:1px solid #eee;padding:14px 20px"] {
    padding: 12px 14px !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .dashboard-content > [style*="background:#fff;border:1px solid #eee;padding:16px 20px"] input,
  .dashboard-content > [style*="background:#fff;border:1px solid #eee;padding:16px 20px"] select,
  .dashboard-content > [style*="background:#fff;border:1px solid #eee;padding:14px 20px"] input,
  .dashboard-content > [style*="background:#fff;border:1px solid #eee;padding:14px 20px"] select {
    width: 100% !important;
    min-width: 0 !important;
  }
  .dashboard-content > [style*="background:#fff;border:1px solid #eee;padding:16px 20px"] button,
  .dashboard-content > [style*="background:#fff;border:1px solid #eee;padding:14px 20px"] button {
    width: 100% !important;
  }

  /* ── ADMIN EDIT MODAL grids stack ── */
  #editModal > div > [style*="grid-template-columns: 1fr 1fr"],
  #editModal > div > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  #editModal > div > [style*="grid-template-columns: 1fr 1fr 1fr"],
  #editModal > div > div[style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Edit modal full width on mobile */
  #editModal > div {
    max-width: 100% !important;
    margin: 8px !important;
    padding: 20px 16px !important;
  }
  #editModal .btn { width: 100% !important; }

  /* Edit modal: align to top so heading stays visible on mobile */
  #editModal {
    align-items: flex-start !important;
    padding-top: 16px;
  }

  /* ── ADMIN CREATE ── submit button area full width */
  #createForm > [style*="grid-column:1/-1"] {
    flex-direction: column !important;
  }
  #createForm > [style*="grid-column:1/-1"] .btn,
  #createForm > [style*="grid-column:1/-1"] a {
    width: 100% !important;
    text-align: center !important;
  }

  /* ── TOAST on mobile — centered bottom ── */
  div[style*="position:fixed;bottom:24px;right:24px"] {
    left: 16px !important;
    right: 16px !important;
    bottom: 16px !important;
    width: auto !important;
    max-width: 100% !important;
    text-align: center !important;
    font-size: 13px !important;
  }

  /* ── ADMIN MODALS mobile ── */
  #statusModal > div,
  #userModal > div,
  #editModal > div,
  #deleteModal > div {
    padding: 20px 16px !important;
    margin: 8px !important;
  }
  #statusModal .form-group label,
  #userModal .form-group label { font-size: 11px; }
  #statusModal > div > [style*="display:flex;gap:10px;margin-top:8px"],
  #statusModal > div > div[style*="display:flex;gap:10px;margin-top:8px"] {
    flex-direction: column !important;
  }
  #statusModal > div > [style*="display:flex;gap:10px;margin-top:8px"] button,
  #statusModal > div > div[style*="display:flex;gap:10px;margin-top:8px"] button {
    width: 100% !important;
  }
  #userModal > div > [style*="display:flex;gap:10px;margin-top:20px"] {
    flex-direction: column !important;
  }
  #userModal > div > [style*="display:flex;gap:10px;margin-top:20px"] button {
    width: 100% !important;
  }

  /* ── ADMIN HEADER: buttons ── */
  .dashboard-header { flex-direction: column !important; gap: 10px !important; align-items: flex-start !important; }
  .dashboard-header > div[style*="display:flex"] { width: 100% !important; justify-content: space-between !important; }
  .dashboard-header h2 { font-size: 15px !important; }

  /* ── ABOUT PAGE: value cards & stat boxes ── */
  .about-section .row [class*="col-sm-6"] [style*="background:#f9f9f9"] {
    padding: 14px !important;
  }
  .about-section .row [class*="col-sm-6"] [style*="background:#f9f9f9"] [style*="font-size:36px"] {
    font-size: 24px !important;
  }
  .about-section .row [class*="col-sm-6"] [style*="background:#f9f9f9"] [style*="font-size:12px"] {
    font-size: 11px !important;
  }
  .about-section .col-sm-4 [style*="padding:30px 20px"] {
    padding: 20px 16px !important;
  }
  .about-section .col-sm-4 [style*="padding:30px 20px"] i[style*="font-size:40px"] {
    font-size: 30px !important;
  }

  /* ── CONTACT PAGE ── */
  .contact-form-box { padding: 20px 16px !important; }
  .contact-form-box .row [class*="col-sm-6"] { margin-bottom: 0; }
  .contact-info-box { padding: 20px 16px !important; }
  .contact-info-item { gap: 10px !important; }
  .contact-info-item i { font-size: 16px !important; }
  .contact-info-item h5 { font-size: 10px !important; }
  .contact-info-item p { font-size: 12px !important; }

  /* ── TRACKING PAGE ── */
  .tracking-form-box { padding: 20px 16px !important; }
  .tracking-form-box form[style*="display:flex"] { flex-direction: column !important; gap: 8px !important; }
  .tracking-form-box form[style*="display:flex"] input { min-width: 0 !important; width: 100% !important; }
  .tracking-form-box form[style*="display:flex"] button { width: 100% !important; }
  .track-result-box { padding: 16px !important; }
  .track-status-bar { flex-direction: column !important; align-items: flex-start !important; gap: 8px !important; padding: 14px 16px !important; }
  .track-status-bar h4 { font-size: 14px !important; }
  .track-info-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .track-info-item label { font-size: 10px !important; }
  .track-info-item span { font-size: 13px !important; }
  #downloadBtns[style*="display:flex"] { flex-direction: column !important; }
  #downloadBtns button { width: 100% !important; }

  /* ── TRACKING SIDEBAR ── */
  .tracking-section .col-sm-4 > [style*="background:#f9f9f9"],
  .tracking-section .col-sm-4 > [style*="background:#1a1a2e"] {
    padding: 18px 16px !important;
  }
  .tracking-section .col-sm-4 textarea { font-size: 13px !important; }

  /* ── FAQ PAGE ── */
  .page-hero { padding: 24px 16px !important; }
  .page-hero h1 { font-size: 20px !important; margin-bottom: 6px !important; }
  .page-hero p { font-size: 13px !important; }
  section.section .container[style*="max-width:800px"] { padding: 0 12px !important; }
  .faq-item { margin-bottom: 6px; }
  .faq-question { padding: 12px 14px !important; font-size: 13px !important; }
  .faq-answer.open { padding: 12px 14px 14px !important; font-size: 13px !important; }
  section.section .container[style*="max-width:800px"] > div[style*="background:#f5f5f5"] {
    padding: 24px 16px !important;
    margin-top: 32px !important;
  }
  section.section .container[style*="max-width:800px"] > h3[style*="color:#1a1a2e"] {
    font-size: 16px !important;
    margin: 24px 0 16px !important;
  }

  /* ── NEWS PAGE ── */
  .news .col-sm-4 { margin-bottom: 20px; }
  .latest-news img { height: 160px; }
  .latest-news__title { font-size: 13px; }
  .latest-news__date { min-width: 38px; padding: 5px 6px; }
  .latest-news__date__month { font-size: 9px; }
  .latest-news__date__day { font-size: 16px; }

  /* ── AUTH PAGES ── */
  .auth-box { padding: 24px 18px !important; }
  .auth-box h2 { font-size: 18px !important; }
  .auth-box .auth-sub { font-size: 12px !important; margin-bottom: 20px !important; }

  /* ── FOOTER ── */
  .footer .col-sm-3 { margin-bottom: 24px; }
  .footer__title { font-size: 11px !important; margin-bottom: 14px !important; }
  .footer__links a { font-size: 12px !important; }
  .footer__description { font-size: 12px !important; }
  .footer__bottom { font-size: 10px !important; line-height: 1.6 !important; }
  .footer__social { gap: 6px; }
  .footer__social a { width: 30px; height: 30px; font-size: 12px; }

  /* ── BUTTONS full-width where appropriate ── */
  .btn-block-mobile { width: 100% !important; text-align: center !important; }

  /* ── GENERAL CONTENT SPACING ── */
  .main-title { padding: 16px 0 !important; margin-bottom: 24px !important; }
  .main-title h1 { font-size: 18px !important; }
  .breadcrumbs { font-size: 11px !important; }
  .container { padding: 0 12px; }
}

/* ===== ENHANCED ADMIN RESPONSIVE ===== */

/* ── Responsive table helper: auto-hide columns on mobile ── */
.responsive-table th,
.responsive-table td {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .responsive-table .th-hide-tablet,
  .responsive-table .td-hide-tablet { display: none !important; }
}
@media (max-width: 767px) {
  .responsive-table .th-hide-mobile,
  .responsive-table .td-hide-mobile { display: none !important; }
}

/* ── SHIPMENTS ACTION BUTTONS: wrap gracefully on small screens ── */
@media (max-width: 991px) {
  table td[style*="white-space:nowrap"] button,
  table td[style*="white-space:nowrap"] a {
    font-size: 11px !important;
    padding: 4px 6px !important;
    display: inline-block;
    margin: 2px 0;
  }
}
@media (max-width: 480px) {
  table td[style*="white-space:nowrap"] {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 2px !important;
    white-space: normal !important;
  }
  table td[style*="white-space:nowrap"] button,
  table td[style*="white-space:nowrap"] a {
    font-size: 11px !important;
    padding: 6px 8px !important;
    flex: 1 0 auto;
    text-align: center;
    min-width: 60px;
  }
}

/* ── ADMIN DASHBOARD HEADER: fix wrapping on mobile ── */
.dashboard-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .dashboard-header > div[style*="display:flex;align-items:center;gap:12px"],
  .dashboard-header div[style*="display:flex"][style*="align-items:center"][style*="gap:12px"],
  .dashboard-header .dashboard-header-right {
    flex-wrap: wrap !important;
    gap: 8px !important;
    width: 100% !important;
  }
  .dashboard-header div[style*="display:flex"][style*="align-items:center"][style*="gap:12px"] a.btn,
  .dashboard-header div[style*="display:flex"][style*="align-items:center"][style*="gap:12px"] span {
    width: 100% !important;
    text-align: center !important;
  }
}

/* ── ADMIN CREATE FORM: section card improvements ── */
@media (max-width: 991px) {
  #createForm > div[style*="border-top:3px"] {
    padding: 20px 18px !important;
  }
}
@media (max-width: 767px) {
  #createForm > div[style*="border-top:3px"] {
    padding: 16px 14px !important;
  }
  #createForm h3[style*="font-size:14px"] {
    font-size: 13px !important;
    margin-bottom: 14px !important;
  }
  #createForm .form-control {
    font-size: 13px !important;
    height: 38px !important;
  }
  #notifyInfo[style*="background:#fff8e6"] {
    font-size: 12px !important;
    padding: 8px 12px !important;
  }
  /* Back to shipments link in create page header */
  .dashboard-header a[href*="shipments.html"] {
    font-size: 12px !important;
    white-space: nowrap;
  }
}

/* ── ADMIN USERS MODAL: responsive improvements ── */
@media (max-width: 767px) {
  #userModal > div[style*="max-width:460px"] {
    max-width: 94vw !important;
    margin: 10px !important;
    padding: 20px 16px !important;
  }
  #userModalContent table td[style*="width:40%"] {
    width: 35% !important;
    font-size: 12px !important;
  }
  #userModalContent table td[style*="font-weight:600"] {
    font-size: 12px !important;
  }
}
@media (max-width: 480px) {
  #userModal > div[style*="max-width:460px"] {
    padding: 16px 12px !important;
    margin: 6px !important;
  }
}

/* ── ADMIN SHIPMENTS: status modal responsive ── */
@media (max-width: 767px) {
  #statusModal > div[style*="max-width:480px"] {
    max-width: 94vw !important;
  }
  #statusModal textarea.form-control {
    font-size: 13px !important;
  }
}

/* ── ADMIN DELETE MODAL responsive ── */
@media (max-width: 767px) {
  #deleteModal > div[style*="max-width:420px"] {
    max-width: 94vw !important;
  }
  #deleteModal div[style*="font-size:48px"] {
    font-size: 36px !important;
  }
  #deleteModal p[style*="font-size:14px"] {
    font-size: 13px !important;
  }
}

/* ── ADMIN STATS CARDS: ensure proper responsive breakpoints ── */
@media (max-width: 480px) {
  .stats-cards {
    grid-template-columns: 1fr 1fr !important;
  }
  .dashboard-content .stats-cards[style*="grid-template-columns: repeat(4, 1fr)"],
  .dashboard-content .stats-cards[style*="grid-template-columns: repeat(3, 1fr)"],
  .dashboard-content .stats-cards[style*="grid-template-columns:repeat(4,1fr)"],
  .dashboard-content .stats-cards[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
  .stat-card {
    padding: 14px !important;
  }
  .stat-card h3 {
    font-size: 20px !important;
  }
  .stat-card p {
    font-size: 10px !important;
  }
  .stat-card .stat-icon {
    font-size: 22px !important;
    margin-bottom: 6px !important;
  }
}

/* ── ADMIN DATA TABLE: header improvements ── */
@media (max-width: 767px) {
  .data-table-header {
    padding: 12px 14px !important;
    gap: 8px !important;
  }
  .data-table-header h3 {
    font-size: 12px !important;
  }
  .data-table-header a {
    font-size: 12px !important;
  }
}

/* ── DASHBOARD: stack chart + table grid on tablet & mobile ── */
@media (max-width: 991px) {
  .dashboard-content > div[style*="grid-template-columns: 1fr 2fr"],
  .dashboard-content > div[style*="grid-template-columns:1fr 2fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── ADMIN SIDEBAR: tablet improvements ── */
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar {
    width: 260px;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    height: 100vh;
    overflow-y: auto;
  }
  .sidebar.open { transform: translateX(0); }
  .sidebar-nav a {
    padding: 11px 18px !important;
    font-size: 12px !important;
  }
  .sidebar-logo {
    padding: 14px 16px !important;
    font-size: 14px !important;
  }
  /* Show sidebar toggle on tablet too */
  .sidebar-toggle {
    display: flex !important;
  }
  .dashboard-layout {
    min-height: 100vh;
  }
}

/* ── TOAST NOTIFICATION: better responsive positioning ── */
@media (max-width: 767px) {
  div[style*="position:fixed;bottom:24px;right:24px"],
  .toast-notification {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    max-width: 100% !important;
    text-align: center !important;
    font-size: 13px !important;
    border-radius: 8px !important;
  }
}

/* ===== ADMIN DASHBOARD IMPROVEMENTS ===== */

/* Sidebar toggle button — hidden on desktop */
.sidebar-toggle {
  display: none;
  background: none;
  border: none;
  color: #333;
  font-size: 22px;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
}
.sidebar-toggle:hover { background: #f0f0f0; }

/* Sidebar overlay for mobile */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}

/* Edit modal inner grids — stack on mobile */
#editModal [style*="grid-template-columns: 1fr 1fr"],
#editModal > div > div[style*="grid-template-columns: 1fr 1fr"] {
  gap: 12px;
}
#editModal [style*="grid-template-columns: 1fr 1fr 1fr"],
#editModal > div > div[style*="grid-template-columns: 1fr 1fr 1fr"] {
  gap: 12px;
}

/* Toast responsive positioning */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #10b981;
  color: #fff;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  z-index: 99999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  max-width: 360px;
}

/* ── ENHANCED DASHBOARD CARDS: Status Chart & Recent Table ── */

/* Status chart item — more visual */
.status-chart-item {
  margin-bottom: 0;
  padding: 6px 0;
}
.status-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 6px;
}
.status-chart-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: #333;
}
.status-chart-count {
  font-weight: 700;
  font-size: 14px;
  color: #1a1a2e;
}
.status-chart-pct {
  font-weight: 400;
  font-size: 11px;
  color: #888;
}
.status-chart-bar {
  background: #f0f0f0;
  border-radius: 6px;
  height: 10px;
  overflow: hidden;
}
.status-chart-fill {
  background: var(--bar-color);
  width: var(--bar-width);
  height: 100%;
  border-radius: 6px;
  transition: width 0.6s ease;
}

/* Dashboard cards responsive padding */
@media (max-width: 991px) {
  .dashboard-content > div[style*="background:#fff;border:1px solid #eee;padding:24px;"] {
    padding: 16px 14px !important;
  }
  .dashboard-content > div[style*="background:#fff;border:1px solid #eee;padding:24px;"] h3[style*="margin-bottom:20px"] {
    font-size: 12px !important;
    margin-bottom: 14px !important;
  }
}
@media (max-width: 480px) {
  .dashboard-content > div[style*="background:#fff;border:1px solid #eee;padding:24px;"] {
    padding: 12px 10px !important;
  }
  .status-chart-header {
    font-size: 12px;
  }
  .status-chart-count {
    font-size: 13px;
  }
  .status-chart-bar {
    height: 8px;
  }
  .status-chart-item {
    padding: 4px 0;
  }
}

/* Dashboard table card — better spacing on mobile */
@media (max-width: 991px) {
  .dashboard-content .data-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 480px) {
  .dashboard-content .data-table table {
    min-width: 420px;
  }
  .dashboard-content .data-table th,
  .dashboard-content .data-table td {
    padding: 7px 8px !important;
    font-size: 10px !important;
  }
}

/* ── SHIPMENT ACTION ROWS: separate action row under each shipment ── */

/* Data row: no bottom border so it visually merges with the actions row below */
.shipment-data-row td {
  border-bottom: none !important;
  padding-bottom: 4px !important;
}

/* Actions row: subtle background, clean border-top as separator */
.shipment-actions-row td {
  background: #fafbfc;
  border-top: none;
  padding: 6px 12px 10px 12px !important;
  border-bottom: 1px solid #e8e8e8;
}
.shipment-actions-row:last-child td {
  border-bottom: none;
}

/* Action buttons bar — flex wrap for responsive */
.actions-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

/* Individual action button */
.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s;
}

.action-btn i {
  font-size: 12px;
}

/* Edit button — blue theme */
.action-edit {
  background: #eef2ff;
  color: #09397a;
  border-color: #c7d2fe;
}
.action-edit:hover {
  background: #dde4ff;
  color: #062a5a;
}

/* Track button — orange theme */
.action-track {
  background: #fff7ed;
  color: #c2410c;
  border-color: #fed7aa;
}
.action-track:hover {
  background: #ffedd5;
  color: #9a3412;
}

/* Status badge button — green theme */
.action-status {
  background: #f0fdf4;
  color: #166534;
  border-color: #bbf7d0;
}

/* Update button — orange (for modals) */
.action-update {
  background: #fff7ed;
  color: #c2410c;
  border-color: #fed7aa;
}
.action-update:hover {
  background: #ffedd5;
  color: #9a3412;
}

/* Delete button — red theme */
.action-delete {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fecaca;
}
.action-delete:hover {
  background: #fee2e2;
  color: #b91c1c;
}

/* Responsive: compact action buttons on small screens */
@media (max-width: 480px) {
  .actions-bar {
    gap: 3px;
  }
  .action-btn {
    font-size: 10px;
    padding: 3px 7px;
  }
  .action-btn i {
    font-size: 10px;
  }
}

/* Dashboard header mobile improvements */
.dashboard-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Better stat card desktop layout */
.stat-card { transition: box-shadow 0.2s; }
.stat-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }

/* Desktop sidebar refinements */
@media (min-width: 992px) {
  .dashboard-layout { min-height: 100vh; }
  .sidebar { position: sticky; top: 0; height: 100vh; overflow-y: auto; }
  .sidebar::-webkit-scrollbar { width: 4px; }
  .sidebar::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }
}

/* ===== SMALL PHONES (≤480px) ===== */
@media (max-width: 480px) {

  /* ── ADMIN: data-table fits small screens ── */
  .data-table table { min-width: 380px; }
  .data-table th,
  .data-table td { white-space: nowrap; padding: 6px 8px !important; font-size: 10px !important; }

  /* ── ABOUT PAGE ── */
  .about-section .row [class*="col-sm-6"] [style*="background:#f9f9f9"] {
    padding: 12px !important;
  }
  .about-section .row [class*="col-sm-6"] [style*="background:#f9f9f9"] [style*="font-size:36px"] {
    font-size: 22px !important;
  }

  /* ── CONTACT ── */
  .contact-form-box .btn { width: 100% !important; }

  /* ── TRACKING ── */
  .track-info-grid { grid-template-columns: 1fr !important; }

  /* ── FOOTER ── */
  .footer .col-sm-3 { width: 100% !important; }
  .footer__bottom { padding: 12px 0 !important; }

  /* ── ADMIN MODALS padding ── */
  #statusModal > div,
  #userModal > div,
  #editModal > div,
  #deleteModal > div {
    padding: 16px 12px !important;
    margin: 6px !important;
  }

  /* ── ADMIN HEADER smaller ── */
  .dashboard-header h2 { font-size: 14px !important; }
  .dashboard-header .btn { font-size: 12px !important; padding: 7px 14px !important; }

  /* ── AUTH ── */
  .auth-box { padding: 20px 14px !important; }
  .divider::before, .divider::after { width: 35% !important; }
}

/* ===== RESPONSIVE TABLE WRAPPER ===== */
.table-responsive-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 16px;
  border: 1px solid #eee;
  border-radius: 4px;
}
.table-responsive-wrap table {
  min-width: 600px;
  margin-bottom: 0;
}

/* ===== PRINT STYLES ===== */
@media print {
  .header__container,
  .footer,
  .navbar-toggle,
  .mobile-contact-bar,
  .mobile-track-bar,
  .jumbotron__control,
  .btn-track-dropdown,
  .sidebar,
  #statusModal,
  #userModal { display: none !important; }
  body { font-size: 12px; color: #000; background: #fff; }
  .container { width: 100% !important; max-width: 100% !important; }
  .dashboard-main { margin-left: 0 !important; }
  .track-result-box { border: 1px solid #ddd; }
}

/* ===== CAREERS PAGE RESPONSIVE ===== */

/* ── Tablet: perks grid 3col→2col ── */
@media (max-width: 991px) {
  .section .container > div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
  }
}

/* ── Mobile: perks grid 2col→1col, job cards stack ── */
@media (max-width: 767px) {
  .section .container > div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 40px !important;
  }
  .section .container > div[style*="grid-template-columns:repeat(3,1fr)"] > div[style*="padding:28px"] {
    padding: 20px 16px !important;
  }
  .section .container > div[style*="grid-template-columns:repeat(3,1fr)"] i[style*="font-size:36px"] {
    font-size: 28px !important;
  }
  .section .container > div[style*="grid-template-columns:repeat(3,1fr)"] h4 {
    font-size: 14px !important;
  }
  .section .container > div[style*="grid-template-columns:repeat(3,1fr)"] p[style*="font-size:14px"] {
    font-size: 13px !important;
  }

  /* Career heading sizes */
  .section .container > [style*="text-align:center;max-width:700px"] h2[style*="font-size:30px"] {
    font-size: 22px !important;
  }
  .section .container > h2[style*="font-size:26px"] {
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }

  /* ── Career job listing cards: buttons stack below ── */
  .section .container > div[style*="display:flex;flex-direction:column;gap:16px"] > div[style*="display:flex;justify-content:space-between"] {
    padding: 18px 16px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .section .container > div[style*="display:flex;flex-direction:column;gap:16px"] > div[style*="display:flex;justify-content:space-between"] .btn {
    width: 100% !important;
    text-align: center !important;
  }
  .section .container > div[style*="display:flex;flex-direction:column;gap:16px"] > div h4 {
    font-size: 14px !important;
  }
}

/* ============================================================
   PROGRESS SLIDER — Admin Update Status Modal
   ============================================================ */
.progress-slider-container {
  padding: 8px 0;
}
.progress-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  margin-bottom: 4px;
}
/* Location pin thumb — sits centered on the bar */
.progress-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 50% 0;
  background: #ff7719;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.15s;
  transform: rotate(-45deg);
  margin-top: -8px;
}
.progress-slider::-webkit-slider-thumb:hover {
  transform: rotate(-45deg) scale(1.15);
}
.progress-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 50% 0;
  background: #ff7719;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  cursor: pointer;
  transform: rotate(-45deg);
}
.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #9ca3af;
  margin-bottom: 8px;
  padding: 0 2px;
}
.progress-value-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.progress-pct-badge {
  display: inline-block;
  background: #ff7719;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 12px;
  min-width: 44px;
  text-align: center;
}

/* ============================================================
   TRACKING PROGRESS BAR — Public Track Page
   ============================================================ */
.track-progress-bar {
  animation: fadeInUp 0.3s ease;
}
/* Location pin on the customer-facing progress bar — Font Awesome map-marker icon */
.track-progress-pin {
  position: absolute;
  bottom: -2px;
  margin-left: -10px;
  font-size: 22px;
  transition: left 0.4s ease;
  z-index: 2;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.25));
  line-height: 1;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Small phones ── */
@media (max-width: 480px) {
  .section .container > div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  .section .container > [style*="text-align:center;max-width:700px"] {
    margin-bottom: 32px !important;
  }
}
