/* === CTA Section === */
.cta-section {
  position: relative;
  background: url('/assets/img/cta-truck.png') center center / cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 60px 20px;
  width: 100%;
}

.cta-content {
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content .sub {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 10px;
}

.cta-content .title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}

.cta-content .desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #eee;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: #002f5b;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.cta-button:hover {
  background-color: #002f5b;
  color: white;
  transform: scale(1.05);
}
