/* silence is golden */
        /*
         ========================================
         RESET DASAR
         ========================================
        */
        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }

        /*
         ========================================
         STYLING TOP BAR CONTAINER UTAMA
         ========================================
        */
        .top-bar-container {
            /* Warna latar belakang teal persis seperti gambar */
            background-color: #20847b;
            
            /* Padding vertikal untuk memberi tinggi pada bar */
            padding-top: 10px;
            padding-bottom: 10px;
            
            /* Warna teks default di dalam bar adalah putih */
            color: #ffffff;
        }

        /*
         ========================================
         CONTAINER DALAM (UNTUK LAYOUT FLEX)
         ========================================
        */
        .top-bar-inner {
            /* Menggunakan Flexbox untuk membagi layout */
            display: flex;
            
            /* Mendorong item ke kiri dan kanan */
            justify-content: space-between; 
            
            /* Menyamakan tinggi item secara vertikal */
            align-items: center; 
            
            /* Batas lebar maksimum dan tengahkan */
            max-width: 1300px;
            margin-left: auto;
            margin-right: auto;
            
            /* Padding horizontal untuk jarak di layar kecil */
            padding-left: 20px;
            padding-right: 20px;
        }

        /*
         ========================================
         STYLING BAGIAN KIRI (INFO KONTAK)
         ========================================
        */
        .contact-info {
            /* Menggunakan Flexbox untuk menyusun item kontak */
            display: flex;
            align-items: center;
            
            /* Memberi jarak antar item kontak */
            gap: 25px; 
            
            /* Pastikan tidak mengecil saat layar sempit */
            flex-shrink: 0; 
        }

        .contact-item {
            /* Menggunakan Flexbox untuk ikon dan teks */
            display: flex;
            align-items: center;
            font-family: Sans-serif; font-size: 12px; font-weight: 600; color: white;
        }

        .contact-item .icont {
            /* Memberi jarak antara ikon dan teks */
            margin-right: 8px; 
            
            /* Membuat ikon sedikit lebih besar */
            font-size: 16px; 
            
            /* Menurunkan posisi ikon sedikit agar sejajar */
            position: relative;
            top: 1px;
        }

        /*
         ========================================
         STYLING BAGIAN KANAN (SEARCH BAR)
         ========================================
        */
        .search-container {
            display: none;
            /* Tidak perlu style khusus, form di dalamnya yang di-style */
        }

        .search-form {
            /* Menggunakan Flexbox untuk menggabungkan input dan tombol */
            display: flex;
        }

        .search-input {
            border: none;
            padding-top: 8px;
            padding-bottom: 8px;
            padding-left: 12px;
            padding-right: 12px;
            
            /* Lengkungan di sisi kiri */
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
            
            /* Hapus outline saat di-klik */
            outline: none; 
            font-size: 14px;
            color: #333; /* Warna teks saat mengetik */
            min-width: 200px; /* Lebar minimum */
        }

        .search-button {
            border: none;
            
            /* Warna oranye persis seperti gambar */
            background-color: #f37a27; 
            
            /* Warna ikon (emoji) putih */
            color: #ffffff; 
            
            padding-left: 12px;
            padding-right: 12px;
            
            /* Lengkungan di sisi kanan */
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
            
            cursor: pointer; /* Ubah kursor jadi tangan */
            font-size: 16px; /* Ukuran ikon search */
            
            /* Transisi untuk efek hover */
            transition: background-color 0.2s ease;
        }

        .search-button:hover {
            /* Efek hover, sedikit lebih gelap */
            background-color: #e06c1f;
        }

        /*
         ========================================
         RESPONSIVE (Untuk Layar Sempit)
         ========================================
        */
        @media (max-width: 768px) {
            .top-bar-inner {
                /* Ubah susunan jadi vertikal */
                flex-direction: column; 
                
    justify-content: center;      /* isi di tengah */
    align-items: center;          /* center horizontal */
    text-align: center; 
            }

            .contact-info {
                /* Susun item kontak jadi vertikal juga */
                flex-direction: column;
                align-items: flex-start;
                gap: 8px; /* Jarak lebih rapat */
            }

            .search-container {
                /* Buat search bar memenuhi lebar */
                width: 100%;
                display: none;
            }
            
            .search-form {
                width: 100%;
            }

            .search-input {
                /* Buat input field mengisi sisa ruang */
                width: 100%; 
                flex-grow: 1; /* Penting agar input memanjang */
                min-width: 0; /* Hapus min-width di mobile */
            }
        }
        
        /*
         ========================================
         STYLING NAVIGASI UTAMA (CONTAINER)
         ========================================
        */
        
        /* Ini adalah container utama navigasi */
        nav.navigation-wrapper {
            background-color: #ffffff;
            border-bottom-width: 1px;
            border-bottom-style: solid;
            border-bottom-color: #e0e0e0;
            padding-top: 10px;
            padding-bottom: 10px;
            padding-left: 20px;
            padding-right: 20px;
            position: sticky; /* Membuat menu tetap di atas saat scroll */
            top: 0;
            z-index: 1000;
            box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.05); /* Bayangan halus */
        }

        /* Container di dalam navigasi untuk mengatur layout */
        div.navigation-inner-container {
            display: flex;
            flex-direction: row; /* Susun horizontal */
            justify-content: space-between; /* Logo di kiri, menu di kanan */
            align-items: center; /* Vertikal di tengah */
            width: 100%;
            max-width: 1300px; /* Batas lebar maksimum */
            margin-left: auto; /* Pusatkan container */
            margin-right: auto;
        }

        /*
         ========================================
         STYLING LOGO
         ========================================
        */
        
        div.logo-container {
            /* Tidak perlu style khusus jika hanya link */
        }
        
        div.logo-container a {
            font-size: 28px;
            font-weight: 700; /* Bold */
            color: #111111;
            text-decoration: none;
            letter-spacing: 1px;
        }

        /*
         ========================================
         STYLING MENU (DESKTOP)
         ========================================
        */
        
        /* Menghilangkan style default dari list menu utama */
        ul.navigation-menu {
            margin-top: 0px;
            margin-bottom: 0px;
            padding-left: 0px;
            list-style-type: none;
            display: flex; /* Membuat menu horizontal */
            flex-direction: row;
        }
        
        /* Styling item list level 1 */
        ul.navigation-menu > li {
            position: relative; /* Diperlukan untuk dropdown */
            margin-left: 5px;
            margin-right: 5px;
        }

        /* Styling link level 1 */
        ul.navigation-menu > li > a {
            display: block;
            color: #333333;
            text-decoration: none;
            padding-top: 20px;
            padding-bottom: 20px;
            padding-left: 18px;
            padding-right: 18px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            border-bottom-width: 3px;
            border-bottom-style: solid;
            border-bottom-color: transparent; /* Sembunyikan border bawah */
            transition-property: color, border-bottom-color;
            transition-duration: 0.3s;
            transition-timing-function: ease-in-out;
        }
        
        /* Efek hover pada link level 1 */
        ul.navigation-menu > li > a:hover {
            color: #007BFF;
            border-bottom-color: #007BFF; /* Tampilkan border saat hover */
        }
        
        /*
         ========================================
         STYLING PANAH (ARROW)
         ========================================
        */
        
        .arrow {
            display: inline-block;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 5px 5px 0 5px; /* Panah ke atas */
            border-color: #555555 transparent transparent transparent;
            margin-left: 8px;
            vertical-align: middle;
            transition-property: transform;
            transition-duration: 0.3s;
        }

        /* Panah di dalam dropdown (panah ke kanan) */
        ul.navigation-menu ul .arrow {
            border-width: 5px 0 5px 5px; /* Panah ke kiri */
            border-color: transparent transparent transparent #555555;
            position: absolute;
            right: 15px;
            top: 17px;
        }
        
        /* Merubah warna panah saat link di-hover */
        ul.navigation-menu li a:hover .arrow {
           border-top-color: #007BFF;
        }
        
        ul.navigation-menu ul li a:hover .arrow {
           border-left-color: #ffffff;
        }
        
        /*
         ========================================
         STYLING DROPDOWN (LEVEL 2)
         ========================================
        */

        ul.navigation-menu ul {
            display: none; /* Sembunyikan dropdown secara default */
            position: absolute;
            top: 100%; /* Muncul tepat di bawah item parent */
            left: 0;
            background-color: #ffffff;
            min-width: 280px;
            box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.1);
            z-index: 1001;
            margin-top: 0px;
            margin-bottom: 0px;
            padding-left: 0px;
            list-style-type: none;
            border-top: 3px solid #007BFF; /* Aksen warna di atas dropdown */
        }

        /* Menampilkan dropdown level 2 saat item parent di-hover */
        ul.navigation-menu li:hover > ul {
            display: block;
        }
        
        /* Item di dalam dropdown */
        ul.navigation-menu ul li {
            position: relative; /* Penting untuk nested dropdown (level 3) */
            width: 100%;
            border-bottom-width: 1px;
            border-bottom-style: dotted;
            border-bottom-color: #eeeeee;
        }
        
        ul.navigation-menu ul li:last-child {
            border-bottom-style: none; /* Hapus border di item terakhir */
        }

        /* Link di dalam dropdown */
        ul.navigation-menu ul li a {
            display: block;
            padding-top: 12px;
            padding-bottom: 12px;
            padding-left: 20px;
            padding-right: 40px; /* Beri ruang untuk panah */
            color: #555555;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            text-transform: none; /* Tidak uppercase */
            transition-property: background-color, color;
            transition-duration: 0.2s;
            transition-timing-function: ease;
        }
        
        /* Efek hover pada link dropdown */
        ul.navigation-menu ul li a:hover {
            background-color: #007BFF;
            color: #ffffff;
        }

        /*
         ========================================
         STYLING NESTED DROPDOWN (LEVEL 3)
         ========================================
        */
        
        ul.navigation-menu ul ul {
            top: 0; /* Posisikan sejajar dengan item parent (level 2) */
            left: 100%; /* Posisikan di sebelah kanan */
            border-top: none; /* Hapus border atas biru */
            border-left: 1px solid #eeeeee; /* Beri pemisah tipis */
        }

        /*
         ========================================
         STYLING TOMBOL BURGER (MOBILE)
         ========================================
        */
        
        div.burger-menu-toggle {
            display: none; /* Sembunyikan di desktop */
            cursor: pointer;
            padding-top: 10px;
            padding-bottom: 10px;
            padding-left: 10px;
            padding-right: 10px;
        }
        
        /* Styling garis-garis burger */
        div.burger-menu-toggle span.burger-line {
            display: block;
            width: 28px;
            height: 3px;
            background-color: #333333;
            margin-top: 5px;
            margin-bottom: 5px;
            border-radius: 2px;
            transition-property: transform, opacity;
            transition-duration: 0.4s;
            transition-timing-function: ease;
        }
        
        div.burger-menu-toggle span.burger-line:first-child {
            margin-top: 0;
        }
        
        div.burger-menu-toggle span.burger-line:last-child {
            margin-bottom: 0;
        }
        
        /*
         ========================================
         STYLING RESPONSIVE (MOBILE VIEW)
         ========================================
        */
        
        /* Terapkan style ini jika lebar layar 992px ke bawah */
        @media screen and (max-width: 992px) {
            
            /* Tampilkan tombol burger */
            div.burger-menu-toggle {
                display: block;
                z-index: 1003; /* Pastikan di atas menu */
                position: relative;
            }

            /* Sembunyikan menu utama */
            ul.navigation-menu {
                display: none; /* Sembunyikan menu */
                position: absolute;
                top: 100%; /* Posisi tepat di bawah nav bar */
                left: 0;
                width: 100%;
                background-color: #ffffff;
                box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.1);
                flex-direction: column; /* Ubah jadi vertikal */
                padding-top: 10px;
                padding-bottom: 10px;
                border-top: 1px solid #eeeeee;
            }

            /* Tampilkan menu saat 'active' (via JS) */
            ul.navigation-menu.menu-is-active {
                display: block;
            }

            /* Buat item menu jadi full-width */
            ul.navigation-menu li {
                width: 100%;
                margin-left: 0;
                margin-right: 0;
            }
            
            ul.navigation-menu > li > a {
                padding-left: 25px; /* Beri indentasi */
                padding-right: 25px;
                border-bottom-width: 1px;
                border-bottom-style: solid;
                border-bottom-color: #f0f0f0;
            }
            
            ul.navigation-menu > li > a:hover {
                border-bottom-color: #f0f0f0; /* Nonaktifkan efek border hover */
                color: #007BFF;
            }

            /* Atur ulang style dropdown untuk mobile */
            ul.navigation-menu ul {
                position: static; /* Tidak lagi absolute */
                display: none; /* Sembunyikan by default (dikontrol JS) */
                box-shadow: none;
                border-top: none;
                background-color: #f9f9f9; /* Warna beda untuk indentasi */
                min-width: 100%;
                width: 100%;
                padding-left: 15px; /* Indentasi level 2 */
            }
            
            /* Tampilkan dropdown saat 'open' (via JS) */
            ul.navigation-menu ul.dropdown-is-open {
                display: block;
            }

            /* Atur ulang nested dropdown */
            ul.navigation-menu ul ul {
                 position: static;
                 padding-left: 15px; /* Indentasi level 3 */
                 background-color: #f0f0f0;
                 width: 100%;
            }

            /* Atur ulang panah untuk mobile */
            .arrow {
                border-width: 5px 5px 0 5px; /* Kembali ke panah bawah */
                border-color: #555555 transparent transparent transparent;
                position: absolute;
                right: 25px;
                top: 25px;
            }
            
            /* Panah di dropdown (level 2) */
            ul.navigation-menu ul .arrow {
                border-width: 5px 5px 0 5px;
                border-color: #555555 transparent transparent transparent;
                position: absolute;
                right: 25px;
                top: 17px;
            }
            
            /* Rotasi panah saat 'open' (via JS) */
            .arrow.arrow-is-open {
                transform: rotate(180deg);
            }

            /* Animasi tombol burger menjadi 'X' saat aktif */
            div.burger-menu-toggle.burger-is-active span.line-1 {
                transform: rotate(-45deg) translate(-6px, 7px);
            }
            div.burger-menu-toggle.burger-is-active span.line-2 {
                opacity: 0;
            }
            div.burger-menu-toggle.burger-is-active span.line-3 {
                transform: rotate(45deg) translate(-6px, -7px);
            }
        }
          body {
      margin: 0px;
  }
  
/* ============ SLIDER OLD =========== */
    #sliderold-sccr .sliderold-sccr-slides {
      display: flex;
      transition: transform 0.5s ease;
      will-change: transform;
    }

#sliderold-sccr .sliderold-sccr-slide {
  min-width: 100%;
  user-select: none;
}

#sliderold-sccr img {
  width: 100%;
  display: block;
  cursor: grab;
}

#sliderold-sccr img:active {
  cursor: grabbing;
}

    #sliderold-sccr img {
      width: 100%;
      display: block;
    }

    #sliderold-sccr .sliderold-sccr-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5em;
  background: none;
  color: #0a875a;
  border: none;
  padding: 0 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 8px;
  transition: color 0.3s;
}

#sliderold-sccr .sliderold-sccr-nav-btn:hover {
  color: #066645;
}


    #sliderold-sccr .sliderold-sccr-prev {
      left: 10px;
    }

    #sliderold-sccr .sliderold-sccr-next {
      right: 10px;
    }

    #sliderold-sccr .sliderold-sccr-dots {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }

    #sliderold-sccr .sliderold-sccr-dot {
      width: 12px;
      height: 12px;
      background-color: rgba(255,255,255,0.5);
      border-radius: 50%;
      cursor: pointer;
    }

    #sliderold-sccr .sliderold-sccr-dot.sliderold-sccr-active {
      background-color: white;
    }
 
#sliderold-sccr .sliderold-sccr-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  #sliderold-sccr .sliderold-sccr-slide {
    aspect-ratio: 1 / 1;   
    overflow: hidden;
  }

  #sliderold-sccr .sliderold-sccr-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
  }
}
.sccrprofile-row{display:flex;align-items:center;justify-content:center;gap:30px;padding:15px;margin:0% 18%}.sccrprofile-col-image{flex:3.3;display:flex;justify-content:center}
.sccrprofile-col-text{flex:6.7}.sccrprofile-image-box{position:relative;overflow:hidden;border-radius:6px;transform:translateY(60px);opacity:0;transition:all 0.7s ease}
.sccrprofile-image-box img{display:block;transition:transform 0.5s ease}
.sccrprofile-overlay{position:absolute;top:100%;left:0;width:100%;height:100%;background:rgb(0 0 0 / .7);color:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:20px;transition:top 0.5s ease}
.sccrprofile-overlay h3{margin:10px 0 5px;font-size:20px}.sccrprofile-overlay p{margin:5px 0 15px;font-size:14px}
.sccrprofile-social{display:flex;gap:10px}.sccrprofile-social a{display:inline-block;background:#888;width:36px;height:36px;line-height:36px;border-radius:50%;color:#fff;text-decoration:none;font-size:14px;transform:translateY(30px);opacity:0;transition:all 0.4s ease}.sccrprofile-social a:hover{background:#0a66c2;color:#fff}.sccrprofile-social img{width:36px;height:36px;object-fit:contain;filter:grayscale(100%);transition:filter 0.3s ease}.sccrprofile-social a:hover img{filter:grayscale(0%)}.sccrprofile-image-box:hover{box-shadow:0 8px 16px rgb(0 0 0 / .3)}.sccrprofile-image-box:hover img{transform:scale(1.05)}.sccrprofile-image-box:hover .sccrprofile-overlay{top:0}.sccrprofile-image-box:hover .sccrprofile-social a{transform:translateY(0);opacity:1}.sccrprofile-show{transform:translateY(0);opacity:1}.sccrprofile-col-text{transform:translateY(60px);opacity:0;transition:all 0.7s ease}.sccrprofile-col-text.sccrprofile-show{transform:translateY(0);opacity:1}.sccrprofile-col-text h2{color:#2EB097;font-size:32px;margin-bottom:15px}.sccrprofile-col-text p{font-size:15px;line-height:1.6;margin-bottom:20px}.sccrprofile-col-text button{background:#f60;color:#fff;border:none;padding:12px 24px;cursor:pointer;border-radius:4px;font-size:12px;float:right}@media (max-width:768px){.sccrprofile-row{flex-direction:column;text-align:left;padding:0!important;margin:0!important;gap:0!important}.sccrprofile-col-image{flex:1 1 100%;max-width:100%;margin-top:10px}.sccrprofile-col-text{flex:1 1 100%;max-width:100%;margin:0;padding:10px}.sccrprofile-col-text h2{font-size:24px;font-weight:700;text-align:left}.sccrprofile-col-text p{font-size:14px;text-align:justify}.sccrprofile-col-text button{background:#f60;color:#fff;border:none;padding:12px 24px;cursor:pointer;border-radius:4px;font-size:12px;float:right;margin:15px 0 0 0;display:inline-block}}

/* wrapper utama (style dasar selalu ada) */
.ra-section-bg {
  background: #006d5c;
  width: 100%;
}

.ra-recent-wrapper {
  background: #006d5c;
  padding: 2rem;
  font-family: Sans-serif;
  color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
  /* animasi awal */
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
/* ketika elemen sudah kelihatan */
.ra-recent-wrapper.ra-visible {
  opacity: 1;
  transform: translateY(0);
}
/* heading + tombol sejajar */
.ra-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.ra-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
}
.ra-btn-more {
  background: #ff6600;
  color: #fff !important;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  font-size: 0.9rem;
}
/* grid */
.ra-recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
/* card */
.ra-card {
  background: #fff;
  color: #000;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ra-thumb-link {
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
  /* tinggi konsisten */
}
.ra-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ra-card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
/* judul lebih besar */
.ra-title {
  font-size: 1.2rem;
  /* ukuran besar */
  font-weight: bold;
  margin: 0 0 .7rem;
  line-height: 1.4;
}
.ra-title a {
  color: #000;
  text-decoration: none;
}
/* konten */
.ra-excerpt {
  font-size: .9rem;
  margin-bottom: .5rem;
}
.ra-readmore {
  color: green;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-bottom: .5rem;
}
/* meta fix di bawah */
.ra-meta {
  font-size: .8rem;
  color: #666;
  margin-top: auto;
  /* dorong ke bawah */
  padding-top: .5rem;
  border-top: 1px solid #ddd;
  /* garis abu-abu */
}
@media (max-width: 768px) {
  .ra-recent-wrapper {
    padding: 1rem;
    border-radius: 0;     /* opsional: biar full edge-to-edge */
  }

  .ra-header {
    flex-direction: row;           /* tetap sejajar */
    justify-content: space-between; align-items: center;
    margin: 0px 0px 10px 0px;
    padding: 0;
    width: 100%;
  }

  .ra-heading {
    font-size: 1rem;
  font-weight: bold;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  }

  .ra-btn-more {
  white-space: nowrap;
  color: #fff !important;
  padding: 0.4rem 0.8rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  font-size: 0.8rem;
  }

  .ra-recent-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ra-card {
    border-radius: 0px;
    width: 100%;
    margin: 0px;
  }

  .ra-thumb-link {
    height: 180px; /* lebih kecil di HP */
  }

  .ra-title {
    font-size: 1rem;
  }

  .ra-excerpt {
    font-size: 0.85rem;
  }
}
/* ========= LOGO SLIDER ========= */

   .swiper { width: 100%; padding: 20px 0; box-sizing: border-box; -webkit-transform: translateZ(0); } /* translateZ membantu beberapa repaint issues */
    .sliderx-container { max-width: 1140px; margin: 0 auto; padding: 0 15px; overflow: visible; }
    .sliderx-container h2 { font-size: 26px; text-align: center; text-transform: uppercase; margin-bottom: 12px; }

    /* --- PERBAIKAN FLEXBOX untuk Safari/iOS --- */
    .myLogoSlider .swiper-wrapper { align-items: center; } /* center vertikal */
    .myLogoSlider .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
      min-width: 0;            /* sangat penting: mencegah flex item memaksa melebar di iOS/Safari */
      -webkit-flex: 0 0 auto;  /* eksplisit untuk webkit */
      flex: 0 0 auto;          /* jangan tumbuhkan/mengecilkan secara tak terduga */
    }

    /* kotak logo */
    .logo-box {
      width: 140px;
      height: 140px;
      flex: 0 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px;
      box-sizing: border-box;
    }

    /* gambar: jangan biarkan intrinsic size merusak layout */
    .logo-box img {
      width: auto;            /* pertahankan rasio */
      height: 100%;           /* isi tinggi .logo-box */
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
      -webkit-user-select: none;
    }

    /* Override jika di HTML masih ada attribute width/height */
    .logo-box img[width][height] {
      width: auto !important;
      height: 100% !important;
    }

    /* panah navigasi */
    .swiper-button-next, .swiper-button-prev {
      width: 26px; height: 26px;
      top: 50%; transform: translateY(-50%);
      color: #888 !important;
    }
    .swiper-button-next:after, .swiper-button-prev:after {
      font-size: 18px !important; color: #888 !important;
    }

    /* pagination */
    .swiper-pagination { bottom: -12px !important; }
    .myLogoSlider .swiper-pagination {
      position: relative !important;
      bottom: 0 !important;
      margin-top: 12px;
      z-index: 50;
      display: block !important;
      text-align: center;
    }
    .myLogoSlider .swiper-pagination-bullet { width:8px; height:8px; margin:0 6px; background:#cfcfcf; opacity:1; transition:transform .18s; }
    .myLogoSlider .swiper-pagination-bullet-active { background:#0b79d0; transform:scale(1.15); }

    /* mobile tweaks */
    @media (max-width: 576px) {
      .logo-box { width: 130px; height: 130px; padding: 8px; }
      /* sembunyikan panah di mobile agar tidak mengganggu */
      .swiper-button-next, .swiper-button-prev { display: none; }
      .swiper { padding: 12px 0; }
    }

/* ====== FASILITAS ========== */
.facilities-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  font-family: Sans-serif;
  padding: 1rem 0;
    opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
/* setelah kelihatan */
.facilities-wrapper.facilities-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Header */
.facilities-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.facilities-heading {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
  color: #006d5c;
  text-transform: uppercase;
}
.facilities-btn {
  background: #ff6600;
  color: #fff !important;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* Grid 3 kolom */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Card */
.facilities-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  text-align: left;
}
.facilities-thumb-link {
  display: block;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.facilities-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facilities-title {
  font-size: 1.1rem;
  margin: 0.8rem 0 0.3rem;
}
.facilities-title a {
  color: #000;
  text-decoration: none;
}
.facilities-excerpt {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.8rem;
}
@media (max-width: 768px) {
  .facilities-wrapper {
    margin-top: 0; 
    padding-top: 1rem; 
    padding: 10px;
  }
  .facilities-heading {
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  color: #006d5c;
  text-transform: uppercase;
}
.facilities-btn {
  background: #ff6600;
  color: #fff !important;
  padding: 0.4rem 0.8rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  font-size: 0.8rem;
}

}

.puboa-section-bg {
  background: #f5f5f5;  /* warna kiri kanan */
  width: 100%;
}
/* wrapper utama */
.puboa-wrapper {
  background: #f5f5f5;
  padding: 2rem;
  font-family: Sans-serif;
  color: #000;
  max-width: 1200px;
  margin: 2rem auto;
  border-radius: 8px;

  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
.puboa-wrapper.puboa-visible {
  opacity: 1;
  transform: translateY(0);
}

.puboa-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.puboa-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  color: #333;
  text-transform: uppercase;
}
.puboa-btn-more {
  background: #ff6600;
  color: #fff !important;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  font-size: 0.9rem;
}

.puboa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 1.5rem;
}

.puboa-card {
  background: #fff;
  color: #000;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.puboa-thumb-link {
  display: block;
  width: 100%;
  height: 260px; 
  overflow: hidden;
}
.puboa-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.puboa-card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.puboa-title {
  font-size: 1rem;
  margin: 0 0 .7rem;
  line-height: 1.4;
}
.puboa-title a {
  color: #000;
  text-decoration: none;
}
.puboa-excerpt {
  font-size: .9rem;
  margin-bottom: .5rem;
}
.puboa-readmore {
  color: #006d5c;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-bottom: .5rem;
}
.puboa-meta {
  font-size: .8rem;
  color: #666;
  margin-top: auto;
  padding-top: .5rem;
  border-top: 1px solid #ddd;
}

/* responsive */
@media (max-width: 768px) {
  .puboa-wrapper {
    padding: 1rem;
    border-radius: 0;
  }
  .puboa-header {
    flex-direction: row;
    justify-content: space-between;
    padding: 0.5rem;
  }
  .puboa-heading {
    font-size: 1rem;
  }
  .puboa-btn-more {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
    .puboa-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .puboa-thumb-link {
    height: 180px;
  }
  .puboa-title {
    font-size: 1rem;
  }
}
  .sccrgd-section {
    text-align: center;
    margin: 50px 0;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
  }

  /* Saat section aktif (masuk viewport) */
  .sccrgd-section.show {
    opacity: 1;
    transform: translateY(0);
  }

  .sccrgd-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
  }

  .sccrgd-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .sccrgd-gallery img {
  width: 320px;
  height: 320px;
  object-fit: cover;       /* crop rapi tanpa distorsi */
  object-position: center; /* fokus selalu di tengah */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  display: block;
  }

  /* Responsif: layar kecil gambar tampil 1 kolom */
  @media (max-width: 768px) {
    .sccrgd-gallery {
      flex-direction: column;
      align-items: center;
    }

    .sccrgd-gallery img {
          width: 90%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 1 / 1;    /* jaga rasio 1:1 meski height auto */
    object-fit: cover;
    object-position: center;
    }
  }

  .countsccr-wrapper *,
  .countsccr-wrapper *::before,
  .countsccr-wrapper *::after {
    box-sizing: border-box;
  }

  .countsccr-wrapper {
    background: #eef1f0;
    padding: 26px 16px;
    margin-top: 0px;
        margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    color: #1f2b2a;
    font-family: "Helvetica Neue", Arial, sans-serif;
    overflow: hidden;
  }

  .countsccr-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  /* Judul: sekarang dari bawah -> atas (translateY(40px) -> 0) */
  .countsccr-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: .02em;
    margin-bottom: 36px;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 700ms cubic-bezier(.2,.9,.3,1), opacity 700ms ease;
  }

  /* Judul saat visible */
  .countsccr-visible .countsccr-title {
    transform: translateY(0);
    opacity: 1;
  }

  .countsccr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 28px 20px;
    align-items: center;
    justify-items: center;
  }

  .countsccr-item {
    width: 100%;
    max-width: 220px;
    padding: 8px 10px;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 700ms cubic-bezier(.2,.9,.3,1), opacity 700ms ease;
  }

  .countsccr-visible .countsccr-item {
    transform: translateY(0);
    opacity: 1;
  }

  /* Slight stagger for visual reveal (only affects reveal, not counting start) */
  .countsccr-item {
    transition-delay: var(--countsccr-delay, 0ms);
  }

  .countsccr-number {
    font-size: 3.6rem;
    line-height: 1;
    font-weight: 800;
    color: #0b8b7a;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }

  .countsccr-label {
    font-size: 0.98rem;
    color: #5b6564;
  }

  @media (max-width: 640px) {
  .countsccr-inner {
    max-width: 100%;
    margin: 0;
    padding: 1rem;
  }

  /* Membesarkan semua teks secara umum */
  .countsccr-wrapper {
    font-size: 1.2rem; /* ukuran dasar lebih besar */
  }

  .countsccr-title {
    font-size: 1.75rem; /* judul lebih besar */
    margin-bottom: 18px;
  }

  .countsccr-number {
    font-size: 3rem; /* angka lebih besar */
  }

  .countsccr-label {
    font-size: 1.2rem; /* label lebih jelas terbaca */
  }

  .countsccr-grid {
    gap: 18px;
  }

  }

    .sccr-footer {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
}

.footer-top {
  background-color: #00A89E;
  padding: 4px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer-left {
  white-space: nowrap;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.footer-right .mail-icon {
  width: 18px;
  height: 18px;
  filter: invert(1);
}

.footer-bottom {
  background-color: #00897F;
  padding: 4px 20px;
  text-align: center;
  white-space: nowrap;
}

/* pertama */
.sccr-ft {
  padding: 60px 40px;
  background: #fff;
  font-family: "Outfit", sans-serif;
  color: #000;
}

.sccr-ft-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT */
.footer-logo img {
  width: 260px;
  display: block;
}

.footer-logo-text {
  font-size: 20px;
  margin-top: 15px;
  font-weight: 600;
}

/* HEADINGS */
.sccr-footer h3 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
}

/* MIDDLE TEXT */
.footer-contact p {
  margin: 10px 0;
  line-height: 1.5;
  font-size: 17px;
}

/* ICONS */
.follow-icons {
  display: flex;
  gap: 15px;
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Untuk demo, pakai emoji sebagai icon. Ganti dengan SVG/png jika ada */
.icon.linkedin::before { content: "🔗"; font-size: 26px; }
.icon.instagram::before { content: "📷"; font-size: 26px; }
.icon.book::before { content: "📘"; font-size: 26px; }
.icon.wp::before { content: "🌀"; font-size: 26px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .sccr-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .follow-icons {
    justify-content: center;
  }
}
/* RESPONSIVE FIX */
@media (max-width: 900px) {

  /* grid berubah jadi 1 kolom */
  .sccr-ft-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* logo biar tidak terlalu besar */
  .footer-logo img {
    width: 180px;
    margin: 0 auto;
  }

  /* spacing lebih rapat agar tidak „ngos-ngosan“ di layar kecil */
  .sccr-ft {
    padding: 40px 20px;
  }

  /* icon follow tetap rapi tengah */
  .follow-icons {
    justify-content: center;
  }

  /* bagian footer paling atas — flex diubah menjadi kolom */
  .footer-top {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  /* bagian kanan (email) biar tidak mepet icon */
  .footer-right {
    justify-content: center;
  }

  /* bagian bawah selalu rapi */
  .footer-bottom {
    white-space: normal;
    font-size: 14px;
    padding: 10px 15px;
  }
}


/* patch */
#wpadminbar, .nojq {
    display: none;
}
html {
    margin-top: 0 !important;
}
@media (max-width: 782px) {
    html {
        margin-top: 0 !important;
    }
    .surel-sccr {
    display: none;
}
  .nomor-hp {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cnomor-hp span {
    display: block;
    margin: 5px 0;
  }
}
.notelpp {
    text-decoration: none;
}
@media (max-width: 900px) {
  .footer-left,
  .footer-right,
  .footer-bottom {
    white-space: normal;   /* Izinkan teks turun ke baris berikutnya */
    word-break: break-word; /* Jika teks sangat panjang tetap aman */
    text-align: center;    /* Agar rapi */
  }

  .footer-top {
    align-items: center;
  }

  .footer-left {
    max-width: 100%;
  }
}
 .pesanwhatsapp {
    position:fixed;bottom:20px;right:20px;width:60px;height:60px;z-index:99999;background:#25d366;border-radius:50%;display:flex;justify-content:center;align-items:center;box-shadow:0 4px 10px rgb(0 0 0 / .3);transition:transform .2s ease}
    .pesanwhatsapp:hover{transform:scale(1.1)}