body
{
    background-color: #333333;
    font-family: "Inter", sans-serif;
    color: #ffffff;
    position: relative;
    
}
html, body {
    overflow-x: hidden;/* pastikan body tidak lebih tinggi */
    
  }


/* .primary
{
    color: #ee8132;
} */


.social {
  position: fixed;
  bottom: 20px;
  z-index: 3;
  right: 0; /* pindah ke kanan */
}

.social ul {
  padding: 20px;
  transform: translate(270px, 0); /* sembunyi ke kanan */
}

.social ul li {
  display: flex;  
  cursor: pointer;             /* pakai flex biar gampang atur posisi */
  align-items: center;
  margin: 5px;
  background: rgba(0, 0, 0, 0.36);
  width: 300px;
  text-align: left;
  padding: 10px;
  border-radius: 30px 0 0 30px; /* radius dibalik */
  transition: all 1s;
  
}
@media (min-width: 426px) {
  .cs-button.translate-middle{
      transform: translate(-10%, -50%) !important;
  }
}

.social ul li small {
  color: white;
  color: rgba(255, 255, 255, 0.404);
  text-decoration: none;
}

.social ul li:hover {
  transform: translate(-110px, 0); /* keluar ke kiri */
  background: rgba(255, 255, 255, 0.4);
}

.social ul li:hover small {
  color: #000;
}

.social ul li:hover i {
  color: #fff;
  background: rgba(0, 0, 0, 0.36);
  transform: rotate(360deg);
  transition: all 1s;
}

.social ul li i {
  margin-right: 10px; /* icon sekarang di kiri */
  color: #000;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  transform: rotate(0deg);
}

/* #chat-btn {
  transition: all 0.8s ease;
  transform: translateX(0);
}

#chat-btn:hover {
  transform: translateX(-50px);
  background: rgba(255, 255, 255, 0.4);
}

#chat-btn:hover img {
  transform: rotate(360deg);
  transition: all 1s ease;
} */

#chat-box {
  display: none;
  position: fixed;
  bottom: 120px;
  right: 30px;
  width: 380px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  z-index: 999;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border: 1px solid rgba(238, 129, 50, 0.1);
}

.chat-header {
  background: linear-gradient(135deg, #333333 0%, #4a4a4a 100%);
  color: white;
  padding: 20px;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.chat-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ee8132 0%, #ff9c52 100%);
}

.chat-header span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-header span::before {
  content: '💬';
  font-size: 20px;
}

#close-chat {
  width: 32px;
  height: 32px;
  background: rgba(238, 129, 50, 0.2);
  border: 1px solid rgba(238, 129, 50, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

#close-chat:hover {
  background: #ee8132;
  transform: scale(1.1);
}

#close-chat i {
  color: white;
  font-size: 12px;
}

.chat-content {
  max-height: 320px;
  overflow-y: auto;
  padding: 20px;
  background: #fafafa;
}

.chat-content::-webkit-scrollbar {
  width: 6px;
}

.chat-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.chat-content::-webkit-scrollbar-thumb {
  background: #ee8132;
  border-radius: 10px;
}

.chat-input {
  display: flex;
  border-top: 1px solid #eee;
  background: white;
}

.chat-input input {
  flex: 1;
  border: none;
  padding: 18px 20px;
  outline: none;
  font-size: 15px;
  background: transparent;
  color: #333;
}

.chat-input input::placeholder {
  color: #999;
}

.chat-input button {
  background: linear-gradient(135deg, #ee8132 0%, #ff9c52 100%);
  color: white;
  border: none;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 15px;
}

.chat-input button:hover {
  background: linear-gradient(135deg, #d6732b 0%, #ee8132 100%);
  transform: translateY(-1px);
}

/* Messages */
.bot-msg, .user-msg {
  margin: 12px 0;
  padding: 12px 16px;
  border-radius: 18px;
  display: inline-block;
  max-width: 85%;
  font-size: 15px;
  line-height: 1.4;
  word-wrap: break-word;
}

.bot-msg {
  background: white;
  border: 1px solid #eee;
  color: #333;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}

.bot-msg::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 15px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid white;
}

.user-msg {
  background: linear-gradient(135deg, #ee8132 0%, #ff9c52 100%);
  color: white;
  align-self: flex-end;
  margin-left: auto;
  float: right;
  clear: both;
  box-shadow: 0 2px 12px rgba(238, 129, 50, 0.3);
  position: relative;
}

.user-msg::before {
  content: '';
  position: absolute;
  right: -8px;
  top: 15px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #ee8132;
}

/* Choice Buttons */
.choice-btn {
  display: inline-block;
  margin: 8px 5px 0 0;
  padding: 10px 16px;
  background: linear-gradient(135deg, #333333 0%, #4a4a4a 100%);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.choice-btn:hover {
  background: linear-gradient(135deg, #ee8132 0%, #ff9c52 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(238, 129, 50, 0.3);
  text-decoration: none;
  color: white;
}

.choice-btn.report {
  background: linear-gradient(135deg, #ee8132 0%, #ff9c52 100%);
}

.choice-btn.report:hover {
  background: linear-gradient(135deg, #333333 0%, #4a4a4a 100%);
}



















.judul-section {
    font-size: 3.5rem; /* default untuk hp */
  }
.subjudul {
    font-size: 2rem; /* default untuk hp */
  }
  
  @media (min-width: 576px) {
    .judul-section {
      font-size: 4rem; /* tablet kecil */
    }
  }
  @media (min-width: 426px) {
    /* .cs-button.translate-middle{
        transform: translate(-10%, -50%) !important;
    } */
  }
  
  @media (min-width: 768px) {
    .judul-section {
      font-size: 4.5rem; /* tablet besar */
    }
  }
  
  @media (min-width: 1200px) {
    .judul-section {
      font-size: 5rem; /* laptop/desktop besar */
    }
    .subjudul {
      font-size: 2.5rem; /* laptop/desktop besar */
    }
  }  
.h-75
{
    height: 75%;
}

.bg-normal
{
    background-color: #333333;
}

.search-box {
  position: relative;
  width: 200px;
  transition: all 0.4s ease;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #888;
  transition: color 0.3s ease, transform 0.3s ease;
  font-size: 1.1rem;
}

.search-box input {
  border-radius: 50px;
  padding: 10px 15px;
  padding-left: 40px; /* biar gak nabrak icon */
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

/* Animasi saat fokus */
.search-box input:focus {
  border-color: #ee8132;
  box-shadow: 0 0 12px rgba(255, 197, 90, 0.5);
  outline: none;
}

.search-box input:focus + .search-icon,
.search-box:focus-within .search-icon {
  color: #ee8132;
  transform: translateY(-50%) scale(1.2);
}



.line {
    position: relative;   /* supaya circle bisa absolute di dalamnya */
    width: 2px;
    height: 200px;
    background-color: #ffffff; /* awalnya putih */
    border-radius: 3px;
    margin: 0 auto;
  }

  .bg-orange
  {
    background-color: #ee8132;
  }
  
  .circle {
    position: absolute;
    bottom: 0;  /* nempel di bawah garis */
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
  }
  
  
  
  .nav-foot ul {
    margin:0;
    padding:0;
    display:flex;
    position: relative;
  }
  
  .nav-foot ul li {
    list-style:none;
    margin:0 8px;
    position: relative;
    transition:0.5s;
  }
  
  .nav-foot ul li a {
    display: block;
    position:relative;
    text-decoration:none;
    padding:5px;
    font-size:13px;
    font-family: sans-serif;
    color:#333333;
    text-transform:uppercase;
    transition:0.5s;
  }
  
  /* Hover effect utama */
  .nav-foot ul:hover li a {
    transform:scale(1.2);
    opacity:0.2;
    filter:blur(3px);
  }
  
  .nav-foot ul li a:hover {
    transform:scale(1.6);
    opacity:1;
    filter:blur(0);
    text-decoration:none;
    color:#333333;
  }
  
  .nav-foot ul li a:before {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#D9d9d9;
    transition:0.5s;
    transform-origin:right;
    transform:scaleX(0);
    z-index:-1;
  }
  
  .nav-foot ul li a:hover:before {
    transition:transform 0.5s;
    transform-origin:left;
    transform:scaleX(1);
  }
  
  /* ===== Dropdown Style ===== */
.nav-foot ul li .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    padding: 10px 0;
    min-width: 160px;
    display: none;
    flex-direction: column;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 999;
  }
  
  .nav-foot ul li.show .dropdown-menu {
    display: flex;
  }
  
  /* Responsif: di layar kecil jadikan menu vertikal */
  @media (max-width: 768px) {
    .nav-foot ul {
      flex-direction: column;
      align-items: center;
    }
  
    .nav-foot ul li {
      margin: 5px 0;
    }
  
    .nav-foot ul li .dropdown-menu {
      position: relative;
      box-shadow: none;
    }
  }
  
  
  .nav-foot ul li .dropdown-menu li {
    margin: 0;
  }
  
  .nav-foot ul li .dropdown-menu li a {
    font-size: 12px;
    padding: 8px 15px;
    text-transform: capitalize;
    opacity: 1 !important;
    transform: scale(1) !important;
    filter: none !important;
  }
  
  
  

.nav-jod ul{
    margin:0;
    padding:0;
    display:flex;
  }
  
  .nav-jod ul li{
    list-style:none;
    margin:0 20px;
    transition:0.5s;
  }
  
  .nav-jod ul li a{
    display: block;
    position:relative;
    text-decoration:none;
    padding:5px;
    font-size:13px;
    font-family: sans-serif;
    color:#fff;
    text-transform:uppercase;
    transition:0.5s;
  }
  
  .nav-jod ul:hover li a{
    transform:scale(1.2);
    opacity:0.2;
    filter:blur(3px);
  }
  
  .nav-jod ul li a:hover{
    transform:scale(1.6);
    opacity:1;
    filter:blur(0);
    text-decoration:none;
    color:#fff !important;
  }
  
  .nav-jod ul li a:before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#ee8132;
    transition:0.5s;
    transform-origin:right;
    transform:scaleX(0);
    z-index:-1;
  }
  
  .nav-jod ul li a:hover:before{
    transition:transform 0.5s;
    transform-origin:left;
    transform:scaleX(1);
  }

  .overlay-primary
  {
    background-color: #ee803249;
  }
  

  .carousel-indicators [data-bs-target] {
    width: 13px;
    height: 13px;
    border-radius: 50%;              /* selalu bulat */
    background-color: #ee8032;
    opacity: 1;
    transition: all 0.4s ease-in-out; /* animasi halus untuk width, color, opacity */
    border: none;                     /* hilangkan border default bootstrap */
    margin: 0 5px;                    /* jarak antar indikator */
  }
  
  .carousel-indicators .active {
    background-color: #ffffff;
    opacity: 1;
    width: 50px;                      /* melar jadi pill */
    border-radius: 25px;              /* pill sempurna, bukan cembung */
  }

  .carousel-item .position-relative {
    perspective: 1000px; /* efek 3D */
  }
  
  .caro-wrapper {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
    border-radius: 20px; /* biar tetap rounded */
    overflow: hidden;    /* biar overlay nggak keluar */
  }
  
  .caro-wrapper:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
  
  .caro-wrapper img {
    width: 100%;
    display: block;
  }
  
  
  
  @media (max-width: 767.98px) {
    .carousel-item.bg-cover {
      height: 70vh;               /* fullscreen tinggi */
      background-size: cover;      /* gambar full */
      background-position: center; /* posisi center */
    }
    .carousel-item.bg-cover img {
      display: none; /* sembunyiin gambar di mobile */
    }
  
    /* biar radius nggak bikin aneh di mobile */
    .carousel-inner {
      border-radius: 0 !important;
    }
  }
  

  /* Warna default untuk ikon sosmed */
.socmed-link {
    color: #EE8132;
    transition: all 0.3s ease-in-out;
    position: relative;
  }
  
  /* Hover efek */
  .socmed-link:hover {
    color: #fff; /* warna ikon berubah jadi putih */
    transform: translateY(-5px) scale(1.1); /* sedikit naik & membesar */
    text-shadow: 0 0 10px rgba(238, 129, 50, 0.8), 0 0 20px rgba(238, 129, 50, 0.5);
  }
  
  /* Tambahan animasi garis bawah glowing */
  .socmed-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #EE8132;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
  }
  
  .socmed-link:hover::after {
    width: 80%;
  }




  .socmed-link-hero {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    position: relative;
  }
  
  /* Hover efek */
  .socmed-link-hero:hover {
    color: #EE8132; /* warna ikon berubah jadi oren */
    transform: translateY(-5px) scale(1.1);
    text-shadow: 0 0 15px rgba(238, 129, 50, 0.9), 0 0 30px rgba(238, 129, 50, 0.6);
  }
  
  /* Garis bawah glowing */
  .socmed-link-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #EE8132, #ffb366);
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
    border-radius: 2px;
  }
  
  .socmed-link-hero:hover::after {
    width: 80%;
    box-shadow: 0 0 10px rgba(238, 129, 50, 0.8), 0 0 20px rgba(238, 129, 50, 0.5);
  }
  
         /* Enhanced Menu Overlay Styles */
         #menu-overlay {
          position: fixed;
          inset: 0;
          background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 25%, #1f1f1f 50%, #333333 75%, #262626 100%);
          clip-path: circle(0% at 100% 0%);
          z-index: 9999;
          color: white;
          overflow: hidden;
      }

      /* Add animated background pattern */
      #menu-overlay::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background-image: 
              radial-gradient(circle at 20% 30%, rgba(255, 102, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 102, 0, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
          animation: backgroundShift 10s ease-in-out infinite alternate;
          z-index: -1;
      }

      @keyframes backgroundShift {
          0% { transform: translateX(-20px) translateY(-20px) scale(1.05); }
          100% { transform: translateX(20px) translateY(20px) scale(0.95); }
      }

      .menu-content {
          opacity: 0;
          transform: translateY(20px) scale(0.95);
      }

      .menu-list {
          list-style: none;
          padding: 0;
          margin: 0;
      }
      
      .menu-list li {
          margin: 0.8rem 0;
      }
      
      .menu-list a {
          display: flex;
          align-items: center;
          gap: 1rem;
          font-size: 22px;
          text-decoration: none;
          color: #ffffff;
          font-weight: 500;
          padding: 0.5rem 1rem;
          transition: all 0.4s ease;
          border-radius: 8px;
      }
      
      .menu-list a .num {
          font-size: 12px;
          font-weight: bold;
          color: #ff6600;
          min-width: 25px;
          text-align: right;
      }
      
      .menu-list a:hover {
          color: #ff6600;
          letter-spacing: 2px;
          background: rgba(255, 102, 0, 0.1);
          transform: translateX(10px);
      }

      /* Social Media Section */
      .social-section {
          margin-bottom: 2rem;
      }

      .social-section h5 {
          color: #ff6600;
          font-weight: 600;
          margin-bottom: 1rem;
          font-size: 18px;
      }

      .social-buttons {
          display: flex;
          gap: 1rem;
          flex-wrap: wrap;
      }

      .social-btn {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 45px;
          height: 45px;
          background: linear-gradient(135deg, #ff6600, #e55a00);
          color: white;
          text-decoration: none;
          border-radius: 50%;
          font-size: 18px;
          transition: all 0.3s ease;
          box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
      }

      .social-btn:hover {
          transform: translateY(-3px) scale(1.1);
          box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
          color: white !important;
      }

      /* Contact Info Section */
      .contact-section h5 {
          color: #ff6600;
          font-weight: 600;
          margin-bottom: 1rem;
          font-size: 18px;
      }

      .contact-item {
          display: flex;
          align-items: flex-start;
          gap: 0.8rem;
          margin-bottom: 1rem;
          padding: 0.5rem 0;
      }

      .contact-item i {
          color: #ff6600;
          font-size: 16px;
          width: 20px;
          margin-top: 2px;
      }

      .contact-item a {
          color: #ffffff;
          text-decoration: none;
          transition: color 0.3s ease;
          font-size: 14px;
      }

      .contact-item a:hover {
          color: #ff6600;
      }

      .contact-item span {
          color: #ffffff;
          font-size: 14px;
          line-height: 1.4;
      }

      /* Responsive adjustments */
      @media (max-width: 768px) {
          .social-buttons {
              justify-content: flex-start;
          }
          
          .menu-list a {
              font-size: 20px;
          }
      }
  


 /* CSS responsive untuk layanan */

/* Desktop - menggunakan garis dan title di samping */
.hover-line {
    position: absolute;
    top: 15px;
    right: -140px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #dadada);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 15;
    pointer-events: none;
}

.hover-line::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(139, 139, 139, 0.3);
    pointer-events: none;
}

.hover-title {
    position: absolute;
    top: 5px;
    width: 100px;
    height: auto;
    right: -270px;
    font-weight: bold;
    color: #ffffff;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 15;
    pointer-events: none;
}

.layanan-item:hover .hover-line {
    width: 150px;
    opacity: 1;
}

.layanan-item:hover .hover-title {
    opacity: 1;
    transform: translateX(0);
}

/* Kolom terakhir untuk desktop */
.layanan-container .col-lg-3:nth-child(4) .hover-line {
    right: auto;
    left: -170px;
    background: linear-gradient(-90deg, #ffffff, #dfdfdf);
}

.layanan-container .col-lg-3:nth-child(4) .hover-line::after {
    right: auto;
    left: -8px;
}

.layanan-container .col-lg-3:nth-child(4) .hover-title {
    right: auto;
    left: -320px;
}

/* Efek hover untuk semua device */
.layanan-container:hover .col-lg-3:not(:hover) .layanan-item {
    transform: scale(0.8) translateY(20px);
}

.layanan-container:hover .col-lg-3:not(:hover) .layanan-item img {
    filter: brightness(0.4) blur(3px);
}

.layanan-container .col-lg-3:hover .layanan-item {
    transform: translateY(-25px) scale(1.05);
    z-index: 10;
}

.layanan-container .col-lg-3:hover .layanan-item img {
    transform: scale(1.15);
    filter: brightness(1.15) blur(0px);
}

.layanan-item {
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow: visible;
}

.layanan-item img {
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    filter: brightness(1) blur(0px);
    pointer-events: auto;
}

/* RESPONSIVE: Untuk width < 992px (tablet dan mobile) */
@media (max-width: 991.98px) {
    /* Sembunyikan garis dan reset posisi title */
    .hover-line {
        display: none !important;
    }
    
    /* Title pindah ke tengah gambar */
    .hover-title {
        position: absolute;
        top: 50%;
        left: 50%;
        right: auto;
        width: auto;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.7);
        padding: 8px 16px;
        border-radius: 8px;
        color: #ffffff;
        font-weight: bold;
        font-size: 20px;
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    /* Hover effect di mobile/tablet - title muncul di tengah */
    .layanan-item:hover .hover-title {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
    
    /* Reset kolom terakhir untuk mobile */
    .layanan-container .col-lg-3:nth-child(4) .hover-title {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
    
    .layanan-container .col-lg-3:nth-child(4):hover .hover-title {
        transform: translate(-50%, -50%) scale(1.1);
    }
    
    /* Efek hover tetap ada tapi sedikit diperkecil untuk mobile */
    .layanan-container:hover .col-lg-3:not(:hover) .layanan-item {
        transform: scale(0.9) translateY(10px);
    }
    
    .layanan-container .col-lg-3:hover .layanan-item {
        transform: translateY(-15px) scale(1.03);
    }
    
    .layanan-container .col-lg-3:hover .layanan-item img {
        transform: scale(1.08);
    }
}

/* RESPONSIVE: Untuk mobile kecil < 576px */
@media (max-width: 575.98px) {
    .hover-title {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* Efek hover lebih halus untuk mobile kecil */
    .layanan-container:hover .col-lg-3:not(:hover) .layanan-item {
        transform: scale(0.95) translateY(5px);
    }
    
    .layanan-container .col-lg-3:hover .layanan-item {
        transform: translateY(-10px) scale(1.02);
    }
    
    .layanan-container .col-lg-3:hover .layanan-item img {
        transform: scale(1.05);
    }
}

/* CSS pendukung lainnya */
.layanan-kami .col-lg-3 {
    transform-origin: center center;
    backface-visibility: hidden;
    will-change: transform, opacity;
    transform-style: preserve-3d;
}

.layanan-kami h1 {
    transform-origin: right center;
    will-change: transform, opacity;
}

.layanan-kami .rotate-img {
    transform-origin: center center;
    will-change: transform, opacity;
}

.layanan-kami h3 {
    transform-origin: right center;
    will-change: transform, opacity;
}

.layanan-kami {
    transform: translateZ(0);
}

.layanan-container {
    perspective: 1000px;
}

/* CSS untuk garis dekoratif */
.decorative-line-container {
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    margin: 30px 0;
    overflow: visible;
}

.decorative-line {
    height: 3px;
    width: 0; /* Mulai dari 0, akan di-animate */
    background: #ffffff;
    position: relative;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

/* Bulatan di ujung garis */
.decorative-line::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 0.6),
        0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Variasi untuk garis atas dan bawah */
.decorative-line-top {
    background: #ffffff;
}

.decorative-line-bottom {
    background: #ffffff
}

/* Efek glow untuk garis */
.decorative-line-top::before,
.decorative-line-bottom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    transform: translateY(-50%);
    opacity: 0.7;
}

/* State saat animasi selesai */
.decorative-line.animate-complete::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .decorative-line-container {
        margin: 20px 0;
    }
    
    .decorative-line {
        height: 2px;
    }
    
    .decorative-line::after {
        width: 15px;
        height: 15px;
        right: -7px;
        border-width: 2px;
    }
}

/* CSS pendukung untuk animasi section pengalaman */

.pengalaman {
    overflow: hidden; /* Prevent horizontal scroll dari animasi */
}

.pengalaman .bg-orange {
    transform-origin: left center;
    will-change: transform, opacity;
}

.pengalaman .col-md-4 .col-12 {
    transform-origin: left center;
    will-change: transform, opacity;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.pengalaman .col-md-4 .col-12 img {
    will-change: transform, filter;
    backface-visibility: hidden;
}

.pengalaman .bg-normal {
    transform-origin: center center;
    will-change: transform, opacity;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.pengalaman h1 {
    will-change: transform, opacity;
}

.pengalaman p {
    will-change: transform, opacity;
}

.pengalaman img[src*='timer'] {
    will-change: transform;
    transform-origin: center center;
}

/* Smooth transitions untuk hover effects */
.pengalaman .col-md-4 .col-12,
.pengalaman .bg-normal {
    transition: box-shadow 0.3s ease;
}

.pengalaman .col-md-4 .col-12:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pengalaman .bg-normal:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

/* Ensure proper z-index */
.pengalaman .position-relative {
    z-index: 2;
}

.pengalaman .bg-orange {
    z-index: 1;
}

/* Performance optimizations */
.pengalaman * {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pengalaman .bg-orange {
        height: 50% !important;
    }
    
    .pengalaman .col-md-4 .col-12 {
        margin-bottom: 1rem;
    }
}