/* ===== CARRIER HERO ===== */
.carrier-hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}
.carrier-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 8s ease-in-out infinite alternate;
}
.carrier-hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(5,5,40,0.88) 40%, rgba(5,5,40,0.3) 100%);
}
.carrier-hero-content {
  position: absolute; z-index: 2; left: 80px; top: 50%; transform: translateY(-50%);
  max-width: 580px;
}
.carrier-hero-content h1 {
  color: #fff; font-size: 42px; font-weight: 900; line-height: 1.2; margin-bottom: 18px;
}
.carrier-hero-content p {
  color: #ccc; font-size: 14px; line-height: 1.7; margin-bottom: 28px;
}
.carrier-cta-btn {
  background-color: #c62828; color: #fff; border: none;
  padding: 16px 36px; font-size: 14px; font-weight: 700;
  letter-spacing: 1px; cursor: pointer; font-family: 'Poppins', sans-serif;
  transition: background-color 0.2s;
}
.carrier-cta-btn:hover { background-color: #a31f1f; }

/* ===== CARRIER HERO ===== */
.carrier-hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}
.carrier-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 8s ease-in-out infinite alternate;
}
.carrier-hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(5,5,40,0.88) 40%, rgba(5,5,40,0.3) 100%);
}
.carrier-hero-content {
  position: absolute; z-index: 2; left: 80px; top: 50%; transform: translateY(-50%);
  max-width: 580px;
}
.carrier-hero-content h1 {
  color: #fff; font-size: 42px; font-weight: 900; line-height: 1.2; margin-bottom: 18px;
}
.carrier-hero-content p {
  color: #ccc; font-size: 14px; line-height: 1.7; margin-bottom: 28px;
}
.carrier-cta-btn {
  background-color: #c62828; color: #fff; border: none;
  padding: 16px 36px; font-size: 14px; font-weight: 700;
  letter-spacing: 1px; cursor: pointer; font-family: 'Poppins', sans-serif;
  transition: background-color 0.2s;
}
.carrier-cta-btn:hover { background-color: #a31f1f; }

/* ===== CHOOSE YOUR PATH ===== */
.path-section {
  background-color: #f4f4f4;
  padding: 70px 80px;
}
.path-section .section-heading {
  text-align: center;
  margin-bottom: 20px;
}
.path-section .section-heading .label {
  color: #c62828;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.path-section .section-heading h2 {
  font-size: 44px;
  font-weight: 900;
  color: #0a0a2e;
  margin: 0;
}
.path-sub {
  text-align: center;
  font-size: 15px;
  color: #555;
  max-width: 620px;
  margin: 12px auto 50px auto;
  line-height: 1.7;
}

/* ===== PATH DETAIL ROWS ===== */
.path-detail-row {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
}
.path-detail-row.reverse {
  flex-direction: row-reverse;
}
.path-detail-img {
  flex: 0 0 420px;
}
.path-detail-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.path-detail-text {
  flex: 1;
}
.path-detail-type {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
  margin: 0 0 10px 0;
}
.red-type { color: #c62828; }
.navy-type { color: #1a237e; }
.path-detail-text h3 {
  font-size: 38px;
  font-weight: 900;
  color: #0a0a2e;
  margin: 0 0 14px 0;
  line-height: 1.2;
}
.path-detail-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 18px 0;
}
.path-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.path-bullets li {
  font-size: 13px;
  color: #333;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.path-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c62828;
}
.path-req-line {
  font-size: 12px;
  color: #777;
  line-height: 1.6;
  border-top: 1px dashed #ddd;
  padding-top: 14px;
  margin: 0;
}
.path-req-line strong {
  color: #c62828;
  font-size: 10px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .path-section { padding: 50px 20px; }
  .path-detail-row,
  .path-detail-row.reverse {
    flex-direction: column;
    gap: 24px;
  }
  .path-detail-img { flex: none; width: 100%; }
  .path-detail-text h3 { font-size: 26px; }
  .path-section .section-heading h2 { font-size: 30px; }
}

/* ===== ZTRUCKS ADVANTAGE ===== */
.advantage-section {
  background-color: #f4f4f4;
  padding: 70px 80px;
}
.advantage-section .section-heading {
  text-align: center;
  margin-bottom: 20px;
}
.advantage-section .section-heading h2 {
  font-size: 40px;
  font-weight: 900;
  color: #0a0a2e;
  margin: 0;
}
.advantage-sub {
  text-align: center;
  font-size: 14px;
  color: #555;
  max-width: 650px;
  margin: 12px auto 40px auto;
  line-height: 1.7;
}
.advantage-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.advantage-split-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.adv-item {
  background: #fff;
  border-radius: 8px;
  padding: 22px 24px;
  border-left: 4px solid #c62828;
  transition: box-shadow 0.2s;
}
.adv-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.adv-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0a0a2e;
  margin: 0 0 8px 0;
}
.adv-item p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}
.advantage-split-right {
  background: #0a0a2e;
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.adv-stat {
  text-align: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.adv-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.adv-stat:first-child {
  padding-top: 0;
}
.adv-stat-num {
  font-size: 46px;
  font-weight: 900;
  color: #c62828;
  line-height: 1;
  margin-bottom: 6px;
}
.adv-stat-label {
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 4px 0;
}
.adv-stat-sub {
  font-size: 11px;
  color: #aaa;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .advantage-section { padding: 50px 20px; }
  .advantage-split { grid-template-columns: 1fr; }
}

/* ===== 3-STEP ONBOARDING PIPELINE ===== */
.onboarding-section {
  background-color: #f4f4f4;
  padding: 70px 80px;
}
.onboarding-section .section-heading {
  text-align: center;
  margin-bottom: 20px;
}
.onboarding-section .section-heading h2 {
  font-size: 40px;
  font-weight: 900;
  color: #0a0a2e;
  margin: 0;
}
.onboarding-sub {
  text-align: center;
  font-size: 14px;
  color: #555;
  max-width: 620px;
  margin: 12px auto 40px auto;
  line-height: 1.7;
}
.pipe-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}
.pipe-row {
  display: flex;
  align-items: stretch;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.pipe-row:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.pipe-num {
  background: #c62828;
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  width: 90px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}
.pipe-body {
  background: #fff;
  flex: 1;
  padding: 22px 28px;
  border: 1px solid #e0e0e0;
  border-left: none;
}
.pipe-tag {
  font-size: 10px;
  font-weight: 700;
  color: #c62828;
  letter-spacing: 2px;
  margin: 0 0 6px 0;
}
.pipe-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0a0a2e;
  margin: 0 0 8px 0;
}
.pipe-body p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ===== READY TO JOIN THE FLEET ===== */
.fleet-section {
  display: flex;
  gap: 60px;
  padding: 70px 80px;
  background-color: #f4f4f4;
  align-items: flex-start;
}
.fleet-left {
  flex: 1;
}
.fleet-tag {
  font-size: 11px;
  font-weight: 700;
  color: #c62828;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}
.fleet-title {
  font-size: 32px;
  font-weight: 900;
  color: #0a0a2e;
  margin: 0 0 12px 0;
  line-height: 1.25;
}
.fleet-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 24px 0;
}
.fleet-img {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.fleet-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.fleet-contact h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0a0a2e;
  margin: 0 0 6px 0;
}
.fleet-contact-sub {
  font-size: 12px;
  color: #666;
  margin: 0 0 20px 0;
  line-height: 1.6;
}
.fleet-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.fleet-icon {
  font-size: 22px;
  margin-top: 2px;
  flex-shrink: 0;
}
.fleet-contact-label {
  font-size: 11px;
  font-weight: 700;
  color: #0a0a2e;
  margin: 0 0 2px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fleet-contact-val {
  font-size: 14px;
  font-weight: 700;
  color: #c62828;
  margin: 0 0 2px 0;
}
.fleet-contact-hint {
  font-size: 11px;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

/* Form box */
.fleet-right {
  flex: 0 0 480px;
}
.fleet-form-box {
  background: #fff;
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-top: 4px solid #c62828;
}
.fleet-form-title {
  font-size: 18px;
  font-weight: 800;
  color: #0a0a2e;
  margin: 0 0 6px 0;
}
.fleet-form-sub {
  font-size: 12px;
  color: #777;
  margin: 0 0 24px 0;
  line-height: 1.6;
}
.fleet-field {
  margin-bottom: 16px;
}
.fleet-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.fleet-field input,
.fleet-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fafafa;
  transition: border-color 0.2s;
}
.fleet-field input:focus,
.fleet-field select:focus {
  outline: none;
  border-color: #c62828;
  background: #fff;
}
.fleet-submit {
  width: 100%;
  background: #c62828;
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  border-radius: 4px;
  margin-top: 6px;
  transition: background-color 0.2s;
}
.fleet-submit:hover {
  background-color: #a31f1f;
}

@media (max-width: 900px) {
  .fleet-section {
    flex-direction: column;
    padding: 50px 20px;
  }
  .fleet-right {
    flex: none;
    width: 100%;
  }
}