.mfc-survey {
    position: relative;
    background-color: hsl(var(--dark-2));
    padding-top:1.5rem
}

 .filter {
    margin-top:24px
  }

@media (min-width:992px) {
  .filter {
    margin-top:0
  }
  .mfc-survey {
     padding:2rem 0 1.5rem
  }
}

.grid-container{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap:.75rem;
}

.card {
  border:transparent;
  box-shadow: 0 6px 12px rgba(5, 5, 5, .35);
  transition: 1s;
}

.survey-card {
    opacity: 0;
    transform: scale(0.95);
    transition: 
        opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.survey-card.show {
    opacity: 1;
    transform: scale(1);
}

.survey-card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.card-body {
  padding:.75rem
}
.card-image {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 0.375rem 0.375rem 0 0;
}
.card-image:before {
  content:'';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
.card-image > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.card-image_title {
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  padding:.5rem .75rem;
  font-size:1.125rem;
  font-weight: 600;
  text-shadow: 5px 2px 5px rgba(23, 23, 23, 0.5);
}

.listitem {
  display: flex;
  flex-wrap: wrap;
  color:hsl(var(--white))
}
.listitem:not(:first-child) {
  margin-top:.5rem;
  padding-top:.5rem;
  border-top:1px dashed #4f535882;
}
.listitem-caption {
  flex: 1;
  margin-right:1rem
}

.listitem-desc {
  flex:none
}
.listitem-text {
  font-size:.85rem;
  line-height: 1.325;
}


.luxury-placeholder {
    text-align: center;
    animation: fadeInLuxury 0.6s ease-in-out;
    grid-column: 1 / -1;
}

.luxury-icon {
    color: hsl(var(--gold-5));
    margin-bottom: 5px;
    font-size:7rem
}

.luxury-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(var(--light));
    margin-bottom: 5px;
}

.luxury-desc {
    font-size: 0.925rem;
    color: hsl(var(--light));
    max-width: 420px;
    margin: 0 auto;
}

@keyframes fadeInLuxury {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}


.loading-trigger {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 50px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease, margin-top 0.3s ease;
    pointer-events: none;
    color: hsl(var(--light));
    font-size: 0.95rem;
}

.loading-trigger.show {
    margin-top:30px;
    opacity: 1;
    transform: translateY(0);
}

/* Spinner dots bounce */
.spinner {
    display: flex;
    align-items: center;
    gap: 5px;
}

.spinner div {
    width: 8px;
    height: 8px;
    background: hsl(var(--gold-5));
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}

.spinner div:nth-child(2) {
    animation-delay: 0.2s;
}
.spinner div:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    to {
        transform: translateY(-6px);
        opacity: 0.6;
    }
}

/* Pesan selesai */
.loading-done {
    display:none;
    transition:0.3 ease;
}

.loading-done.show {
    display:block;
}