/* ============================================================
   ELITE TRUCK DISPATCH — styles.css  (Full Redesign)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:    #f97316;
  --orange-dk: #ea580c;
  --orange-lt: #fb923c;
  --dark:      #0b0d14;
  --dark2:     #10121c;
  --dark3:     #161828;
  --white:     #ffffff;
  --light:     #f1f5f9;
  --muted:     #94a3b8;
  --border:    rgba(255,255,255,0.08);
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 20px 60px rgba(0,0,0,0.4);
  --font-body: 'Inter', system-ui, sans-serif;
  --font-head: 'Oswald', 'Inter', sans-serif;
  --trans:     0.3s ease;
}

html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, button { font-family: var(--font-body); }
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; }

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

/* ---------- TEXT UTILITIES ---------- */
.text-orange { color: var(--orange); }

/* ---------- SECTION HEADINGS ---------- */
.section-head { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 14px 0 16px;
  letter-spacing: 0.5px;
}
.section-head p { color: var(--muted); font-size: 17px; }
.section-head--light h2 { color: var(--dark); }
.section-head--light p { color: #475569; }

.label-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 50px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.label-tag--dark {
  background: rgba(249,115,22,0.1);
  border-color: rgba(249,115,22,0.25);
}

/* ---------- BUTTONS ---------- */
.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans), filter var(--trans);
  box-shadow: 0 6px 30px rgba(249,115,22,0.35);
  white-space: nowrap;
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(249,115,22,0.55);
  filter: brightness(1.08);
}
.btn-orange.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-orange.btn-full { width: 100%; justify-content: center; margin-top: 20px; }

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background var(--trans), border-color var(--trans), transform var(--trans);
  white-space: nowrap;
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.btn-white-outline.btn-lg { padding: 18px 40px; font-size: 16px; }

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--orange);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
}
.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar-left span, .topbar-right span {
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 37px; left: 0; right: 0;
  z-index: 999;
  background: rgba(8, 9, 18, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: top 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

/* Full-width orange accent line at the bottom of navbar */
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 30%, var(--orange) 70%, transparent 100%);
  opacity: 0.6;
  transition: opacity 0.35s ease;
}
.navbar.scrolled::after { opacity: 1; }

.navbar.scrolled {
  top: 0;
  background: rgba(6, 7, 14, 0.99);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

/* Nav inner — full-width padding, NO max-width cap on background */
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  height: 90px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo-img {
  height: 66px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(249,115,22,0.2));
  transition: filter 0.3s ease, transform 0.3s ease;
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 14px rgba(249,115,22,0.45));
  transform: scale(1.03);
}

/* Footer logo */
.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 18px;
  opacity: 0.92;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 28px;
}
.nav-link {
  position: relative;
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.4px;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 18px; right: 18px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: center;
}
.nav-link:hover {
  color: var(--white);
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active {
  color: var(--orange);
}
.nav-link.active::after { transform: scaleX(1); }

/* Nav divider between links and CTA */
.nav-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  margin-right: 28px;
  flex-shrink: 0;
}

/* Apply button */
.nav-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 22px rgba(249,115,22,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  flex-shrink: 0;
}
.nav-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249,115,22,0.6);
  filter: brightness(1.07);
}

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  transition: border-color 0.25s ease;
}
.burger:hover { border-color: var(--orange); }
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO SLIDER ---------- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 2; }
.slide.prev   { opacity: 0; z-index: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5,7,14,0.92) 0%,
    rgba(5,7,14,0.75) 50%,
    rgba(5,7,14,0.35) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding: 0 20px 0 5vw;
  animation: slideIn 0.8s ease both;
}
.slide:not(.active) .slide-content { animation: none; opacity: 0; }

@keyframes slideIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slide-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 22px;
}

.slide-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  white-space: nowrap;
}

.slide-desc {
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 36px;
  white-space: normal;
}

.slide-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero main CTA — larger, more prominent */
.btn-hero-main {
  padding: 18px 40px;
  font-size: 16px;
  letter-spacing: 0.5px;
  border-radius: 6px;
  box-shadow: 0 8px 36px rgba(249,115,22,0.5);
  text-transform: uppercase;
  font-weight: 800;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans), border-color var(--trans), transform var(--trans);
  backdrop-filter: blur(8px);
}
.slider-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.08);
}
.slider-prev { left: 28px; }
.slider-next { right: 28px; }

/* Slider dots */
.slider-dots-wrap {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.sdot {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.35);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--trans), width var(--trans), border-radius var(--trans);
}
.sdot.active {
  background: var(--orange);
  width: 30px;
  border-radius: 5px;
}

/* Slide progress bar */
.slide-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.12);
  z-index: 10;
}
.slide-progress-bar {
  height: 100%;
  background: var(--orange);
  width: 0%;
  transition: width 0.1s linear;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--dark3);
  border-top: 1px solid rgba(249,115,22,0.2);
  border-bottom: 1px solid rgba(249,115,22,0.2);
  padding: 36px 0;
}
.trust-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 120px;
}
.trust-stat .tnum {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: inline;
}
.trust-stat span:not(.tnum) {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.trust-stat label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  text-align: center;
  margin-top: 4px;
}
.trust-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* ---------- SERVICES ---------- */
.services { background: var(--dark2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.srv-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.srv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  transform: scaleX(0);
  transition: transform var(--trans);
  transform-origin: left;
}
.srv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249,115,22,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.srv-card:hover::before { transform: scaleX(1); }

.srv-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 20px;
  transition: background var(--trans), box-shadow var(--trans);
}
.srv-card:hover .srv-icon-wrap {
  background: rgba(249,115,22,0.2);
  box-shadow: 0 0 20px rgba(249,115,22,0.25);
}
.srv-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.srv-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: gap var(--trans);
}
.srv-link:hover { gap: 10px; }

/* ---------- HOW IT WORKS ---------- */
.how-works {
  background: #f8fafc;
}
.how-works h2 { color: var(--dark); }
.how-works .label-tag { margin-bottom: 0; }

.steps-wrap {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step-item {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.step-circle {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 8px 30px rgba(249,115,22,0.4);
  z-index: 1;
}
.step-circle span {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}
.step-ico { display: none; }
.step-line {
  position: absolute;
  top: 45px;
  left: calc(50% + 45px);
  width: calc(100% - 90px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(249,115,22,0.2));
}
.last-line { display: none; }

.step-item h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.step-item p { color: #475569; font-size: 14.5px; line-height: 1.65; }

/* ---------- DRIVER BENEFITS ---------- */
.drv-benefits { background: var(--dark3); }

.section-head--light h2,
.section-head--light p { color: #e2e8f0; }
.section-head--light p { color: var(--muted); }

.label-tag--dark {
  background: rgba(249,115,22,.15);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,.3);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 36px 28px 32px;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249,115,22,.4);
  box-shadow: 0 16px 40px rgba(249,115,22,.12);
}

.benefit-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(249,115,22,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--orange);
}

.benefit-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.benefit-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.benefits-cta {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ---------- WHY CHOOSE US ---------- */
.why-us { background: var(--dark2); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.why-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.why-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(249,115,22,0.5);
}
.badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-txt {
  display: block;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 4px;
}

.why-text-col h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 16px 0 18px;
  letter-spacing: 0.5px;
}
.why-lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.why-list li .fa-check {
  width: 20px; height: 20px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--orange);
  flex-shrink: 0;
}
.why-list li strong { color: var(--white); }

/* ---------- CALCULATOR ---------- */
.calculator { background: var(--dark3); }

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.calc-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 14px 0 16px;
  letter-spacing: 0.5px;
}
.calc-text p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }

.calc-note-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.2);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.calc-note-box .fa-lightbulb { color: var(--orange); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.calc-note-box strong { color: var(--white); }

.calc-box {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.calc-box h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.calc-fields { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.calc-field { display: flex; flex-direction: column; gap: 8px; }
.calc-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.calc-field label .fa { color: var(--orange); }
.calc-field input {
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-size: 16px;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.calc-field input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.calc-field input::placeholder { color: rgba(255,255,255,0.18); }

.calc-results { display: flex; flex-direction: column; gap: 0; margin-bottom: 8px; }
.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--muted);
}
.calc-result-row strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.highlight-row {
  border-bottom: none;
  margin-top: 4px;
}
.highlight-row span { color: var(--white); font-weight: 600; }
.highlight-row strong {
  font-size: 1.5rem;
  color: var(--orange);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--dark2); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform var(--trans), border-color var(--trans);
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,0.2);
}
.featured-testi {
  border-color: rgba(249,115,22,0.25);
  background: rgba(249,115,22,0.04);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.featured-testi:hover { transform: translateY(-12px); }

.tcard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.tcard-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; }
.tcard-quote { color: var(--orange); font-size: 1.6rem; opacity: 0.4; }

.testi-card > p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 26px;
  font-style: italic;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.tcard-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.tcard-author strong { display: block; font-size: 14px; font-weight: 700; }
.tcard-author span { font-size: 12px; color: var(--muted); }

/* ---------- CTA SECTION ---------- */
.cta-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,7,14,0.95) 0%, rgba(5,7,14,0.85) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.cta-content p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.cta-trust {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}
.cta-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cta-trust .fa { color: var(--orange); }

/* ---------- FOOTER ---------- */
.footer { background: #060810; }
.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 50px;
}
.footer-logo { margin-bottom: 18px; }
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.social-row { display: flex; gap: 10px; }
.soc-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.soc-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  transition: color var(--trans), gap var(--trans);
}
.footer-col ul li a .fa { font-size: 9px; color: var(--orange); }
.footer-col ul li a:hover { color: var(--white); gap: 12px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}
.footer-contact-item .fa { color: var(--orange); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  color: rgba(255,255,255,0.2);
  font-size: 13px;
}

/* ---------- STICKY APPLY ---------- */
.sticky-apply {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(249,115,22,0.5);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--trans), transform var(--trans), box-shadow var(--trans);
}
.sticky-apply.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-apply:hover { box-shadow: 0 12px 40px rgba(249,115,22,0.7); }

/* ---------- APPLY MODAL ---------- */
.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.apply-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.apply-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.apply-modal-inner {
  position: relative;
  width: 100%;
  max-width: 640px;
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2);
}
.apply-modal.open .apply-modal-inner {
  transform: translateY(0) scale(1);
}
.apply-modal-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.apply-modal-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11,13,20,0.88) 40%, rgba(11,13,20,0.75) 100%);
}
.apply-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans), border-color var(--trans);
}
.apply-modal-close:hover {
  background: rgba(249,115,22,.25);
  border-color: var(--orange);
}
.apply-modal-content {
  position: relative;
  z-index: 1;
  padding: 52px 48px 44px;
  text-align: center;
}
.apply-modal-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #fff;
  margin: 14px 0 10px;
  line-height: 1.2;
}
.apply-modal-content > p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 36px;
}
.apply-modal-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.apply-choice-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: #fff;
  text-decoration: none;
  text-align: left;
  transition: background var(--trans), border-color var(--trans), transform var(--trans);
}
.apply-choice-btn:hover {
  background: rgba(249,115,22,.15);
  border-color: var(--orange);
  transform: translateX(4px);
}
.apply-choice-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}
.apply-choice-text {
  flex: 1;
}
.apply-choice-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}
.apply-choice-text span {
  font-size: 13.5px;
  color: var(--muted);
}
.apply-choice-arrow {
  font-size: 14px;
  color: var(--orange);
  opacity: 0;
  transition: opacity var(--trans), transform var(--trans);
}
.apply-choice-btn:hover .apply-choice-arrow {
  opacity: 1;
  transform: translateX(4px);
}
.apply-modal-note {
  color: #64748b;
  font-size: 13px;
}
.apply-modal-note i { color: var(--orange); }

@media (max-width: 500px) {
  .apply-modal-content { padding: 44px 24px 36px; }
  .apply-choice-btn { gap: 14px; padding: 18px 18px; }
}

/* ---------- SCROLL REVEAL ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .why-grid  { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .featured-testi { transform: none; }
  .featured-testi:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .navbar { top: 0; }
  .nav-inner { height: 76px; padding: 0 24px; }
  .section { padding: 72px 0; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(6,7,14,0.99);
    backdrop-filter: blur(20px);
    padding: 16px 24px 28px;
    border-bottom: 2px solid var(--orange);
    gap: 2px;
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 12px 16px; font-size: 15px; }
  .nav-link::after { bottom: 6px; left: 16px; right: 16px; }
  .nav-divider { display: none; }
  .nav-apply-btn { display: none; }
  .burger { display: flex; }
  .steps-wrap { flex-direction: column; align-items: center; gap: 30px; }
  .step-item { max-width: 100%; width: 100%; }
  .step-line { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { justify-content: center; }
  .trust-divider { height: 1px; width: 60px; }
  .slide-title { font-size: clamp(2rem, 8vw, 3rem); white-space: normal; }
  .slide-content { padding: 0 20px 0 20px; }
  .slider-arrow { width: 40px; height: 40px; font-size: 14px; }
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }
  .why-img-badge { bottom: -12px; right: -8px; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .slide-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .sticky-apply { bottom: 16px; right: 16px; }
  .testi-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT SPLIT SECTION
   ============================================================ */
.about-split {
  background: var(--dark);
  padding: 100px 0 0;
  overflow: hidden;
}

/* --- Left: Image Stack --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 90px;
}

.about-imgs-col { position: relative; }

.img-stack {
  position: relative;
  width: 100%;
  height: 540px;
}

/* Large background image — right half of stack */
.img-bg-block {
  position: absolute;
  right: 0;
  top: 0;
  width: 72%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.img-bg-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Smaller portrait — top left, overlapping */
.img-portrait {
  position: absolute;
  left: 0;
  top: 30px;
  width: 46%;
  height: 52%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--dark);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 2;
}
.img-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Smaller landscape — bottom left, overlapping */
.img-landscape {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 46%;
  height: 40%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--dark);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 2;
}
.img-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Spinning circular badge */
.spin-badge {
  position: absolute;
  right: -10px;
  bottom: 80px;
  width: 130px;
  height: 130px;
  z-index: 5;
}
.spin-svg {
  width: 100%;
  height: 100%;
  animation: spinBadge 12s linear infinite;
  filter: drop-shadow(0 6px 20px rgba(249,115,22,0.5));
}
@keyframes spinBadge {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.badge-center-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  pointer-events: none;
}

/* --- Right: Content --- */
.about-content-col h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 16px 0 18px;
  letter-spacing: 0.5px;
}

.about-orange-text {
  display: block;
  color: var(--orange);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-body {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--trans), transform var(--trans);
}
.about-feat:hover {
  border-color: rgba(249,115,22,0.25);
  transform: translateY(-3px);
}
.afeat-icon {
  width: 44px; height: 44px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
}
.about-feat h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}
.about-feat p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* --- CTA Strip --- */
.about-cta-strip {
  background: var(--dark3);
  border-top: 1px solid var(--border);
}
.acta-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.acta-inner > p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.acta-text-link {
  color: var(--orange);
  font-weight: 700;
  transition: color var(--trans);
}
.acta-text-link:hover { color: var(--orange-lt); }

.acta-phone-btn {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: border-color var(--trans);
  text-decoration: none;
}
.acta-phone-btn:hover { border-color: var(--orange); }
.acta-phone-ico {
  width: 52px; height: 52px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.acta-phone-btn span {
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-head);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .img-stack  { height: 420px; }
  .about-feats { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .img-stack { height: 340px; }
  .spin-badge { width: 100px; height: 100px; right: -5px; bottom: 60px; }
  .badge-center-icon { font-size: 22px; }
  .acta-inner { flex-direction: column; height: auto; padding: 20px 24px; gap: 14px; }
  .acta-inner > p { white-space: normal; text-align: center; }
}

/* ============================================================
   COMPANY DRIVERS APPLICATION SECTION
   ============================================================ */
.drv-section { background: var(--dark2); }

.drv-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}

/* --- LEFT --- */
.drv-tag-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.drv-arrows {
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}
.drv-tag-box {
  display: inline-block;
  padding: 5px 14px;
  border: 1.5px solid rgba(255,255,255,0.3);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--white);
  text-transform: uppercase;
}

.drv-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}

/* Experience Box */
.drv-exp-box {
  position: relative;
  width: 190px;
  height: 190px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
  border: 2px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.drv-exp-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.drv-exp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}
.drv-exp-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}
.drv-exp-num {
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.18);
  letter-spacing: -2px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.drv-exp-label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.4;
  text-align: center;
}

/* Feats below exp box */
.drv-feats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.drv-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.drv-feat-ico {
  width: 40px; height: 40px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 16px;
  flex-shrink: 0;
}
.drv-feat h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}
.drv-feat p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* --- RIGHT --- */
.drv-right { display: flex; flex-direction: column; gap: 0; }

/* Image area */
.drv-img-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.drv-tab-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.5s ease;
}
.drv-tab-img.fading {
  opacity: 0;
  transform: scale(1.03);
}
.drv-img-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  transition: opacity 0.3s ease;
}

/* Tab buttons */
.drv-tabs {
  display: flex;
  width: 100%;
}
.drv-tab {
  flex: 1;
  padding: 16px 10px;
  background: var(--dark3);
  border: none;
  border-top: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid var(--border);
  border-bottom: 3px solid transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.drv-tab:last-child { border-right: none; }
.drv-tab:hover { background: var(--dark2); color: var(--white); }
.drv-tab.active {
  background: var(--dark2);
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.drv-tab .fa { font-size: 14px; }

/* Panel content */
.drv-panel {
  display: none;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 30px 30px 28px;
  animation: panelIn 0.4s ease both;
}
.drv-panel.active { display: block; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.panel-desc {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.panel-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.panel-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.panel-checks li .fa-circle-arrow-right {
  color: var(--orange);
  font-size: 16px;
  flex-shrink: 0;
}
.panel-btn { font-size: 14px; padding: 13px 26px; }

/* Responsive */
@media (max-width: 900px) {
  .drv-grid { grid-template-columns: 1fr; gap: 50px; }
  .drv-exp-box { width: 160px; height: 160px; }
  .drv-exp-num { font-size: 3.5rem; }
}
@media (max-width: 520px) {
  .drv-img-wrap { height: 200px; }
  .drv-tab { font-size: 11px; padding: 14px 6px; gap: 5px; }
  .drv-panel { padding: 22px 18px; }
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE OVERRIDES
   Breakpoints: 1024 · 900 · 768 · 600 · 480 · 380
   ============================================================ */

/* ---- 1024px: Large tablets ---- */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 28px; }
  .about-grid { gap: 50px; }
  .why-grid   { gap: 50px; }
  .calc-grid  { gap: 50px; }
  .drv-grid   { gap: 50px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---- 900px: Small tablets / large phones landscape ---- */
@media (max-width: 900px) {
  .section { padding: 80px 0; }

  /* Hero */
  .hero-slider { min-height: 540px; }
  .slide-content { padding: 0 24px; max-width: 100%; }

  /* Trust bar — wrap stats */
  .trust-bar-inner { gap: 14px 28px; }
  .trust-stat { min-width: 140px; }
  .trust-divider { display: none; }

  /* Footer one-column */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }

  /* Why choose us image */
  .why-img-wrap img { height: 380px; }
  .why-img-badge { bottom: -14px; right: -6px; }

  /* CTA section */
  .cta-section { padding: 80px 0; }
  .cta-content p { font-size: 16px; }
}

/* ---- 768px: Standard mobile (overrides the existing 768px block with additions) ---- */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Navbar logo */
  .nav-logo-img { height: 54px; }

  /* Hero — reduce content padding, allow text to wrap naturally */
  .hero-slider { min-height: 500px; }
  .slide-content { padding: 0 20px; }
  .slide-title { white-space: normal; font-size: clamp(2rem, 9vw, 3.2rem); line-height: 1.1; }
  .slide-desc  { font-size: 14px; margin-bottom: 28px; max-width: 100%; }
  .slide-tag   { margin-bottom: 14px; }
  .slide-btns  { gap: 10px; }
  .btn-hero-main { padding: 15px 26px; font-size: 14px; }

  /* Trust bar */
  .trust-bar { padding: 28px 0; }
  .trust-stat .tnum { font-size: 2.4rem; }
  .trust-stat span:not(.tnum) { font-size: 1.6rem; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .srv-card { padding: 28px 22px; }

  /* About */
  .about-split { padding: 72px 0 0; }
  .about-grid { gap: 36px; }
  .img-stack { height: 380px; }
  .about-feats { grid-template-columns: 1fr; gap: 14px; }

  /* Why choose us */
  .why-grid { gap: 36px; }
  .why-img-wrap img { height: 300px; }

  /* Driver benefits */
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .benefit-card { padding: 26px 20px 22px; }

  /* Company Drivers Application */
  .drv-grid { gap: 36px; }
  .drv-section .section { padding: 72px 0; }

  /* Calculator */
  .calc-grid { gap: 36px; }
  .calc-box { padding: 26px 22px; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .featured-testi { transform: none; }

  /* CTA */
  .cta-section { padding: 72px 0; }
  .cta-content h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .cta-content p { font-size: 15px; margin-bottom: 28px; }
  .cta-btns { gap: 12px; }

  /* Footer */
  .footer-top { padding: 52px 0 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-logo-img { height: 64px; }
}

/* ---- 600px: Phones ---- */
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .container { padding: 0 18px; }

  /* Hero */
  .hero-slider { min-height: 480px; height: 92vh; }
  .slide-content { padding: 0 18px; }
  .slide-title { font-size: clamp(1.9rem, 10vw, 3rem); }
  .slide-btns { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn-orange, .btn-white-outline { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .btn-hero-main { width: 100%; justify-content: center; }

  /* Trust bar — full column on small phones */
  .trust-bar { padding: 24px 0; }
  .trust-bar-inner { flex-direction: column; align-items: center; gap: 20px; }
  .trust-stat { min-width: unset; width: 100%; flex-direction: row; justify-content: center; gap: 12px; align-items: center; }
  .trust-stat label { margin-top: 0; text-align: left; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }

  /* About */
  .img-stack { height: 320px; }
  .spin-badge { width: 90px; height: 90px; }

  /* CTA strip */
  .acta-inner { flex-direction: column; height: auto; padding: 20px 18px; gap: 14px; align-items: flex-start; }
  .acta-inner > p { white-space: normal; font-size: 14px; }
  .acta-phone-btn { width: 100%; }
  .acta-phone-btn span { flex: 1; text-align: center; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Why choose us */
  .why-img-wrap img { height: 260px; }
  .why-img-badge { bottom: -12px; right: -8px; padding: 14px 16px; }
  .badge-num { font-size: 1.5rem; }

  /* Driver Application section */
  .drv-heading { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .drv-exp-box { width: 150px; height: 150px; }
  .drv-exp-num { font-size: 3rem; }

  /* Calculator */
  .calc-grid { gap: 28px; }
  .calc-box { padding: 22px 18px; }
  .highlight-row strong { font-size: 1.3rem; }

  /* Testimonials */
  .testi-card { padding: 26px 22px; }

  /* CTA section */
  .cta-section { padding: 60px 0; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn-orange,
  .cta-btns .btn-white-outline { width: 100%; max-width: 340px; justify-content: center; }
  .cta-trust { gap: 16px; font-size: 12px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }

  /* Section headings */
  .section-head { margin-bottom: 44px; }
  .section-head h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .section-head p { font-size: 15px; }

  /* Apply modal — full screen on phones */
  .apply-modal { padding: 0; align-items: flex-end; }
  .apply-modal-inner { border-radius: 20px 20px 0 0; max-height: 95vh; overflow-y: auto; }
  .apply-modal-content { padding: 40px 22px 32px; }
  .apply-choice-btn { padding: 16px 16px; gap: 14px; }
  .apply-choice-icon { width: 46px; height: 46px; min-width: 46px; font-size: 18px; }
}

/* ---- 480px: Small phones ---- */
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }

  /* Navbar */
  .nav-inner { height: 68px; padding: 0 16px; }
  .nav-logo-img { height: 46px; }

  /* Hero */
  .hero-slider { min-height: 460px; }
  .slide-content { padding: 0 16px; }
  .slide-title { font-size: clamp(1.7rem, 11vw, 2.6rem); }
  .slide-tag { font-size: 10px; padding: 5px 12px; margin-bottom: 12px; }
  .slider-arrow { width: 36px; height: 36px; font-size: 12px; }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }

  /* Buttons — never overflow on very small screens */
  .btn-orange,
  .btn-white-outline { white-space: normal; text-align: center; }
  .btn-orange.btn-lg,
  .btn-white-outline.btn-lg { padding: 15px 24px; font-size: 14px; }

  /* Trust */
  .trust-stat .tnum { font-size: 2rem; }
  .trust-stat span:not(.tnum) { font-size: 1.4rem; }
  .trust-stat label { font-size: 12px; }

  /* About */
  .img-stack { height: 280px; }
  .spin-badge { width: 80px; height: 80px; bottom: 50px; right: -4px; }
  .badge-center-icon { font-size: 18px; }
  .about-content-col h2 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .about-feat { padding: 16px; }

  /* Driver section */
  .drv-feats { gap: 14px; }
  .drv-feat h4 { font-size: 14px; }
  .drv-tab { letter-spacing: 0.5px; }
  .panel-desc { font-size: 13.5px; }
  .panel-checks li { font-size: 13px; }

  /* Calculator */
  .calc-text h2 { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .calc-result-row { font-size: 13px; }

  /* CTA */
  .cta-content h2 { font-size: clamp(1.6rem, 8vw, 2.4rem); }

  /* Footer */
  .footer-top { padding: 44px 0 28px; }
  .footer-logo-img { height: 54px; }

  /* Sticky button */
  .sticky-apply { bottom: 14px; right: 14px; padding: 12px 20px; font-size: 13px; }

  /* Section headings */
  .section-head h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
}

/* ---- 380px: Very small phones (iPhone SE, Galaxy A series) ---- */
@media (max-width: 380px) {
  .section { padding: 48px 0; }
  .container { padding: 0 14px; }

  .nav-inner { height: 62px; }
  .nav-logo-img { height: 40px; }

  .hero-slider { min-height: 440px; }
  .slide-title { font-size: clamp(1.55rem, 12vw, 2.2rem); }
  .slide-desc  { font-size: 13px; line-height: 1.6; }

  .section-head h2 { font-size: clamp(1.5rem, 8vw, 2rem); }
  .section-head p  { font-size: 14px; }

  .benefits-grid { gap: 12px; }
  .benefit-card { padding: 22px 16px; }
  .benefit-card h3 { font-size: 1rem; }

  .srv-card { padding: 22px 18px; }

  .testi-card { padding: 22px 18px; }

  .drv-tab { font-size: 10px; letter-spacing: 0; padding: 12px 4px; }
  .drv-exp-box { width: 130px; height: 130px; }
  .drv-exp-num { font-size: 2.5rem; }

  .calc-box { padding: 18px 14px; }

  .apply-modal-content { padding: 36px 16px 28px; }
  .apply-choice-text strong { font-size: 1rem; }
  .apply-choice-text span { font-size: 12.5px; }

  .footer-col h4 { margin-bottom: 14px; }
  .cta-trust { flex-direction: column; align-items: center; gap: 10px; }
}
