
/** service-detail **/

.service-detail-intro {
  position: relative;
}

.service-detail-intro .intro-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--theme-color);
}

.service-detail-intro .btn-box {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.service-detail-split .image-column .fleet-placeholder {
  min-height: 360px;
  border-radius: 10px;
}

.service-detail-split .image-column img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
}

.service-detail-split .news-section .fleet-block .image-box img,
.news-section .fleet-block .image-box img {
  height: 220px;
}

.service-detail-split .snapshot-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-detail-split .snapshot-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid #ececec;
  color: #6e6e6e;
  font-size: 16px;
  line-height: 26px;
}

.service-detail-split .snapshot-list li:last-child {
  border-bottom: 0;
}

.service-detail-split .snapshot-list li:before {
  position: absolute;
  left: 0;
  top: 18px;
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--theme-color);
}

.service-detail-steps .step-block {
  position: relative;
  background: #fff;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 35px 30px;
  margin-bottom: 30px;
  height: calc(100% - 30px);
}

.service-detail-steps .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(var(--theme-color-rgb), 0.12);
  color: var(--theme-color);
  font-size: 18px;
  font-weight: 800;
}

.service-detail-steps h4 {
  margin-bottom: 12px;
  color: var(--title-color);
}

.service-detail-steps p {
  margin: 0;
  color: #6e6e6e;
}

.service-detail-faq .faq-item {
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
}

.service-detail-faq details {
  padding: 0;
}

.service-detail-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-size: 18px;
  font-weight: 700;
  color: var(--title-color);
  position: relative;
}

.service-detail-faq summary::-webkit-details-marker {
  display: none;
}

.service-detail-faq summary:after {
  content: '+';
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--theme-color);
  font-size: 22px;
  font-weight: 400;
}

.service-detail-faq details[open] summary:after {
  content: '\2212';
}

.service-detail-faq .faq-body {
  padding: 0 28px 24px;
  color: #6e6e6e;
  line-height: 28px;
}

.service-detail-related .related-link {
  display: block;
  background: #fff;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 28px 26px;
  margin-bottom: 30px;
  color: var(--title-color);
  font-size: 18px;
  font-weight: 700;
  transition: all 0.35s ease;
}

.service-detail-related .related-link span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #6e6e6e;
}

.service-detail-related .related-link:hover {
  color: var(--theme-color);
  transform: translateY(-4px);
}

@media only screen and (max-width: 767px) {
  .service-detail-split .image-column .fleet-placeholder {
    min-height: 240px;
    margin-bottom: 30px;
  }
}
