/* Intro tweak */
.towing-intro h1 {
  color: #00ffd0;
}

/* ================= FEATURES ================= */
.tow-features {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 25px;
  padding: 50px 8%;
}

.tow-card {
  background: #020617;
  color: white;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  transition: all .35s ease;
  border: 1px solid rgba(255,255,255,.05);
}

.tow-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,.4);
}

.emoji {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* ================= SHOWCASE ================= */
.tow-showcase {
  padding: 40px 8% 10px;
  text-align: center;
}

.tow-showcase h2 {
  font-size: 1.8rem;
  color: #020617;
}
/* ================= MASSIVE SHOWCASE ================= */
.tow-hero-block {
  position: relative;
  height: 520px;
  margin: 60px 0;
  overflow: hidden;
}

.tow-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

/* Dark cinematic overlay */
.tow-hero-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.65),
    rgba(0,0,0,.25),
    transparent
  );
}

/* Text overlay */
.tow-hero-overlay {
  position: absolute;
  bottom: 40px;
  left: 8%;
  color: white;
  max-width: 500px;
  z-index: 2;
}

.tow-hero-overlay h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.tow-hero-overlay p {
  opacity: 0.85;
  line-height: 1.6;
}
.mech-cta h2{
    text-shadow: 2px 2px 2px rgb(100,100,100,0.8);
}
/* =========================
   MOBILE HERO FIX (TOWING)
   ========================= */
@media (max-width: 768px) {

  .tow-hero-block {
    height: 400px;           /* shorter hero */
    margin: 20px 0 10px;
  }

  .tow-hero-img {
    object-position: center; /* better crop */
    transform: scale(1.02);  /* remove over-zoom */
  }

  /* Move text higher + center it */
  .tow-hero-overlay {
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    text-align: center;
    padding: 0 16px;
    max-width: 90%;
  }

  .tow-hero-overlay h2 {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .tow-hero-overlay p {
    font-size: 0.9rem;
  }
}
