/* Service page */
body.theme-icr .services-page{
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px 40px;
}

/* Sidebar */
body.theme-icr .service-filter.sticky-top{
  top: 140px;    /* sesuaikan tinggi header */
  z-index: 50;
}

.service-filter .form-select,
.service-filter .form-control{
  border-radius: 10px;
}

/* Mobile: sticky tetap boleh, tapi biasanya bikin sempit -> saya sarankan dimatikan */
@media (max-width: 767.98px){
  body.theme-icr .service-filter.sticky-top{
    top: 110px; /* atau non-sticky */
  }
}

body.theme-icr .service-card{
  background: rgba(0,0,0,.48);
  backdrop-filter: blur(6px);

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 18px 12px;

  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;

  gap: 2px;
}

body.theme-icr .service-card:hover{
  transform: translateY(-4px);
  background: rgba(10,10,10,.62);
  border-color: rgba(212,175,55,.28);

  box-shadow:
    0 16px 30px rgba(0,0,0,.34),
    0 0 0 2px rgba(255,255,255,.06);
}

body.theme-icr .services-grid .service-card{
  transition:
    transform .22s ease,
    opacity .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease;
}

body.theme-icr .services-grid:hover .service-card{
  opacity: .72;
  transform: scale(.985);
}

body.theme-icr .services-grid .service-card:hover{
  opacity: 1;
  transform: translateY(-6px) scale(1.02);

  background: rgba(10,10,10,.72);
  border-color: rgba(212,175,55,.32);

  box-shadow:
    0 18px 36px rgba(0,0,0,.38),
    0 0 0 2px rgba(255,255,255,.05);
}

/* avatar link */
body.theme-icr .service-avatar{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* profile image */
body.theme-icr .service-card img.profile{
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 50%;

  border: 2px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);

  box-shadow: 0 6px 14px rgba(0,0,0,.32);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

body.theme-icr .service-card:hover img.profile{
  transform: scale(1.03);
  border-color: rgba(212,175,55,.35);
  box-shadow: 0 8px 18px rgba(0,0,0,.36);
}

body.theme-icr .services-grid .service-card:hover img.profile{
  transform: scale(1.04);
  border-color: rgba(212,175,55,.38);

  box-shadow:
    0 10px 20px rgba(0,0,0,.38),
    0 0 0 3px rgba(255,255,255,.04);
}

/* name */
body.theme-icr .service-name{
  margin-top: 10px;
  line-height: 1.2;
  font-weight: 600;
  font-size: .95rem;
  color: rgba(255,255,255,.92);

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}

/* rating */
body.theme-icr .service-rating{
  margin-top: .35rem;

  display: inline-flex;
  align-items: center;
  gap: 4px;

  font-size: .72rem;
  font-weight: 600;

  padding: .25rem .55rem;
  border-radius: 999px;

  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.28);

  color: var(--icr-gold);
}

/* info link */
body.theme-icr .service-info{
  margin-top: auto;
  padding-top: .85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 34px;
  padding: .4rem .8rem;
  border-radius: .6rem;

  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff !important;

  box-shadow: 0 4px 10px rgba(0,0,0,.25);

  text-decoration: none !important;
  font-weight: 600;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .08s ease;
}

body.theme-icr .service-info:hover{
  background: rgba(212,175,55,.12);
  border-color: rgba(212,175,55,.35);
  color: var(--icr-gold) !important;
}

body.theme-icr .services-grid .service-card:hover .service-name{
  color: #ffffff;
}

body.theme-icr .services-grid .service-card:hover .service-rating{
  border-color: rgba(212,175,55,.32);
  color: var(--icr-gold);
}

body.theme-icr .services-grid .service-card:hover .service-info{
  background: rgba(212,175,55,.12);
  border-color: rgba(212,175,55,.35);
  color: var(--icr-gold) !important;
}