.kabel-finder {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  margin: 30px 0;
}

/* HERO */
.finder-hero {
  position: relative;
  background: linear-gradient(rgba(22, 26, 30, 0.72), rgba(22, 26, 30, 0.72)),
              url('../img/kabel_finder/auto.jpg') center center / cover no-repeat;
  min-height: 260px;
  display: flex;
  align-items: center;
}

.finder-hero-overlay {
  width: 100%;
  padding: 36px 32px;
  color: #fff;
}

.finder-hero h2 {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.finder-hero p {
  margin: 0;
  font-size: 17px;
  opacity: 0.95;
}

/* STEP LINE */
.finder-steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  max-width: 520px;
}

.finder-steps-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 4px;
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%);
  border-radius: 999px;
  z-index: 1;
}

.finder-steps-progress {
  height: 100%;
  width: 0;
  background: #ffc107;
  border-radius: 999px;
  transition: width 0.3s ease;
}

.finder-step-circle {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #6c757d;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  transition: all 0.25s ease;
}

.finder-step-circle.active {
  background: #ffc107;
  color: #212529;
  border-color: #ffc107;
}

.finder-step-circle.done {
  background: #ffc107;
  color: #212529;
  border-color: #ffc107;
}

/* BODY */
.finder-body {
  padding: 32px;
}

.finder-step-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.finder-step-head h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #212529;
}

.finder-step-head span {
  font-size: 15px;
  color: #6c757d;
  font-weight: 600;
}

/* CARD GRID */
.finder-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.finder-card {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.22s ease;
}

.finder-card:hover {
  transform: translateY(-3px);
  border-color: #ffc107;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.finder-card.active {
  border-color: #ffc107;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.finder-card-image {
  aspect-ratio: 4 / 3;
  background: #f8f9fa;
  overflow: hidden;
}

.finder-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.finder-card-label {
  padding: 16px 14px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #212529;
}

/* BUTTON CHOICES */
.finder-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.finder-choice-btn {
  min-width: 140px;
  padding: 14px 18px;
  border: 2px solid #dee2e6;
  border-radius: 12px;
  background: #fff;
  color: #212529;
  font-weight: 600;
  transition: all 0.2s ease;
}

.finder-choice-btn:hover {
  border-color: #ffc107;
  background: #fffdf5;
}

.finder-choice-btn.active {
  border-color: #ffc107;
  background: #fff8db;
  color: #212529;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
}

/* RESULT PREVIEW / RESULT CARD */
.finder-result-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.finder-result-image {
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
}

.finder-result-image img {
  width: 100%;
  height: auto;
  display: block;
}

.finder-result-info h4 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
}

.finder-result-info p {
  margin: 0 0 14px;
  color: #495057;
}

.finder-result-list {
  margin: 0 0 18px;
  padding-left: 18px;
  color: #343a40;
}

.finder-result-list li {
  margin-bottom: 6px;
}

.finder-result-btn {
  min-height: 48px;
  padding: 12px 20px;
  font-weight: 700;
  border-radius: 12px;
}

/* NAV */
.finder-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #eef1f4;
}

.finder-nav-step {
  font-size: 15px;
  font-weight: 700;
  color: #6c757d;
}

#finderPrevBtn,
#finderNextBtn {
  min-width: 140px;
  min-height: 46px;
  border-radius: 12px;
  font-weight: 600;
}

/* HIDDEN */
.d-none {
  display: none !important;
}

/* MOBILE */
@media (max-width: 991.98px) {
  .finder-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .finder-result-card {
    grid-template-columns: 1fr;
  }

  .finder-step-head h3 {
    font-size: 21px;
  }
}

@media (max-width: 575.98px) {
  .finder-hero {
    min-height: 220px;
  }

  .finder-hero-overlay {
    padding: 24px 18px;
  }

  .finder-hero h2 {
    font-size: 26px;
  }

  .finder-body {
    padding: 20px;
  }

  .finder-card-grid {
    grid-template-columns: 1fr;
  }

  .finder-choice-row {
    flex-direction: column;
  }

  .finder-choice-btn {
    width: 100%;
  }

  .finder-nav {
    flex-direction: column;
    align-items: stretch;
  }

  #finderPrevBtn,
  #finderNextBtn {
    width: 100%;
  }

  .finder-nav-step {
    text-align: center;
  }
}