
/* LAYANAN UNGGULAN*/

/* WRAPPER */
.layanan-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.layanan-left {
  width: 30%;
}

.layanan-left h3 {
  font-size: 28px;
  font-weight: 600;
}

.layanan-left p {
  margin-top: 10px;
  color: #6B7280;
  line-height: 150%;
}

/* NAV */
/* NAV */
.layanan-nav{
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 28px;
}


/* BUTTON */
.layanan-nav button{
    width: 54px;
    height: 54px;

    border-radius: 50%;

    border: 1.5px solid #0E9F8D;

    background: transparent;
    color: #0E9F8D;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    transition: all 0.3s ease;

    cursor: pointer;
}


/* ACTIVE */
.layanan-nav button.active{
    background: #0E9F8D;
    color: #fff;

    box-shadow:
    0 8px 20px rgba(14,159,141,0.25);
}


/* HOVER */
.layanan-nav button:hover{
    transform: translateY(-3px);

    background: #0E9F8D;
    color: #fff;

    box-shadow:
    0 8px 20px rgba(14,159,141,0.25);
}

/* RIGHT */
.layanan-right {
  width: 70%;
  overflow: hidden;
}

/* SLIDER */
.layanan-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

/* CARD (PERSEGI PANJANG) */
.layanan-card {
  min-width: 240px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

/* IMAGE */
.card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* GRADIENT BRAND */
.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,159,141,0.95),
    rgba(108,196,161,0.4),
    transparent
  );
}

/* CONTENT */
.card-content{
  position: absolute;

  inset: 0;

  padding: 10px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  text-align: center;

  color: #fff;

  z-index: 2;
}
/* TITLE */
.card-content h5{
  font-size: 20px;
  font-weight: 700;

  line-height: 1.3;

  margin-bottom: 10px;

  color: #fff;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
}

/* DESC */
.card-content p{
  font-size: 15px;

  line-height: 1.7;

  margin: 0;

  color: rgba(255,255,255,0.92);

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;

  overflow: hidden;
}

/* HOVER */
.layanan-card:hover {
  transform: translateY(-6px);
  transition: 0.3s;
}

/* SCROLLBAR HIDE */
.layanan-slider::-webkit-scrollbar {
  display: none;
}
.layanan-card:hover .card-img {
  transform: scale(1.08);
  transition: 0.4s;
}




/* =========================
   MOBILE LAYANAN
========================= */

@media(max-width:768px){

  /* WRAPPER */
  .layanan-wrapper{
    flex-direction:column;

    gap:24px;
  }


  /* LEFT */
  .layanan-left{
    width:100%;
  }


  .layanan-left h3{
    font-size:26px;
  }


  .layanan-left p{
    font-size:14px;

    line-height:1.7;
  }


  /* NAV */
  .layanan-nav{
    margin-top:18px;
  }


  .layanan-nav button{
    width:44px;
    height:44px;

    font-size:16px;
  }


  /* RIGHT */
  .layanan-right{
    width:100%;
  }


  /* SLIDER */
  .layanan-slider{
    gap:14px;

    overflow-x:auto;

    padding-bottom:6px;
  }


  /* CARD */
  .layanan-card{
    min-width:220px;

    height:300px;

    flex-shrink:0;
  }


  /* CONTENT */
  .card-content{
    padding:18px;
  }


  .card-content h5{
    font-size:18px;
  }


  .card-content p{
    font-size:13px;

    line-height:1.5;
  }

}

