:root {
  --ink: #202c60;
  --accent: #fccf21;
  --accent-2: #f97d1a;
  --accent-3: #e98059;
  --bg-soft: #0b102a;
  --card: #ffffff;
}

/* HERO */
.page-hero {
  position: relative;
  background: #202c60;
  color: #fff;
  padding: 110px 20px 120px;
  text-align: center;
  overflow: hidden;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/towing-hero.jpg") center/cover no-repeat;
  opacity: 0.25;
  filter: saturate(1.1) contrast(1.05);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25),
    rgba(32, 44, 96, 0.85)
  );
  mix-blend-mode: multiply;
}
.page-hero .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}
.page-hero h1 {
  color: var(--accent);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0 0 8px;
}
.page-hero p {
  color: #f7f7f7;
  margin: 0 auto;
  max-width: 900px;
}
.page-hero .hero-cta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-cta .btn {
  background: var(--accent-2);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}
.hero-cta .btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

/* SECTION WRAPPER */
.section {
  padding: 56px 20px;
  background: #fff;
}
.section.alt {
  background: radial-gradient(circle at center, #0f173d 0%, #0a102c 100%);
}
.section.alt1 {
  background: #fff;
  margin-top: 1px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID CARDS */
.grid {
  display: grid;
  gap: 18px;
}
.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    color: #000;
  }
  .grid.cols-2 {
    grid-template-columns: 1fr;
    color: #000;
  }
}

/* CARD */
.card {
  background: var(--card);
  color: var(--ink);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}
.card1 {
  background: #ebedf6;
  color: var(--ink);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}
.card h3 {
  margin: 0 0 6px;
  color: var(--accent-2);
}
.card p {
  margin: 0;
  color: #2a2a2a;
}

/* ICON CIRCLES */
.icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
}
.icon--accent {
  background: var(--accent);
  color: #000;
}
.icon--warm {
  background: var(--accent-3);
  color: #fff;
}
.icon--ink {
  background: var(--ink);
  color: #fff;
}

/* RATES + MAP */
.towing__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  color: #000;
}
.map-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 14px;
}
.rate {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  color: #2a2a2a;
}
.rate strong {
  color: #000;
}

/* STEPS */
.steps {
  counter-reset: step;
}
.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  background: var(--accent);
  color: #000;
}

/* BADGES & CHIPS */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
  font-size: 0.9rem;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #2a2a2a;
  border-radius: 999px;
  padding: 6px 10px;
}

/* CHECKLIST */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 6px 0;
  color: #2a2a2a;
}
.checklist i {
  color: var(--accent);
  margin-top: 4px;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.gallery a {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  background: #111;
}
.gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  opacity: 0.95;
}
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* CTA BAR */
.cta-bar {
  background: linear-gradient(90deg, var(--accent-2), var(--accent-2));
  color: #fff;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-bar a {
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
}

/* SECTION TITLES */
.section h2 {
  color: #f97d1a;
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
}
.section p.lead {
  color: #e8e8e8;
  margin: 4px 0 16px;
}
.section .muted {
  color: #000000;
}

/* Keep original towing panels for backwards-compat */
.towing__panel {
  background: #fff;
  color: #202c60;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}
