
.service-section {
  background: #f5f7f9;
}

/* ===== Service Sidebar (Accordion 2-level) ===== */
.service-sidebar {
  background: #fff;
  border: 1px solid #e6e9ee;
  border-radius: 8px;
  padding: 8px 0;
  overflow: hidden;
}

.service-sidebar .sidebar-group {
  border-bottom: 1px solid #f1f3f6;
}

.service-sidebar .sidebar-group:last-child {
  border-bottom: none;
}

.service-sidebar .sidebar-group-header {
  padding: 10px 14px;
  gap: 8px;
  transition: background-color .2s ease;
}

.service-sidebar .sidebar-group.active > .sidebar-group-header,
.service-sidebar .sidebar-group-header:hover {
  background-color: #f1f8f3;
}

.service-sidebar .sidebar-group-link {
  color: #1f2937;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  cursor: pointer;
}

.service-sidebar .sidebar-group-link:hover,
.service-sidebar .sidebar-group.active > .sidebar-group-header .sidebar-group-link {
  color: #1aa260;
}

.service-sidebar .chevron-toggle {
  background: transparent;
  border: none;
  padding: 4px 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.service-sidebar .chevron {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-right: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  transform: rotate(45deg);
  transition: transform .25s ease;
}

.service-sidebar .chevron-toggle.collapsed .chevron {
  transform: rotate(-45deg);
}

.service-sidebar .sidebar-children {
  padding: 4px 0 10px;
}

.service-sidebar .sidebar-children li a {
  display: block;
  padding: 8px 14px 8px 30px;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  position: relative;
  transition: background-color .2s ease, color .2s ease;
}

.service-sidebar .sidebar-children li a:hover {
  background-color: #f5f7f9;
  color: #1aa260;
}

.service-sidebar .sidebar-children li.active a {
  background-color: #e8f5ee;
  color: #1aa260;
  font-weight: 600;
}

.service-sidebar .sidebar-children li.active a::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #1aa260;
  border-radius: 50%;
}

.service-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #f1f3f6;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-thumb > img {
  height: 400px;
  object-fit: cover;
  object-position: center;
}

.service-section.with-sidebar .service-thumb > img {
  height: 300px;
}

.service-icon {
  position: absolute;
  bottom: -40px;
  right: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-color);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.service-icon img {
  width: 28px;
}

.service-content {
  padding: 40px 20px 20px;
}

.service-content h5 {
  color: var(--purple-text);
  margin-bottom: 10px;
  font-family: var(--font-family);
  font-size: 26px;
}

.service-content .price {
  -webkit-line-clamp: 1;
  min-height: auto;
}

.service-content p {
  color: var(--black-text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  min-height: 68px;
}

.read-more {
  color: var(--blue-text);
  margin-top: 10px;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}
