/* Vehicle wraps page */

.hero-para {
  color: rgba(250, 250, 249, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-top: 20px;
}

/* ── Second section: Why Wraps grid ──
   polish.css !important rules handle the shared layout;
   these are fallback/local values only */
.why-text {
  display: flex;
  flex-flow: column;
}

/* ── Vehicle wrap product section ── */
.service-section {
  width: 100%;
}

.service-section--divider {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-header {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  text-align: center;
}

.sv-service-lead {
  max-width: 560px;
  color: rgba(250, 250, 249, 0.65);
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 4px;
}

/* Suppress yellow gradient on text-span-5 / highlight inside dark sections */
.dark-grey-bg .text-span-5,
.dark-grey-bg .highlight {
  background: none;
  padding: 0;
  color: var(--bright-yellow);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
  width: 100%;
}

/* ── Card: clean white premium style ── */
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-top: 4px solid var(--bright-yellow);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-top-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
  border-top-color: var(--black);
}

.service-card-img-wrap {
  overflow: hidden;
  line-height: 0;
}

.service-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
  display: block;
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 20px 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.service-card-body .h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
}

.service-card-subtitle {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.service-card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px;
  flex: 1;
}

.service-card-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-card-feature::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  background-color: var(--bright-yellow);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.service-card-feature span {
  color: var(--body-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}

.service-card-footer {
  padding: 0 20px 20px;
}

.service-card-cta {
  display: block;
  text-align: center;
  padding: 10px 16px;
  background: var(--black);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.service-card-cta:hover {
  background: var(--bright-yellow);
  color: var(--black);
}

/* ── Responsive ── */
@media screen and (max-width: 991px) {
  .cards-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .hero-section-wrapper {
    min-height: 58vh;
  }

  .cards-3 {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
