/* Eagle Freight Logistics — Eagle Freight brand theme */
:root {
  --red: #e11d2e;
  --red-dark: #c01525;
  --red-soft: #fceef0;
  --navy: #0a1a33;
  --navy-2: #0b1b3a;
  --ink: #535353;
  --heading: #0a1a33;
  --shade: #ecf0f1;
  --shade-2: #f5fbff;
  --white: #ffffff;
  --line: rgba(10, 26, 51, 0.08);
  --shadow: 0 18px 50px rgba(10, 26, 51, 0.1);
  --shadow-sm: 0 10px 28px rgba(10, 26, 51, 0.08);
  --radius: 18px;
  --radius-pill: 50px;
  --container: 1200px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Rethink Sans", "DM Sans", system-ui, sans-serif;
  --topbar-h: 44px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: .25s ease; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; }
h1,h2,h3,h4,h5 {
  font-family: var(--display);
  color: var(--heading);
  line-height: 1.15;
  margin: 0 0 .6rem;
  font-weight: 700;
}
p { margin: 0 0 1rem; }

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.55rem;
  border-radius: var(--radius-pill);
  border: 0;
  background: var(--red);
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(225, 29, 46, .28);
  transition: .25s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--navy) !important;
  border: 1.5px solid rgba(10,26,51,.15);
  box-shadow: none;
}
.btn-outline:hover { border-color: var(--red); color: var(--red) !important; background: #fff; }
.btn-white {
  background: #fff;
  color: var(--navy) !important;
  box-shadow: var(--shadow-sm);
}
.btn-dark {
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(10,26,51,.25);
}
.btn i { font-size: .95rem; }

/* —— Top bar —— */
/* Red contact bar disabled per request — kept in HTML for easy restore */
.topbar {
  display: none !important;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--topbar-h);
  flex-wrap: wrap;
  padding: .45rem 0;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}
.topbar a { color: #fff; opacity: .95; }
.topbar a:hover { opacity: 1; text-decoration: underline; }
.topbar i { margin-right: .35rem; }
.topbar-social { display: flex; gap: .65rem; align-items: center; }
.topbar-social span { opacity: .9; margin-right: .15rem; }
.topbar-social a {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.15);
  font-size: .85rem;
}
.topbar-social a:hover { background: rgba(255,255,255,.28); text-decoration: none; }

/* —— Header / Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: .85rem 0 0;
  background: transparent;
}
.site-header.is-sticky .nav-shell {
  box-shadow: 0 14px 40px rgba(10,26,51,.12);
}
.nav-shell {
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 35px rgba(10,26,51,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem .7rem .55rem 1.1rem;
  min-height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
}
.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(225,29,46,.25);
  background: #fff;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -.01em;
}
.brand-text small {
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .2rem;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-menu > a,
.nav-menu .nav-drop > button {
  padding: .55rem .9rem;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.nav-menu > a:hover,
.nav-menu > a.active,
.nav-menu .nav-drop > button:hover {
  color: var(--red);
}
.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + .55rem);
  left: 0;
  min-width: 210px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: .55rem;
  display: none;
  z-index: 50;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: block;
  padding: .7rem .85rem;
  border-radius: 12px;
  font-weight: 600;
  color: var(--navy);
  font-size: .92rem;
}
.nav-drop-menu a:hover { background: var(--red-soft); color: var(--red); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.icon-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 0;
  background: #f3f5f7;
  color: var(--navy);
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 1rem;
}
.icon-btn:hover { background: var(--red-soft); color: var(--red); }
.nav-track { padding: .85rem 1.35rem; }
.nav-toggle { display: none; background: var(--navy); color: #fff; }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(10,26,51,.55);
}
.mobile-nav.open,
.mobile-nav:not([hidden]) {
  display: block;
}
.mobile-nav[hidden] {
  display: none !important;
}
.mobile-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: min(340px, 88vw);
  background: #fff;
  padding: 1.25rem;
  overflow: auto;
  animation: slideIn .25s ease;
}
@keyframes slideIn {
  from { transform: translateX(24px); opacity: .4; }
  to { transform: none; opacity: 1; }
}
.mobile-panel a {
  display: block;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: var(--navy);
}
.mobile-close {
  margin-left: auto;
  margin-bottom: 1rem;
  display: grid;
}

/* —— Hero —— */
.hero-3 {
  position: relative;
  min-height: clamp(620px, 88vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1a33;
  margin-top: -40px;
  padding-top: 120px;
  padding-bottom: 70px;
  color: #fff;
}
.hero-3::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,26,51,.82) 0%, rgba(10,26,51,.45) 48%, rgba(225,29,46,.18) 100%),
    url("../images/hero-bg.jpg") center/cover no-repeat;
  z-index: 0;
}
.hero-diag {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero-diag span {
  position: absolute;
  background: var(--red);
  opacity: .92;
  transform: skewX(-22deg);
}
.hero-diag .d1 {
  right: -80px; top: -40px;
  width: 34%; height: 58%;
  opacity: .95;
}
.hero-diag .d2 {
  right: 8%; bottom: -80px;
  width: 28%; height: 70%;
  background: linear-gradient(180deg, #f56677 0%, #e11d2e 100%);
  opacity: .88;
}
.hero-diag .d3 {
  right: 30%; top: 18%;
  width: 10%; height: 42%;
  opacity: .55;
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1.5px solid rgba(255,255,255,.45);
  color: #fff;
  border-radius: 999px;
  padding: .55rem 1.1rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
  backdrop-filter: blur(6px);
}
.hero-3 h1 {
  color: #fff;
  font-size: clamp(2.6rem, 5.6vw, 4.55rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}
.hero-3 h1 span { display: block; }
.hero-3 p.lead {
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 1.6rem;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: #fff;
}
.hero-avatars {
  display: flex;
}
.hero-avatars img,
.hero-avatars span {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  object-fit: cover;
  background: #ccc;
}
.hero-avatars img:first-child,
.hero-avatars span:first-child { margin-left: 0; }
.hero-avatars span {
  display: grid; place-items: center;
  background: var(--red);
  font-weight: 800;
  font-size: .78rem;
}
.hero-social-proof strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1;
}
.hero-social-proof small { opacity: .8; font-size: .78rem; }
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}
.hero-visual img {
  width: min(620px, 100%);
  filter: drop-shadow(0 30px 45px rgba(0,0,0,.35));
  animation: floatY 5.5s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* track widget on secondary pages */
.hero-track-card {
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  max-width: 420px;
  width: 100%;
}
.hero-track-card h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.hero-track-card p { font-size: .9rem; margin-bottom: .9rem; }
.track-inline {
  display: flex;
  gap: .5rem;
}
.track-inline input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .85rem 1rem;
  outline: none;
}
.track-inline input:focus { border-color: var(--red); }

/* —— Shared section bits —— */
.sec-padding { padding: 100px 0; }
.sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.sec-head.left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--red);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.eyebrow::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(225,29,46,.18);
}
.sec-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  margin-bottom: .75rem;
}
.sec-head p { color: var(--ink); margin: 0; }

/* —— Services / What to expect —— */
.services-3 { background: #fff; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.7rem 1.35rem 1.5rem;
  transition: .3s ease;
  position: relative;
  overflow: hidden;
  min-height: 250px;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--shadow);
}
.service-card:hover .svc-icon {
  background: var(--red);
  color: #fff;
}
.svc-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  background: var(--red-soft);
  color: var(--red);
  display: grid; place-items: center;
  font-size: 1.55rem;
  margin-bottom: 1.15rem;
  transition: .3s ease;
}
.svc-icon img { width: 36px; height: 36px; object-fit: contain; }
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: .55rem;
}
.service-card p {
  font-size: .95rem;
  margin: 0;
  color: #666;
}
.service-card .more {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--red);
  font-weight: 700;
  font-size: .9rem;
  gap: .35rem;
  opacity: 0;
  transform: translateY(6px);
  transition: .3s ease;
}
.service-card:hover .more { opacity: 1; transform: none; }

/* marquee strip */
.marquee-wrap {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #fff;
  padding: 1rem 0;
  margin-top: 3rem;
}
.marquee {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.marquee span { display: inline-flex; align-items: center; gap: .8rem; white-space: nowrap; }
.marquee i { color: var(--red); font-size: .9rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* —— About —— */
.about-sec3 {
  background:
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,255,255,.92)),
    url("../images/about-bg.jpg") center/cover no-repeat;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
}
.about-gallery {
  position: relative;
  min-height: 480px;
}
.about-gallery .g1 {
  width: 72%;
  border-radius: 28px;
  object-fit: cover;
  height: 420px;
  box-shadow: var(--shadow);
}
.about-gallery .g2 {
  position: absolute;
  right: 0; bottom: 20px;
  width: 48%;
  border-radius: 22px;
  border: 6px solid #fff;
  box-shadow: var(--shadow);
}
.about-gallery .exp-badge {
  position: absolute;
  left: 8%;
  bottom: 50px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 16px 36px rgba(225,29,46,.35);
  animation: spinSlow 18s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.exp-badge strong {
  font-size: 1.65rem;
  display: block;
  line-height: 1;
}
.exp-badge small {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.about-copy .eyebrow { margin-bottom: .7rem; }
.about-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  margin-bottom: 1rem;
}
.about-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin: 1.35rem 0 1rem;
}
.about-tabs button {
  border: 0;
  background: #eef1f4;
  color: var(--navy);
  font-weight: 700;
  padding: .65rem 1.05rem;
  border-radius: 999px;
  cursor: pointer;
}
.about-tabs button.active {
  background: var(--red);
  color: #fff;
}
.tab-panel { display: none; color: #555; }
.tab-panel.active { display: block; }
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}
.call-chip {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.call-chip .ic {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: grid; place-items: center;
  font-size: 1.1rem;
}
.call-chip small { display: block; color: #777; font-size: .78rem; }
.call-chip strong { color: var(--navy); font-size: 1rem; }

/* —— Stats —— */
.stat-sec3 {
  position: relative;
  color: #fff;
  background: #0a1a33 url("../images/stat-bg.jpg") center/cover no-repeat;
  isolation: isolate;
}
.stat-sec3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,26,51,.88), rgba(225,29,46,.55));
  z-index: -1;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}
.stat-item h3 {
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: .35rem;
}
.stat-item p { color: rgba(255,255,255,.88); margin: 0; font-weight: 500; }

/* —— Process —— */
.process-sec3 { background: #fff; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.process-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 2rem 1.5rem;
  position: relative;
  background: linear-gradient(180deg, #fff, #fafbfc);
  transition: .3s ease;
}
.process-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.process-num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-card h3 { font-size: 1.3rem; }
.process-card p { margin: 0; color: #666; }

/* —— Solutions —— */
.solution-sec { background: var(--shade); }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.solution-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.7rem 1.3rem;
  box-shadow: var(--shadow-sm);
  transition: .3s ease;
  border-top: 4px solid transparent;
}
.solution-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--red);
}
.solution-card .ic {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--red-soft);
  color: var(--red);
  display: grid; place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.solution-card h3 { font-size: 1.15rem; }
.solution-card p { margin: 0; color: #666; font-size: .95rem; }

/* —— Video banner —— */
.video-sec3 {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background: #0a1a33 url("../images/video1.jpg") center/cover no-repeat;
  isolation: isolate;
}
.video-sec3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,26,51,.55), rgba(225,29,46,.4));
  z-index: -1;
}
.video-sec3 h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 740px;
  margin: 0 auto 1.5rem;
}
.play-btn {
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--red);
  font-size: 1.5rem;
  display: grid; place-items: center;
  margin: 0 auto 1.4rem;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  transition: .25s ease;
}
.play-btn:hover { transform: scale(1.06); color: var(--navy); }

/* —— Portfolio —— */
.recent-work { background: #fff; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.work-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow-sm);
}
.work-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: .45s ease;
}
.work-card:hover img { transform: scale(1.08); }
.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,26,51,.88));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
  color: #fff;
}
.work-overlay .tag {
  color: var(--red);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .35rem;
}
.work-overlay h3 { color: #fff; font-size: 1.15rem; margin: 0; }

/* —— Why special —— */
.why-us3 {
  position: relative;
  color: #fff;
  background: #0a1a33 url("../images/whu-us-bg.jpg") center/cover no-repeat;
  isolation: isolate;
}
.why-us3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10,26,51,.92) 0%, rgba(10,26,51,.78) 55%, rgba(225,29,46,.5) 100%);
  z-index: -1;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.why-us3 h2 { color: #fff; font-size: clamp(1.9rem, 3vw, 2.8rem); }
.why-us3 .lead { color: rgba(255,255,255,.85); max-width: 520px; }
.bars { display: grid; gap: 1.15rem; margin: 1.75rem 0; }
.bar-row label {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-weight: 700;
  margin-bottom: .4rem;
  font-size: .95rem;
}
.bar-track {
  height: 8px;
  background: rgba(255,255,255,.18);
  border-radius: 999px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #f56677, var(--red));
  border-radius: 999px;
  width: 0;
  transition: width 1.4s ease;
}
.quote-form {
  background: #fff;
  border-radius: 24px;
  padding: 1.7rem;
  box-shadow: var(--shadow);
  color: var(--ink);
}
.quote-form h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.form-grid .full { grid-column: 1 / -1; }
.form-grid input,
.form-grid select,
.form-grid textarea,
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #f8fafb;
  border-radius: 14px;
  padding: .85rem 1rem;
  outline: none;
  color: var(--navy);
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  background: #fff;
}
.form-grid textarea,
.field textarea { resize: vertical; min-height: 110px; }

/* —— Reviews —— */
.review-sec3 { background: var(--shade); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.stars { color: #ffb400; letter-spacing: .1em; margin-bottom: .85rem; font-size: .95rem; }
.review-card blockquote {
  margin: 0 0 1.25rem;
  color: #444;
  font-size: 1rem;
  flex: 1;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.reviewer .av {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #f56677);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
}
.reviewer strong { display: block; color: var(--navy); }
.reviewer small { color: #777; }

/* —— Share story —— */
.story-sec { background: var(--shade-2); }
.story-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.story-copy h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.story-form {
  background: #fff;
  border-radius: 24px;
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
}
.story-form .form-grid { margin-top: .5rem; }

/* —— Blog —— */
.blog-3 { background: #fff; }
.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.blog-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: .3s ease;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.blog-card img { width: 100%; height: 210px; object-fit: cover; }
.blog-body { padding: 1.25rem 1.35rem 1.5rem; }
.blog-meta {
  display: flex;
  gap: 1rem;
  color: #888;
  font-size: .85rem;
  margin-bottom: .65rem;
  font-weight: 600;
}
.blog-body h3 {
  font-size: 1.15rem;
  margin: 0;
}
.blog-body h3 a:hover { color: var(--red); }

/* —— Brands strip —— */
.brands-strip {
  background: #fff;
  border-block: 1px solid var(--line);
  padding: 1.5rem 0;
}
.brands-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: .7;
  filter: grayscale(1);
}
.brands-row img { height: 42px; width: auto; object-fit: contain; }

/* —— Footer —— */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.78);
  padding-top: 4.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr .9fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-brand {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.footer-brand img {
  width: 58px; height: 58px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(225,29,46,.35);
}
.footer-brand strong {
  display: block;
  color: #fff;
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: .25rem;
}
.footer-brand p { margin: 0; color: rgba(255,255,255,.65); font-size: .92rem; }
.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.site-footer a {
  display: block;
  color: rgba(255,255,255,.72);
  margin-bottom: .55rem;
  font-weight: 500;
}
.site-footer a:hover { color: var(--red); }
.footer-support p { margin-bottom: .5rem; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .75rem;
  background: rgba(225,29,46,.15);
  color: #f5b0b6;
  padding: .45rem .75rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
}
.footer-track {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 1.15rem;
}
.footer-track h4 { margin-bottom: .75rem; }
.footer-track form { display: flex; gap: .45rem; }
.footer-track input {
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: .75rem 1rem;
  outline: none;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.1rem 0 1.35rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .9rem;
}
.footer-bottom a { display: inline; margin: 0 .35rem; }

/* —— Inner pages —— */
.page-hero {
  position: relative;
  padding: 130px 0 70px;
  margin-top: -40px;
  color: #fff;
  background: #0a1a33 url("../images/hero-bg.jpg") center/cover no-repeat;
  isolation: isolate;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,26,51,.9), rgba(225,29,46,.45));
  z-index: -1;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 760px;
}
.page-hero p {
  color: rgba(255,255,255,.88);
  max-width: 620px;
  margin: 0;
}
.section { padding: 80px 0; }
.card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature-card h3 { font-size: 1.15rem; }
.icon-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: grid; place-items: center;
  font-weight: 800;
  margin-bottom: .9rem;
  font-family: var(--display);
}
.cta-band {
  background: linear-gradient(110deg, var(--navy), #1a2d57 55%, var(--red));
  color: #fff;
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}
.cta-band h3 { color: #fff; margin: 0 0 .35rem; }
.cta-band p { margin: 0; color: rgba(255,255,255,.88); }
.logo-panel {
  display: grid;
  place-items: center;
  text-align: center;
  gap: .5rem;
}
.logo-panel img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 6px rgba(225,29,46,.15), var(--shadow-sm);
  margin-bottom: .5rem;
}
.kv {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.kv span { color: #777; }
.flash {
  border-radius: 14px;
  padding: .85rem 1rem;
  margin: 1rem 0;
  font-weight: 600;
}
.flash-success { background: #e8f8ef; color: #146c43; }
.flash-error { background: #fdecea; color: #b02a37; }
.flash-info { background: #eaf2ff; color: #084298; }

/* track page leftovers */
.track-layout, .result-grid, .timeline, .status-pill, .map-box { /* keep simple fallbacks */ }
.track-layout { display: grid; gap: 1.25rem; }
.result-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.25rem; }
.timeline { border-left: 3px solid var(--red-soft); padding-left: 1rem; display: grid; gap: 1rem; }
.timeline-item { position: relative; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1rem - 7px);
  top: .35rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(225,29,46,.18);
}
.status-pill {
  display: inline-flex;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  font-weight: 700;
  font-size: .82rem;
}
#map, .map-box { min-height: 280px; border-radius: 18px; overflow: hidden; background: #e9eef3; }


/* search modal light */
.search-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,26,51,.55);
  z-index: 1300;
  place-items: center;
}
.search-modal.open { display: grid; }
.search-box {
  width: min(560px, calc(100% - 2rem));
  background: #fff;
  border-radius: 18px;
  padding: 1rem;
  display: flex;
  gap: .5rem;
}
.search-box input {
  flex: 1;
  border: 0;
  outline: none;
  font-size: 1.05rem;
  padding: .5rem;
}

/* —— Responsive —— */
@media (max-width: 1100px) {
  .service-grid,
  .solution-grid,
  .work-grid,
  .review-grid,
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { justify-content: center; order: -1; }
  .hero-visual img { width: min(480px, 90%); }
  .hero-diag .d1 { width: 42%; opacity: .7; }
  .hero-3 { padding-top: 100px; }
}

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-toggle { display: grid; }
  .nav-shell { border-radius: 22px; padding: .55rem .65rem .55rem .85rem; }
  .about-grid,
  .why-grid,
  .story-wrap,
  .result-grid,
  .grid-2 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .service-grid,
  .solution-grid,
  .work-grid,
  .review-grid,
  .blog-grid,
  .grid-3,
  .stat-grid,
  .footer-grid,
  .form-grid { grid-template-columns: 1fr; }
  .topbar-left span:nth-child(3) { display: none; }
  .brand-text strong { font-size: .95rem; }
  .hero-3 h1 { font-size: 2.35rem; }
  .sec-padding { padding: 70px 0; }
  .nav-track span { display: none; }
}

/* ===== v5 additions: missing UrbanSprint-style classes ===== */

/* packages-intro / preview-media */
.packages-intro { align-items: center; gap: 3rem; }
.packages-intro .check-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .7rem; }
.packages-intro .check-list li { display: flex; align-items: center; gap: .6rem; font-weight: 500; color: var(--navy); }
.packages-intro .check-list li i { color: var(--red); font-size: 1.1rem; }
.preview-media { position: relative; border-radius: 18px; overflow: hidden; }
.preview-media .preview-main { width: 100%; height: 360px; object-fit: cover; border-radius: 18px; display: block; }
.preview-media .play-float { position: absolute; bottom: 1rem; left: 1rem; }

/* play-float (generic floating play button) */
.play-float { width: 52px; height: 52px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; font-size: .9rem; box-shadow: 0 6px 20px rgba(225,29,46,.45); }
.play-gallery { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; font-size: 1.1rem; }

/* nearly-grid */
.nearly-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(0,0,0,.08); }
.nearly-stats { display: grid; gap: 1.5rem; }
.nearly-stat { display: flex; align-items: baseline; gap: 1rem; }
.nearly-stat strong { font-family: 'Rethink Sans', sans-serif; font-size: 2.2rem; color: var(--red); line-height: 1; }
.nearly-stat span { color: #555; font-size: .95rem; }

/* commit-bars */
.commit-bars { margin: 1.8rem 0; display: grid; gap: 1.2rem; }
.commit-bar .commit-top { display: flex; justify-content: space-between; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--navy); }
.commit-bar .commit-top strong { color: var(--red); }
.commit-bar .bar { height: 8px; background: rgba(0,0,0,.08); border-radius: 8px; overflow: hidden; }
.commit-bar .bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--red), var(--red-dark)); border-radius: 8px; }

/* about-actions / call-chip */
.about-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.call-chip { display: flex; align-items: center; gap: .8rem; }
.call-chip .ic { width: 48px; height: 48px; border-radius: 50%; background: rgba(225,29,46,.12); color: var(--red); display: grid; place-items: center; font-size: 1.1rem; }
.call-chip small { display: block; font-size: .75rem; color: #888; }
.call-chip strong { font-size: 1.05rem; color: var(--navy); }

/* story-brand / story-vert / story-points / story-media */
.story-brand { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.story-logo { border-radius: 50%; }
.story-vert { writing-mode: vertical-rl; text-orientation: mixed; font-family: 'Rethink Sans', sans-serif; font-weight: 700; letter-spacing: .15em; font-size: .8rem; color: var(--red); text-transform: uppercase; }
.story-points { display: grid; gap: 1rem; margin-top: 1.2rem; }
.story-points > div { display: flex; align-items: flex-start; gap: .8rem; }
.story-points i { color: var(--red); font-size: 1.2rem; margin-top: .15rem; }
.story-points strong { display: block; color: var(--navy); }
.story-points span { font-size: .85rem; color: #777; }
.story-media { display: grid; gap: 1rem; }
.story-media img { border-radius: 14px; width: 100%; height: 180px; object-fit: cover; }

/* result-sec / meter-grid / meter / ring / feature-ticks */
.result-sec { background: var(--shade-2); }
.result-meter { display: none; }
.meter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 1.5rem 0; }
.meter { text-align: center; }
.meter .ring { --p: 50; width: 90px; height: 90px; border-radius: 50%; background: conic-gradient(var(--red) calc(var(--p)*1%), rgba(225,29,46,.12) 0); display: grid; place-items: center; margin: 0 auto .5rem; position: relative; }
.meter .ring::before { content: ''; position: absolute; inset: 8px; border-radius: 50%; background: #fff; }
.meter .ring span { position: relative; font-family: 'Rethink Sans', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); }
.meter strong { display: block; font-size: .9rem; color: var(--navy); }
.meter small { font-size: .75rem; color: #888; }
.feature-ticks { list-style: none; padding: 0; display: grid; gap: .5rem; }
.feature-ticks li { display: flex; align-items: center; gap: .6rem; font-weight: 500; }
.feature-ticks i { color: var(--red); }

/* home-enquiry */
.home-enquiry { background: linear-gradient(180deg, #fff, var(--shade-2)); }
.home-enquiry-card { max-width: 820px; margin: 0 auto; }
.home-enquiry-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* fleet-home-grid */
.fleet-home-grid { grid-template-columns: repeat(4, 1fr); }

/* review-author */
.review-author { margin-top: 1rem; }
.review-author strong { display: block; color: var(--navy); }
.review-author span { font-size: .85rem; color: #888; }

/* topbar-loc */
.topbar-loc { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* brand-logo-wrap */
.brand-logo-wrap { display: grid; place-items: center; }
.brand-logo-sm { border-radius: 50%; }

/* footer-about / footer-blurb / footer-social */
.footer-about .footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.footer-about .footer-brand strong { font-size: 1.1rem; color: #fff; display: block; }
.footer-about .footer-brand p { font-size: .8rem; color: rgba(255,255,255,.6); margin: 0; }
.footer-blurb { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-social { gap: .5rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: rgba(255,255,255,.7); transition: .2s; }
.footer-social a:hover { background: var(--red); color: #fff; }

/* responsive for new classes */
@media (max-width: 900px) {
  .nearly-grid, .meter-grid { grid-template-columns: 1fr; }
  .fleet-home-grid { grid-template-columns: repeat(2, 1fr); }
  .story-wrap { grid-template-columns: 1fr; }
  .story-vert { writing-mode: horizontal-tb; }
}
@media (max-width: 640px) {
  .fleet-home-grid { grid-template-columns: 1fr; }
  .packages-intro { grid-template-columns: 1fr; }
}

/* legal pages */
.legal-content h2 { font-family: 'Rethink Sans', sans-serif; font-size: 1.3rem; color: var(--navy); margin: 2rem 0 .5rem; }
.legal-content p { color: #555; line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; color: #555; line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul li { margin-bottom: .3rem; }
.legal-content code { background: var(--shade-2); padding: .15rem .4rem; border-radius: 4px; font-size: .85rem; color: var(--red-dark); }

/* ================================================================
   MOBILE RESPONSIVE OVERHAUL — v8
   ================================================================ */

/* ---- Admin shell layout ---- */
.admin-shell {
    display: flex;
    min-height: 100vh;
    background: #f0f2f5;
}
.admin-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: var(--navy, #0a1a33);
    color: #c8d2e0;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.25s ease;
}
.admin-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-brand img.brand-logo-sm {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: contain;
    background: #fff;
    padding: 2px;
}
.admin-brand strong {
    color: #fff;
    font-size: 15px;
    display: block;
}
.admin-brand small {
    color: #7a8ba3;
    font-size: 11px;
}
.admin-nav-close {
    display: none;
    margin-left: auto;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
}
.admin-nav {
    flex: 1;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}
.admin-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    color: #b0bdd0;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.15s, color 0.15s;
    border-left: 3px solid transparent;
}
.admin-nav a:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}
.admin-nav a.active {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-left-color: var(--red, #e11d2e);
}
.admin-nav a i {
    width: 20px;
    text-align: center;
    font-size: 15px;
}
.admin-user {
    padding: 14px 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.admin-user span {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.admin-user small {
    color: #7a8ba3;
    font-size: 11px;
    word-break: break-all;
}
.admin-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}
.admin-backdrop.show {
    display: block;
}
.admin-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.admin-topbar {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid #e0e3e8;
    position: sticky;
    top: 0;
    z-index: 100;
}
.admin-topbar h1 {
    margin: 0;
    font-size: 18px;
    color: var(--navy, #0a1a33);
}
.admin-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--navy, #0a1a33);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}
.admin-content {
    padding: 20px;
    flex: 1;
}

/* ---- Form grid responsive ---- */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
}
.form-group.full {
    grid-column: 1 / -1;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy, #0a1a33);
    outline: none;
    box-shadow: 0 0 0 3px rgba(10,26,51,0.1);
}

/* ---- Table responsive wrapper ---- */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.table-wrap table {
    min-width: 600px;
}

/* ---- Breakpoint: 1100px ---- */
@media (max-width: 1100px) {
    .form-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    .admin-sidebar {
        width: 220px;
    }
}

/* ---- Breakpoint: 900px (tablet) ---- */
@media (max-width: 900px) {
    .admin-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        transform: translateX(-100%);
        box-shadow: 2px 0 16px rgba(0,0,0,0.2);
    }
    .admin-sidebar.open {
        transform: translateX(0);
    }
    .admin-nav-close {
        display: block;
    }
    .admin-topbar {
        display: flex;
    }
    .admin-content {
        padding: 14px;
    }
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-section, .hero {
        min-height: 420px;
    }
    .hero h1, .hero h2 {
        font-size: 28px !important;
    }
    .section-title {
        font-size: 24px !important;
    }
}

/* ---- Breakpoint: 640px (mobile) ---- */
@media (max-width: 640px) {
    .admin-content {
        padding: 10px;
    }
    .admin-topbar {
        padding: 10px 12px;
    }
    .admin-topbar h1 {
        font-size: 16px;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 12px 14px;
    }
    .card {
        padding: 14px !important;
        margin-bottom: 12px !important;
        border-radius: 8px !important;
    }
    .card h3 {
        font-size: 16px !important;
    }
    .btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 16px !important;
        font-size: 15px !important;
        margin-bottom: 8px;
    }
    .btn-outline {
        margin-bottom: 0;
    }
    .alert {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 8px;
    }
    .hero h1, .hero h2 {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }
    .hero p {
        font-size: 14px !important;
    }
    .section-title {
        font-size: 20px !important;
    }
    .footer-grid, .footer-cols {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .nav-links, .header-nav {
        display: none !important;
    }
    .nav-toggle, .mobile-menu-btn {
        display: flex !important;
    }
    .track-form input {
        font-size: 16px !important;
    }
    .timeline {
        padding-left: 20px !important;
    }
    .timeline li {
        font-size: 13px !important;
    }
    .shipment-details-table {
        font-size: 13px !important;
    }
    .shipment-details-table th,
    .shipment-details-table td {
        padding: 8px 10px !important;
    }
    .map-box, #admin-map {
        height: 300px !important;
    }
    .stat-card, .stat-box {
        padding: 16px !important;
    }
    .stat-card .stat-value, .stat-box .stat-value {
        font-size: 28px !important;
    }
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
    }
    .contact-form, .contact-info {
        padding: 16px !important;
    }
    .blog-card, .service-card {
        margin-bottom: 16px !important;
    }
    .hero-section .container, .hero .container {
        padding: 0 16px !important;
    }
    .waybill-sheet {
        padding: 12px !important;
        font-size: 12px !important;
    }
    .waybill-sheet table {
        font-size: 11px !important;
    }
}

/* ---- Breakpoint: 380px (small phones) ---- */
@media (max-width: 380px) {
    .admin-topbar h1 {
        font-size: 14px;
    }
    .card {
        padding: 10px !important;
    }
    .hero h1, .hero h2 {
        font-size: 18px !important;
    }
}

/* ---- Print styles for waybill ---- */
@media print {
    .admin-sidebar,
    .admin-topbar,
    .admin-backdrop,
    .no-print {
        display: none !important;
    }
    .admin-content {
        padding: 0 !important;
    }
    .admin-shell {
        display: block;
    }
}

/* ---- Admin dashboard action cards (blue card design) ---- */
.admin-content {
    background: #e8eaed;
}
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}
.stat {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
}
.stat span {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}
.stat strong {
    font-size: 28px;
    color: #111827;
    line-height: 1.1;
}
.action-cards {
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.action-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #2563eb;
    border-radius: 22px;
    padding: 30px 32px;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(37, 99, 235, .35);
    transition: transform .15s ease, box-shadow .15s ease;
}
.action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 99, 235, .45);
    color: #ffffff;
}
.action-card .orb {
    flex: 0 0 auto;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 36px;
}
.action-card h3 {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}
.action-card p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, .82);
}
@media (max-width: 640px) {
    .action-card {
        padding: 24px 20px;
        gap: 18px;
    }
    .action-card .orb {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }
    .action-card h3 {
        font-size: 19px;
    }
    .action-card p {
        font-size: 13px;
    }
}
