/* ===========================
   SERVICES PAGE
   =========================== */
body {
  background: #fff;
  overflow-x: hidden;
}

.services-wrapper {
  margin-top: 65px;
  padding: 56px 80px 72px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* HEADER */
.services-header {
  text-align: center;
  margin-bottom: 48px;
}

.services-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 10px;
}

.services-title {
  font-size: 40px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 12px;
}

.services-desc {
  font-size: 13.5px;
  color: #666;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto;
}

/* CARDS GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(26, 86, 255, 0.12);
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 4px 24px rgba(26, 86, 255, 0.07), 0 1px 4px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(26, 86, 255, 0.14), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.card-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--blue);
}

.card-body { flex: 1; }

.card-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.card-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 14px;
}

.card-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}

.card-btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  width: fit-content;
  box-shadow: 0 4px 16px rgba(26, 86, 255, 0.25);
}

.card-btn:hover {
  background: var(--blue-dark, #0b30c0);
  box-shadow: 0 6px 20px rgba(26, 86, 255, 0.35);
}

/* CARD IMAGE */
.card-img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 4px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover .card-img img {
  transform: scale(1.04);
}

/* PRICE TOGGLE */
.price-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.price-tab {
  font-family: var(--font, 'Poppins', sans-serif);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1.5px solid rgba(26, 86, 255, 0.25);
  background: transparent;
  color: #999;
  cursor: pointer;
  transition: all 0.2s;
}

.price-tab.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.price-tab:hover:not(.active) {
  border-color: var(--blue);
  color: var(--blue);
}

/* TESTIMONI GALERI */
.testimoni-section {
  border-top: 1px solid #f0f0f0;
  padding-top: 48px;
  padding-bottom: 24px;
}

.testimoni-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.testimoni-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}

.testimoni-desc {
  font-size: 13px;
  color: #888;
  margin-bottom: 0;
}

.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 200px 200px;
  gap: 12px;
}

.testimoni-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(26, 86, 255, 0.08);
}

.testimoni-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.testimoni-item:hover img { transform: scale(1.04); }
.testimoni-item.tall { grid-row: span 2; }
.testimoni-item.wide { grid-column: span 2; }

.btn-lihat-semua {
  background: transparent;
  border: 1.5px solid rgba(26, 86, 255, 0.3);
  color: var(--blue);
  font-family: var(--font, 'Poppins', sans-serif);
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-lihat-semua:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.testimoni-item.hidden { display: none; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .services-wrapper { padding: 32px 16px 56px; }
  .services-title { font-size: 28px; }
  .services-header { margin-bottom: 32px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }

  .card-img { height: 160px; }
  .service-card { padding: 20px 20px 18px; }

  .testimoni-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px;
    gap: 8px;
  }
  .testimoni-item.tall { grid-row: span 1; }
  .testimoni-item.wide { grid-column: span 2; }
  .testimoni-title { font-size: 18px; }
}

@media (max-width: 480px) {
  .services-wrapper { padding: 24px 14px 48px; }
  .services-title { font-size: 24px; }
  .testimoni-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .testimoni-item { height: 180px; }
  .testimoni-item.wide { grid-column: span 1; }
  .testimoni-item.tall { grid-row: span 1; }
}