/* SERVICE DETAIL SECTION */
.service-detail{
  background:#ffffff;
  padding: 90px 0;
}

.service-detail-alt{
  background:#f7f9f8;
}

.service-row{
  min-height: 460px;
}

.service-image-box{
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, #f5f7f6 0%, #edf2ef 100%);
  box-shadow: 0 18px 42px rgba(0,0,0,0.10);
  border: 1px solid rgba(25,135,84,0.08);
  height: 460px;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.service-image-box img{
  width: 100%;
  height: 100%;
  object-fit: contain;   /* show full image */
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.service-image-box:hover img{
  transform: scale(1.03);
}

.service-content{
  padding-right: 12px;
}

.service-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:56px;
  height:36px;
  padding:0 15px;
  border-radius:999px;
  background:rgba(25,135,84,0.10);
  color:var(--primary);
  font-weight:700;
  font-size:0.95rem;
  letter-spacing:0.5px;
  margin-bottom:20px;
}

.service-content .section-title{
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.service-content p{
  margin-bottom: 18px;
  color: #667085;
  line-height: 1.85;
  font-size: 1.04rem;
  max-width: 95%;
}

.service-points{
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-point{
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.service-point i{
  color:var(--primary);
  font-size:1.1rem;
  margin-top:4px;
  flex-shrink: 0;
}

.service-point span{
  color:var(--text);
  line-height:1.7;
  font-size: 1rem;
}

/* SUMMARY */
.services-summary{
  background:#fff;
}

.service-summary-card{
  position:relative;
  background:linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
  border:1px solid rgba(27,122,75,0.08);
  border-radius:24px;
  padding:34px 26px;
  box-shadow:0 12px 30px rgba(0,0,0,0.06);
  transition:all 0.35s ease;
  text-align:center;
  overflow:hidden;
}

.service-summary-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg, #198754, #41b06e);
}

.service-summary-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(0,0,0,0.10);
  border-color:rgba(25,135,84,0.18);
}

.service-summary-card i{
  display:flex;
  align-items:center;
  justify-content:center;
  width:72px;
  height:72px;
  margin:0 auto 20px;
  border-radius:50%;
  background:rgba(25,135,84,0.10);
  color:var(--primary);
  font-size:2rem;
  transition:all 0.35s ease;
}

.service-summary-card:hover i{
  background:var(--primary);
  color:#fff;
  transform:scale(1.08);
}

.service-summary-card h5{
  font-weight:700;
  margin-bottom:12px;
  color:var(--dark);
  font-size:1.2rem;
}

.service-summary-card p{
  margin-bottom:0;
  color:#666;
  line-height:1.7;
  font-size:0.98rem;
}

/* RESPONSIVE */
@media (max-width: 1199px){
  .service-content p{
    max-width: 100%;
  }
}

@media (max-width: 991px){
  .service-detail{
    padding: 70px 0;
  }

  .service-row{
    min-height: auto;
  }

  .service-image-box{
    height: 380px;
    padding: 14px;
  }

  .service-image-box img{
    height: 100%;
  }

  .service-content{
    padding-right: 0;
  }

  .service-content .section-title{
    font-size: 2.35rem;
  }
}

@media (max-width: 767px){
  .service-detail{
    padding: 56px 0;
  }

  .service-image-box{
    border-radius: 22px;
    height: 290px;
    padding: 12px;
  }

  .service-tag{
    margin-bottom: 14px;
  }

  .service-content .section-title{
    font-size: 1.95rem;
    margin-bottom: 16px;
  }

  .service-content p{
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 14px;
  }

  .service-points{
    margin-top: 20px;
    gap: 12px;
  }
}

@media (max-width: 575px){
  .service-image-box{
    border-radius: 18px;
    height: 220px;
    padding: 10px;
  }

  .service-summary-card{
    padding:26px 18px;
    border-radius:20px;
  }

  .service-summary-card i{
    width:64px;
    height:64px;
    font-size:1.7rem;
    margin-bottom:16px;
  }

  .service-summary-card h5{
    font-size:1.08rem;
  }

  .service-summary-card p{
    font-size:0.94rem;
  }
}