/* ── ServiceSection ───────────────────────────────── */
.service-section {
  margin-top: 100px;
  margin-bottom: 100px;
  padding-top: 0 !important;
}

/* Cabecera */
.service-section .react-heading.style9 {
  text-align: center;
  margin-bottom: 50px;
}
.service-section .react-heading .image-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.service-section .react-heading .title-img.top img {
  width: 28px;
  height: 28px;
}
.service-section .react-heading .sub-text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2C4A28;
}
.service-section .react-heading .title {
  font-size: 42px;
  font-weight: 700;
  color: #1a3a1a;
  line-height: 1.2;
  margin: 0;
}

/* Grid de tarjetas */
.ss-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  .ss-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .ss-grid { grid-template-columns: 1fr; }
}

/* Tarjeta individual */
.single-service-start {
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
}

/* Área de imagen */
.single-service-start .image-area {
  position: relative;
}
.single-service-start .image-area .thumbnail {
  display: block;
  overflow: hidden;
}
.single-service-start .image-area .thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.single-service-start:hover .image-area .thumbnail img {
  transform: scale(1.06);
}

/* Icono flotante sobre la imagen */
.single-service-start .image-area .icon {
  position: absolute;
  bottom: -28px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: #fff;
  border: 1px solid #e4ece4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 1;
}
.single-service-start .image-area .icon img,
.single-service-start .image-area .icon svg {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

/* Contenido de la tarjeta */
.single-service-start .inner-content {
  padding: 46px 20px 0 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.single-service-start .inner-content > a {
  text-decoration: none;
}
.single-service-start .inner-content .title {
  font-size: 18px;
  font-weight: 700;
  color: #1a3a1a;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.single-service-start:hover .inner-content .title {
  color: #2C4A28;
}
.single-service-start .inner-content .disc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

/* Botón Read More */
.single-service-start .rts-btn.btn-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #2C4A28;
  color: #fff !important;
  padding: 15px 22px;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 500;
  margin-top: auto;
  transition: background-color 0.25s;
}
.single-service-start .rts-btn.btn-primary:hover {
  background-color: #3d6836;
}

/* Enlace Ver todos */
.ss-view-all {
  text-align: center;
  margin-top: 30px;
  font-size: 15px;
  color: #444;
}
.ss-view-all a {
  color: #2C4A28;
  text-decoration: underline;
}
