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

/* ===== SECTION HEADING (shared) ===== */
.section-heading { text-align: center; margin-bottom: 40px; }
.section-heading .label { color: #c62828; font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.section-heading h2 { color: #1a237e; font-size: 32px; font-weight: 800; margin: 0; }

/* ===== FREIGHT SOLUTIONS ===== */
.freight-section {
  background-color: #f4f4f4;
  padding: 70px 80px;
  border-top: 4px solid #c62828;
}
.freight-section .label { color: #c62828; }
.freight-section h2 { color: #1a237e; }

.freight-detail-row {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto 70px auto;
}
.freight-detail-row.reverse {
  flex-direction: row-reverse;
}
.freight-detail-img {
  flex: 0 0 420px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.freight-detail-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.freight-detail-text {
  flex: 1;
}
.freight-detail-type {
  font-size: 12px;
  font-weight: 700;
  color: #c62828;
  letter-spacing: 2px;
  margin: 0 0 10px 0;
}
.freight-detail-text h3 {
  font-size: 26px;
  font-weight: 900;
  color: #0a0a2e;
  margin: 0 0 14px 0;
  line-height: 1.3;
}
.freight-detail-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 18px 0;
}
.freight-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.freight-bullets li {
  font-size: 13px;
  color: #333;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.freight-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c62828;
}

@media (max-width: 900px) {
  .freight-section { padding: 50px 20px; }
  .freight-detail-row,
  .freight-detail-row.reverse {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }
  .freight-detail-img { flex: none; width: 100%; }
  .freight-detail-text h3 { font-size: 20px; }
}
/* ===== SHIPPER ADVANTAGE (dark numbered cards) ===== */
.advantage-section {
  background-color: #f9f9f9;
  padding: 70px 80px;
}
.advantage-list {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.advantage-item {
  background-color: #0a0a2e;
  border-radius: 8px;
  padding: 32px 28px;
  transition: box-shadow 0.2s;
}
.advantage-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.advantage-num {
  font-size: 42px;
  font-weight: 900;
  color: #c62828;
  line-height: 1;
  margin-bottom: 12px;
}
.advantage-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.advantage-item p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.7;
  margin: 0;
}

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

/* ===== BOTTOM CTA BLOCK ===== */
.shipper-cta {
  padding: 70px 80px;
  background-color: #fff;
}
.shipper-cta-box {
  background: #0a0a2e;
  border-top: 6px solid #c62828;
  border-radius: 8px;
  padding: 50px 50px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.shipper-cta-left {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 40px;
}
.shipper-cta-left .cta-num {
  font-size: 56px;
  font-weight: 900;
  color: #c62828;
  line-height: 1;
  margin-bottom: 10px;
}
.shipper-cta-left .cta-stat-label {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px 0;
}
.shipper-cta-left .cta-stat-sub {
  color: #aaa;
  font-size: 12px;
  margin: 0;
  line-height: 1.6;
}
.shipper-cta-right {
  flex: 2;
}
.shipper-cta-right h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 14px 0;
  line-height: 1.35;
}
.shipper-cta-right p {
  color: #aaa;
  font-size: 13px;
  margin: 0 0 24px 0;
  line-height: 1.7;
}
.shipper-cta-right button {
  background: #c62828;
  color: #fff;
  border: none;
  padding: 15px 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.2s;
}
.shipper-cta-right button:hover {
  background-color: #a31f1f;
}

@media (max-width: 900px) {
  .shipper-cta { padding: 40px 20px; }
  .shipper-cta-box { flex-direction: column; padding: 30px 20px; }
  .shipper-cta-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-right: 0; padding-bottom: 24px; }
}