/* --- Shakedown Services Section Styles --- */
.services-section {
  background: #000;
  color: #fff;
  padding: 40px 0 60px 0;
  font-family: 'Inter', Arial, sans-serif;
}

.services-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.services-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.6em;
  letter-spacing: 1px;
}
.services-section__subtitle {
  font-size: 1.08rem;
  color: #cccccc;
  margin-bottom: 2.5em;
}
.services-section__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  margin: 7px;
}

.service-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transform: scale(1.01);
}

.service-card__img {
  width: 350px;
  height: 220px;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.2s;
  display: block;
}
.service-card:hover .service-card__img {
  filter: grayscale(0) contrast(1.08);
}
.service-card__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.32);
}
.service-card__overlay span {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  text-shadow: 0 2px 8px #000;
}
@media (max-width: 900px) {
  .services-section__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem 0;
  }
  .service-card__img {
    width: 250px;
    height: 220px;
  }
  .services-section__container {
    padding: 0 0.5rem;
  }
  .services-section__title {
    font-size: 2rem;
  }
  .service-card__overlay span {
    font-size: 3rem;
  }
}
