/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  color: #1c1f2a;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ========== CSS VARIABLES ========== */
:root {
  --navy: #002060;
  --navy-dark: #001540;
  --navy-light: #0a3082;
  --slate: #708090;
  --slate-light: #a8b3bf;
  --slate-dark: #4d5663;
  --gold: #f59e0b;
  --white: #ffffff;
  --bg-soft: #f4f6fa;
  --text-muted: #5b6573;
  --shadow-sm: 0 2px 8px rgba(0,32,96,.08);
  --shadow-md: 0 8px 24px rgba(0,32,96,.12);
  --shadow-lg: 0 20px 50px rgba(0,32,96,.18);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--navy);
  line-height: 1.15;
}

.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--slate);
  padding-bottom: 8px;
  margin-bottom: 14px;
  position: relative;
}
.section-tag::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--navy);
}

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 18px;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 640px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  position: relative;
  font-family: 'Inter', sans-serif;
  letter-spacing: .5px;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  padding: 16px 38px;
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  padding: 16px 38px;
  font-weight: 700;
}
.btn-gold:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 30px;
}
.btn-outline:hover {
  background: #fff;
  color: var(--navy);
}
.btn-light {
  background: #fff;
  color: var(--navy);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  padding: 16px 38px;
}
.btn-light:hover {
  background: var(--bg-soft);
  transform: translateY(-2px);
}

/* ========== TOP STRIP ========== */
.top-strip {
  background: var(--navy-dark);
  color: #cbd2dc;
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-strip i {
  color: var(--slate-light);
  margin-right: 6px;
}
.top-strip .info-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.top-strip .socials {
  display: flex;
  align-items: center;
}
.top-strip .socials .support-hours {
  margin-right: 15px;
}
.top-strip .socials .social-links-wrap a {
  margin-left: 14px;
  font-size: 13px;
  color: #cbd2dc;
  transition: color .2s;
}
.top-strip .socials .social-links-wrap a:hover {
  color: #fff;
}

.us-dot-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ========== HEADER & NAV ========== */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--navy);
  letter-spacing: 1px;
}
.logo-mark {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 22px;
  box-shadow: var(--shadow-sm);
}
.logo span {
  color: var(--slate);
}
.logo small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--slate);
  margin-top: -4px;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a, .nav-links li a {
  font-size: 14px;
  font-weight: 600;
  color: #1c1f2a;
  letter-spacing: .5px;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color .2s;
  cursor: pointer;
}
.nav-links a::after, .nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width .3s ease;
}
.nav-links a:hover, .nav-links li a:hover {
  color: var(--navy);
}
.nav-links a:hover::after, .nav-links li a:hover::after,
.nav-links a.active::after, .nav-links li a.active::after,
.nav-links .current-menu-item > a::after {
  width: 100%;
}
.nav-links a.active, .nav-links li a.active,
.nav-links .current-menu-item > a {
  color: var(--navy);
}

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 12px 24px !important;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--navy-light);
  color: #fff !important;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
}
.mobile-contact-info {
  display: none !important;
}

/* ========== SUBPAGE HERO ========== */
.subpage-hero {
  background: var(--navy-dark);
  background-image: 
    linear-gradient(135deg, rgba(0, 32, 96, 0.95) 0%, rgba(0, 10, 30, 0.98) 100%),
    url('../../screenshot.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 25px 25px;
}
.subpage-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.subpage-hero-content h1 {
  color: #fff;
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.subpage-hero-content p {
  color: var(--slate-light);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== ABOUT PAGE VALUES & MISSION ========== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.value-card {
  background: #fff;
  border: 1px solid #eef0f4;
  padding: 30px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  border-top: 4px solid var(--slate);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--navy);
}
.value-card .icon-wrap {
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 18px;
}
.value-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ========== FLEET SPECIFICATIONS ========== */
.fleet-section {
  padding: 100px 0;
  background: var(--bg-soft);
}
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.fleet-specs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.spec-item {
  background: #fff;
  padding: 18px 24px;
  border-radius: 4px;
  border-left: 4px solid var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.spec-item strong {
  color: var(--navy);
}

/* ========== HISTORY TIMELINE ========== */
.timeline-section {
  padding: 100px 0;
  background: #fff;
}
.timeline {
  position: relative;
  max-width: 800px;
  margin: 50px auto 0;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #eef0f4;
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}
.timeline-badge {
  position: absolute;
  top: 25px;
  left: 100%;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border: 4px solid #fff;
  border-radius: 50%;
  z-index: 2;
  transform: translateX(-50%);
}
.timeline-item:nth-child(even) .timeline-badge {
  left: 0;
}
.timeline-content {
  background: var(--bg-soft);
  padding: 24px;
  border-radius: 4px;
  border-top: 3px solid var(--navy);
}
.timeline-content h4 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ========== CONTACT SECTION & FORMS ========== */
.contact-section {
  padding: 100px 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.terminal-card {
  background: var(--bg-soft);
  padding: 30px;
  border-radius: 4px;
  border-left: 4px solid var(--navy);
  position: relative;
}
.terminal-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.terminal-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.terminal-links {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.terminal-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.terminal-links a:hover {
  color: var(--gold);
}

.contact-form-panel {
  background: #fff;
  border: 1px solid #eef0f4;
  padding: 40px;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}
.contact-form-panel h3 {
  font-size: 26px;
  margin-bottom: 8px;
}
.contact-form-panel p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* ========== SVG INTERACTIVE MAP ========== */
.lanes-map-section {
  padding: 80px 0;
  background: var(--navy-dark);
  color: #fff;
  text-align: center;
}
.lanes-map-section h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 12px;
}
.map-container {
  max-width: 800px;
  margin: 40px auto 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}
.map-svg {
  width: 100%;
  height: auto;
}

/* ========== FAQ ACCORDION ========== */
.faq-section {
  padding: 100px 0;
  background: var(--bg-soft);
}
.faq-wrap {
  max-width: 850px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #eef0f4;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-question {
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question i {
  transition: transform 0.3s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  transition: all 0.3s cubic-bezier(0, 1, 0, 1);
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 24px;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* ========== HERO SECTION (HOMEPAGE) ========== */
.hero {
  position: relative;
  background: var(--navy);
  background-image:
    radial-gradient(circle at 80% 50%, rgba(112,128,144,.15) 0%, transparent 50%),
    linear-gradient(135deg, #001a4d 0%, #002060 50%, #0a3082 100%);
  color: #fff;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .5;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero-text .eyebrow i {
  color: var(--slate-light);
}
.hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  color: #fff;
  font-weight: 800;
  margin-bottom: 22px;
  line-height: 1.05;
}
.hero h1 .accent {
  color: var(--slate-light);
  font-style: italic;
}
.hero h1 .highlight {
  position: relative;
  display: inline-block;
}
.hero h1 .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 6px;
  background: var(--slate);
  z-index: -1;
  opacity: .6;
}
.hero p {
  color: rgba(255,255,255,.85);
  font-size: 16px;
  margin-bottom: 34px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  gap: 16px 28px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-meta-item i {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-light);
  font-size: 12px;
}
.hero-meta-item span {
  font-size: 11px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  line-height: 1.3;
}
.hero-meta-item strong {
  display: block;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  letter-spacing: .5px;
}

/* ========== HERO VISUAL & FLOATING BADGE ========== */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
}
.hero-van-main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,32,96,0.6) 0%, rgba(0,32,96,0) 60%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-card:hover .hero-van-main-img {
  transform: scale(1.05);
}
.hero-card-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  background: rgba(0, 32, 96, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 30px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
  width: 90%;
  box-shadow: var(--shadow-md);
  margin-bottom: 10px;
}
.hero-card-content .big-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
}
.hero-card-content .big-num span {
  color: var(--slate-light);
  font-size: 32px;
  vertical-align: top;
}
.hero-card-content p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
  opacity: .9;
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  color: var(--navy);
  padding: 20px 28px;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
  border-left: 4px solid var(--navy);
}
.floating-badge i {
  font-size: 32px;
  color: var(--navy);
}
.floating-badge strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  color: var(--navy);
  letter-spacing: .5px;
}
.floating-badge span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========== SERVICES STRIP ========== */
.services-strip {
  background: #fff;
  padding: 60px 0;
  border-bottom: 1px solid #eef0f4;
}
.services-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.service-icon-card {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid #eef0f4;
  transition: transform .3s ease;
  cursor: pointer;
}
.service-icon-card:last-child {
  border-right: none;
}
.service-icon-card:hover {
  transform: translateY(-6px);
}
.service-icon-card .icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 28px;
  transition: all .3s ease;
}
.service-icon-card:hover .icon-wrap {
  background: var(--navy);
  color: #fff;
  transform: rotate(360deg);
}
.service-icon-card h4 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 6px;
}
.service-icon-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========== ABOUT SECTION (INTRO) ========== */
.about {
  padding: 100px 0;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual .main-img {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
  box-shadow: var(--shadow-lg);
}

.about-experience {
  position: absolute;
  right: -20px;
  bottom: -20px;
  background: var(--navy);
  color: #fff;
  padding: 30px 36px;
  text-align: center;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  z-index: 3;
}
.about-experience .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.about-experience .num span {
  color: var(--slate-light);
}
.about-experience p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 600;
}
.about-content h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 18px;
}
.about-content > p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.8;
}
.about-features {
  margin: 30px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-feature i {
  width: 42px;
  height: 42px;
  background: var(--bg-soft);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  margin-bottom: 2px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0;
}
.about-feature p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ========== STATS BAR ========== */
.stats {
  background: var(--navy);
  background-image:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 70px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 25px 25px;
  opacity: .6;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}
.stat-item {
  text-align: center;
  padding: 0 10px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child {
  border-right: none;
}
.stat-item .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 60px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: 1px;
}
.stat-item .num span {
  color: var(--slate-light);
}
.stat-item p {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  font-weight: 600;
}

/* ========== SOLUTIONS GRID ========== */
.solutions {
  padding: 100px 0;
  background: var(--bg-soft);
  position: relative;
}
.solutions-head {
  text-align: center;
  margin-bottom: 60px;
}
.solutions-head .section-tag {
  display: inline-block;
}
.solutions-head .section-tag::after {
  left: 50%;
  transform: translateX(-50%);
}
.solutions-head .section-subtitle {
  margin: 0 auto;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.solution-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .35s ease;
  position: relative;
  border-top: 3px solid transparent;
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--navy);
}
.solution-card-head {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
}
.solution-card-head::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.solution-card-head i {
  font-size: 28px;
  color: var(--slate-light);
  display: inline-block;
}
.solution-card-head h3 {
  color: #fff;
  font-size: 22px;
  margin: 0;
}
.solution-card-body {
  padding: 26px 28px 30px;
}
.solution-card-body p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.solution-card-body ul li {
  font-size: 13px;
  color: #1c1f2a;
  padding: 6px 0 6px 24px;
  position: relative;
  border-bottom: 1px dashed #eef0f4;
}
.solution-card-body ul li:last-child {
  border-bottom: none;
}
.solution-card-body ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--navy);
  font-size: 11px;
  top: 8px;
}

/* ========== CAREERS & DRIVER APPLICATIONS ========== */
.careers-section {
  padding: 100px 0;
  background: var(--navy-dark);
  background-size: cover;
  background-position: center;
  color: #fff;
}
.careers-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.careers-info h2 {
  color: #fff;
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 24px;
}
.careers-info p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.perks-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.perk-item i {
  color: var(--gold);
  font-size: 20px;
}
.perk-item span {
  font-weight: 600;
  font-size: 15px;
}
.driver-form-card {
  background: #fff;
  border-radius: 4px;
  padding: 35px;
  box-shadow: var(--shadow-lg);
  color: var(--navy-dark);
}
.driver-form-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.driver-form-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.driver-form .form-group {
  margin-bottom: 18px;
  text-align: left;
}
.driver-form .form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.driver-form .form-group input, .driver-form .form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
}

/* ========== TRUST PARTNERS ========== */
.trust-section {
  padding: 80px 0;
  background: var(--bg-soft);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 40px;
}
.trust-logo {
  text-align: center;
  padding: 18px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--slate);
  letter-spacing: 1px;
  border: 1px solid #e6e9ee;
  transition: all .3s ease;
  cursor: pointer;
  background: #fff;
}
.trust-logo:hover {
  color: var(--navy);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ========== CTA QUICK BANNER ========== */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(0, 32, 96, .92) 0%, rgba(0, 21, 64, .95) 100%),
    radial-gradient(circle at 30% 50%, rgba(112,128,144,.3) 0%, transparent 50%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border: 60px solid rgba(255, 255, 255, .04);
  border-radius: 50%;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 0;
  max-width: 680px;
}
.cta-banner h2 span {
  color: var(--slate-light);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-dark);
  color: #a8b3bf;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--slate-light);
}
.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.footer-col .footer-logo {
  margin-bottom: 20px;
  color: #fff;
}
.footer-col .footer-logo .logo-mark {
  background: #fff;
  color: var(--navy);
}
.footer-col .footer-logo small {
  color: var(--slate-light);
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  font-size: 14px;
  color: #a8b3bf;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.footer-col ul li a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-col ul li a i {
  font-size: 10px;
}
.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.footer-contact-item i {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-light);
  flex-shrink: 0;
  font-size: 14px;
}
.footer-contact-item span {
  font-size: 14px;
  color: #a8b3bf;
  line-height: 1.5;
}
.footer-contact-item strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom .socials a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  margin-left: 8px;
  color: #a8b3bf;
  transition: all .3s ease;
}
.footer-bottom .socials a:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-3px);
}

/* ========== MODAL POPUPS ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 21, 64, 0.7);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  padding: 20px;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-container {
  background: #fff;
  max-width: 600px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(-40px);
  transition: transform .3s ease;
}
.modal-overlay.active .modal-container {
  transform: translateY(0);
}
.modal-header {
  background: var(--navy);
  color: #fff;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h3 {
  color: #fff;
  font-size: 24px;
  margin: 0;
}
.modal-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity .2s;
}
.modal-close:hover {
  opacity: 1;
}
.modal-body {
  padding: 30px;
}
.modal-body .form-group {
  margin-bottom: 15px;
  text-align: left;
}
.modal-body .form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.modal-body .form-group input, 
.modal-body .form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
}

/* ========== CUSTOM TOAST NOTIFICATION ========== */
.custom-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy-dark);
  color: #fff;
  padding: 16px 24px;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 9999;
  border-left: 4px solid var(--gold);
}
.custom-toast.active {
  transform: translateY(0);
  opacity: 1;
}

/* ========== LAZY LOADING & PERFORMANCE ========== */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity .4s ease-in-out;
}
img.loaded {
  opacity: 1;
}

/* ========== ACCESSIBILITY — FOCUS STATES ========== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--navy-light);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========== RESPONSIVE MEDIA QUERIES ========== */
@media (max-width:1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-meta {
    justify-content: center;
  }
  .hero-visual {
    height: 380px;
    max-width: 520px;
    margin: 40px auto 0;
    width: 100%;
  }
  .floating-badge {
    left: 0;
  }
  .about-grid, .careers-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .services-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-icon-card:nth-child(3) {
    border-right: none;
  }
  .solutions-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:768px) {
  .top-strip {
    display: none !important;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-md);
    gap: 18px;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .mobile-contact-info {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid #eef0f4;
    margin-top: 6px;
    width: 100%;
    text-align: left;
  }
  .mobile-contact-item {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: none;
  }
  .mobile-contact-item i {
    color: var(--navy);
    width: 16px;
    text-align: center;
  }
  .mobile-contact-item strong {
    color: var(--navy);
  }
  .mobile-contact-info a {
    font-size: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
    letter-spacing: inherit !important;
    text-transform: none !important;
    position: static !important;
    padding: 0 !important;
    cursor: pointer;
  }
  .mobile-contact-info a::after {
    display: none !important;
  }
  .mobile-socials {
    display: flex;
    gap: 12px;
    margin-top: 6px;
  }
  .mobile-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--navy) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
  }
  .mobile-socials a:hover {
    background: var(--navy);
    color: #fff !important;
  }
  .hero {
    min-height: auto;
  }
  .hero .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero h1 {
    font-size: clamp(22px, 6vw, 30px);
    line-height: 1.15;
  }
  .hero-text p {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .hero-meta {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    width: auto;
    text-align: left;
    margin: 24px auto 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 24px;
  }
  .hero-visual {
    height: 320px;
  }
  .hero-card-content .big-num {
    font-size: 64px;
  }
  .services-strip-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-icon-card {
    border-right: none;
    border-bottom: 1px solid #eef0f4;
    padding-bottom: 24px;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
  .stat-item {
    border-right: none;
  }
  .stat-item .num {
    font-size: 48px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-banner .container {
    flex-direction: column;
    text-align: center;
  }
  .about-experience {
    right: 50%;
    transform: translateX(50%);
    bottom: -30px;
  }
  .driver-form-card {
    padding: 24px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    padding: 20px 20px 20px 40px;
  }
  .timeline-item:nth-child(odd) {
    text-align: left;
  }
  .timeline-badge {
    left: 20px !important;
    transform: translateX(-50%);
  }
}

@media (max-width:480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
  .hero-meta {
    align-items: flex-start;
  }
}
