.service-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  font-family: sans-serif;
}

/* Judul */
.title {
  font-size: 32px;
  margin-bottom: 10px;
  color: #111;
}

.subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}

/* 3 Box Atas */
.stats-container {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.stats-box {
  flex: 1 1 0;
  min-width: 250px;
  background: #d10e32;
  color: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stats-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.stats-box .value {
  font-size: 22px;
  font-weight: bold;
}

.stats-box .label {
  font-size: 14px;
  margin-top: 5px;
}

/* 2 Box Bawah */
.service-section {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.specs-box, .service-box {
  flex: 1 1 0;
  min-width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 20px;
}

/* Tabel */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.specs-table th, .specs-table td {
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 14px;
  white-space: nowrap;
}

.specs-table th {
  background: #d10e32;
  color: #fff;
  text-align: left;
}

.note {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}

/* Service Highlights */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 10px;
}

.service-list .icon {
  font-size: 20px;
  color: #d10e32;
  flex-shrink: 0;
  margin-top: 3px;
}

.service-list strong {
  color: #d10e32;
}

/* Responsif */
@media (max-width: 768px) {
  .stats-box {
    min-width: 100%;
  }
  .specs-box, .service-box {
    min-width: 100%;
  }
}

/* Biar  tetap kebaca di HP */
.service-list li div {
  white-space: pre-line;
}

/* BATASS */
.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  position: relative;
}

/* Level container */
.level {
  display: flex;
  justify-content: center;
  gap: 30px;
  position: relative;
}

/* Kotak */
.box {
  background: #fff;
  border: 2px solid #ccc;
  padding: 12px 20px;
  border-radius: 10px;
  min-width: 220px;
  text-align: center;
  font-weight: 500;
  position: relative;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  z-index: 1;
}

/* Highlight */
.box.highlight {
  background: #d62828;
  color: #fff;
  border: 2px solid #d62828;
}

/* Hover */
.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

/* Garis vertikal antar level */
.level::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 25px;
  background: #aaa;
}

.level:first-child::before {
  display: none;
}

/* Garis penghubung ke bawah untuk setiap box */
.level .box::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  width: 2px;
  height: 25px;
  background: #aaa;
}

/* Garis horizontal antar box */
.level .box::after {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  height: 2px;
  background: #aaa;
  z-index: -1;
}

/* Hilangkan kalau cuma 1 kotak */
.level .box:only-child::after,
.level .box:only-child::before {
  display: none;
}

/* SPECIAL CASE: level pertama dengan 2 kotak ke 1 kotak bawahnya */
.org-chart .level:first-child::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .level {
    flex-direction: column;
    gap: 20px;
  }

  .level .box::after {
    display: none;
  }
}

/*BATES 3 */