
        /* html,
        body {
            height: 100%;
            margin: 0;
            scroll-snap-type: y mandatory;
            scroll-behavior: smooth;
            overflow-y: scroll;

             background: linear-gradient(-45deg , #FFFFFF, #A9D6FF, #f39b30, #FFFFFF);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #333;

  } */

  html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-y: auto;
    background: linear-gradient(-45deg , #FFFFFF, #A9D6FF, #f39b30, #FFFFFF);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #333;
}
    @keyframes gradientBG {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

.nav-link:hover,
.nav-link.active {
    color: #ff6600 !important;
}
        section {
            min-height: 100vh;
            scroll-snap-align: start;
            display: flex;
            align-items: center;
        }

        .section-1 {
            display: flex;
            flex-direction: column;
            /* Bikin konten stack vertikal */
            align-items: center;
            justify-content: center;
            height: 100vh;
            scroll-snap-align: start;
            padding: 2rem;
            /* biar ada jarak */
        }

        @media (max-width: 1024px) {
            .carousel-inner img {
                max-height: 60vh;
            }

            .section-1 {
                padding: 1rem;
            }

            h1 {
                font-size: 1.5rem;
                text-align: center;
            }
        }






        .footer-section {
            height: auto;
            padding: 40px 0;
            scroll-snap-align: start;
        }

        .section-4 {
            height: 100vh;
            display: flex;
            align-items: center;
            scroll-snap-align: start;
            padding-top: 100px;
        }

        .image-carousel {
            overflow-x: auto;
            overflow-y: hidden;
            width: 100%;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            
        }

        .carousel-track {
            display: flex;
            gap: 16px;
            scroll-snap-type: x mandatory;
            scroll-padding: 1rem;
            padding: 1rem 0;
        }

        .carousel-track img {
            flex-shrink: 0;
            width: calc(100% / 3);
            /* 3 gambar di desktop */
            aspect-ratio: 1 / 1;
            /* kotak */
            object-fit: cover;
            border-radius: 8px;
            scroll-snap-align: start;
            background-color: #f0f0f0;
            max-width: 100%;
        }

        

.carousel-track img:first-child {
    object-fit: contain;
    background-color: #fff;
}
.carousel-track img:nth-child(2) {
    object-fit: contain;
    background-color: #fff;
}
.carousel-track img:nth-child(4) {
    object-fit: none;
    background-color: #fff;
}
.carousel-track img:nth-child(7) {
    object-fit: contain;
    background-color: #fff;
    
}
.carousel-track img:nth-child(8) {
    object-fit: contain;
    background-color: #fff;
    
}
        /* Mobile: 1 gambar per slide */
        @media (max-width: 768px) {
            .carousel-track img {
                width: 100%;
                height: auto;
                aspect-ratio: 1 / 1;
            }
             .section-2 {
    margin-top: 4rem; /* atau 5rem kalau masih ketutup */
    padding-top: 2rem;
        }
    }

        

        .text-orange {
            color: #ff6600;
            /* contoh oranye brand */
        }

        .card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* Saat hover, card agak membesar dan ada bayangan */
        /*.card:hover {*/
        /*    transform: scale(1.05);*/
            /* efek muncul */
        /*    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);*/
            /* bayangan lembut */
        /*}*/

        .card-img-top {
            transition: filter 0.3s ease;
            
        }

      

        .img-fixeds {
            height: 100px;
            object-fit: contain;
            padding: 10px;
        }
        
        .carousel-track img:nth-child(7) {
    object-fit: contain;
    background-color: #fff;
    
}

 @media (min-width: 992px) {
/* Saat hover, card agak membesar dan ada bayangan */
        .card:hover {
            transform: scale(1.05);
            /* efek muncul */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            /* bayangan lembut */
        }
}



        /* Testimoni */

        .testimonial-scroll {
            overflow-x: unset;
            flex-wrap: wrap;
            justify-content: center;
        }

        .testimonial-card {
            min-height: 140px;
            /* Sesuaikan kalo masih kurang */
            display: none;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonial-card .card-body {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /*.testimonial-card img {*/
        /*    width: 30px;*/
        /*    height: 30px;*/
        /*    object-fit: cover;*/
        /*    border-radius: 8px;*/
        /*}*/

        .testimonial-card .card-text {
            min-height: 60px;
            /* Atur sesuai panjang rata-rata isi testimonial */
            display: flex;
            align-items: center;
            text-align: center;
            justify-content: center;
        }

        .testimonial-card.visible {
            display: flex;
            /* Tampilkan hanya yang ada class visible */
        }

        /* GALLERY */


          .gallery-img {
    cursor: pointer;
    transition: transform 0.2s ease;
    width: 100%;
    height: 200px; 
    object-fit: cover;
    border-radius: 8px;
  }

  .gallery-img:hover {
    transform: scale(1.05);
  }

   .image-gallery {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0;
}

.carousel-track-gallery {
  display: flex;
  gap: 16px;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
}

.image-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 200px; 
}

/* .gallery-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background-color: #f0f0f0;
}

.image-gallery {
  padding-left: 1.2rem; 
}

.carousel-track-gallery {
  padding-left: 2rem; 
} */

.image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 16px;
  padding: 1rem;
  max-width: 100%; /* Optional */
}

.gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.05);
}
        /* .carousel-track-gallery img:first-child {
    object-fit: contain;
    background-color: #fff;
}
.carousel-track-gallery img:nth-child(2) {
    object-fit: contain;
    background-color: #fff;
} */
/* .carousel-track-gallery img:nth-child(7) {*/
/*    object-fit: contain;*/
/*    background-color: #fff;*/
/*   width: 80%;*/
/*   height: auto;*/
/*} */

        @media (max-width: 992px) {
  .image-gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));  }
}

        @media (max-width: 768px) {
            .testimonial-card {
                min-height: 100px;
            }

            #view-more-btn {
                display: none;
                /* Sembunyikan tombol */
            }

            .testimonial-scroll {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 1rem;
                padding: 1rem 0;
                flex-wrap: nowrap;
            }

            .testimonial-card {
                flex: 0 0 80%;
                scroll-snap-align: start;
                display: flex !important;
                /* Pastikan tetap muncul */
            }
        }

        /* About */
        @media (max-width: 768px) {

            /* Bikin semua text dan item center */
            section,
            .section-8,
            .section-9,
            .section-10 {
                text-align: center;
            }

            .section-8 .row,
            .section-9 .row,
            .section-10 .row {
                flex-direction: column;
                align-items: center;
            }

            .section-8 .col-md-6,
            .section-9 .col-md-6,
            .section-10 .col-lg-3 {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .card-body {
                align-items: center;
            }

            h1,
            h5,
            p {
                text-align: center !important;
            }

            img {
                max-width: 100%;
                height: auto;



            }

            .section-11 .col-md-6 {
                text-align: left;
                align-items: flex-start;
            }

            .section-1 .col-md-6 .d-flex {
                justify-content: flex-start;
            }


            .section-1 p,
            .section-1 span {
                text-align: left !important;
            }

            .card-body .btn,
    .card-body .d-flex.justify-content-between {
        margin-top: 1rem; /* atau sesuai selera lo, misal 16px */
    }
        }

        /* ICON SOSMED */


        /* Desktop Floating Sosmed */
        .social-icons {
            position: fixed;
            top: 50%;
            right: 40px;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .social-icons .icon {
            background-color: #f0f0f0;
            padding: 10px;
            margin: 10px 0;
            border-radius: 50%;
            transition: 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .social-icons .icon img {
            width: 30px;
            height: 30px;
        }

        .social-icons .icon:hover {
            transform: scale(1.2);
        }

        .icon-mobile.whatsapp:hover img,
        .icon.whatsapp:hover img {
            filter: brightness(0) saturate(100%) invert(58%) sepia(58%) saturate(746%) hue-rotate(85deg) brightness(94%) contrast(85%);
        }

        /* Facebook biru */
        .icon-mobile.facebook:hover img,
        .icon.facebook:hover img {
            filter: brightness(0) saturate(100%) invert(30%) sepia(96%) saturate(1822%) hue-rotate(194deg) brightness(98%) contrast(101%);
        }

        /* Instagram pink */
        .icon-mobile.instagram:hover img,
        .icon.instagram:hover img {
            filter: brightness(0) saturate(100%) invert(26%) sepia(67%) saturate(4318%) hue-rotate(312deg) brightness(94%) contrast(95%);
        }

        /* Mobile Bottom Sosmed */
        .social-icons-mobile {
  width: 100vw; /* pastikan lebar penuh viewport */
  left: 0;
  right: 0;
  position: fixed; /* ubah dari sticky ke fixed untuk pastikan selalu di bawah */
  bottom: 0;
  background-color: #fff;
  border-top: 1px solid #ddd;
  z-index: 999;
  justify-content: center;
  display: flex;
  gap: 20px;
  padding: 10px 0;
}

        .social-icons-mobile .icon-mobile img {
            width: 30px;
            height: 30px;
        }

        .icon-mobile:hover {
            transform: scale(1.1);
        }

  .social-iconss a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    margin-right: 12px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.social-iconss img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.social-iconss a:last-child {
    margin-right: 0;
}

.social-iconss a:hover {
    background-color: #f0f0f0; /* efek hover */
}

        /* Responsive control */
        @media (max-width: 895px) {
            .social-icons {
                display: none !important;
            }

            .social-icons-mobile {
                display: flex !important;
            }
            /* .modal-mobile {
                display: flex !important;
            } */
            
        }

        @media (min-width: 896px) {
            .social-icons {
                display: flex !important;
            }

            .social-icons-mobile {
                display: none !important;
            }


            
        }


           .modal-mobile {
            background-color: #fff;
            border-top: 1px solid #ddd;
            position: sticky;
            bottom: 0;
            z-index: 999;
            justify-content: center;
            padding: 10px 0;
            display: none;
            /* default disembunyikan */
            gap: 20px;
        }
.modal-cs {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 320px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    z-index: 9999;
    overflow: hidden;
    font-family: Arial, sans-serif;
    animation: fadeIn 0.3s ease;
}

.modal-cs-header {
    background: linear-gradient(to right, #e4ca78, #ec9a1f);
    color: white;
    padding: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 14px;
}

.modal-cs-sub {
    margin: 10px 15px;
    font-size: 12px;
    color: #777;
}

.modal-cs-body {
    padding: 0 15px 15px;
}

.cs-entry {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 10px;
    margin: 6px 0;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
    transition: background 0.2s;
}

.cs-entry:hover {
    background: #e0ffe5;
}

.cs-icon {
    width: 32px;
    margin-right: 10px;
}

.cs-go {
    width: 20px;
    margin-left: auto;
}
.modal-cs-close {
    margin: 10px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;
    background: #2866ee;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

