/* --- Hero Section --- */
.service-hero {
  position: relative;
  background: url("/assets/images/hero_service.jpg") no-repeat center
    center/cover;
  height: 450px;
  display: flex;
  align-items: center;
}

.service-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

/* --- Service Cards --- */
.service-box {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  height: 100%;
  border-bottom: 3px solid transparent;
}

.service-box:hover {
  transform: translateY(-5px);
  border-bottom: 3px solid var(--honda-red);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: #ffebeb;
  color: var(--honda-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem auto;
}

/* --- Feature Service Cards --- */
.feature-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
  background: white;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.feature-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.feature-card:hover .feature-img-wrapper img {
  transform: scale(1.1);
  /* Zoom effect */
}

.feature-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--honda-red);
  color: white;
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: bold;
  border-top-right-radius: 10px;
}

.feature-body {
  padding: 1.5rem;
}

.feature-title {
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}
