/*
Theme Name: sjk-new-themes
Author: Andang - RASVARA
Version: 1.5
*/
/* --- RESET & DASAR --- */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');


body, p {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    font-size: 14px;
    line-height: 1.5;
    font-weight: normal;
    color: #333;
}


h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; } 
h6 { font-size: 16px; } 


h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 500; 
}
.site-content {
    width: 100%;
    overflow-x: hidden; 
}

.single .site-content, 
.single main {
    margin-bottom: 30px !important;
    padding-bottom: 30px !important;
}
section {
    width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.top-header {
    background-color: #ffffff;
    padding-top: 15px;
    padding-bottom: 15px;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-social {
    display: flex;
    gap: 15px;
}

/* --- EFEK ZOOM IKON SOSIAL MEDIA --- */

.nav-social a {
    color: #333333;
    font-size: 20px;
    text-decoration: none;
    display: inline-block; 
    transition-property: transform, color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
}

.nav-social a:hover {
    color: #bb0d0d;
    transform: scale(1.3); 
}

/* --- BARIS BAWAH / MENU BAR (MERAH) --- */
.main-navigation {
    background-color: #bb0d0d;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 50px;
    display: flex;
    align-items: center;
    position: relative;
}


.menu-wrapper {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.menu-wrapper li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: normal;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
}

.menu-wrapper li {
    position: relative !important; 
}

.menu-wrapper ul.sub-menu, 
.menu-wrapper li ul {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    background-color: #bb0d0d !important; /
    top: 100% !important; 
    left: 0 !important;
    z-index: 9999 !important;
    list-style: none !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    min-width: 200px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
}

.menu-wrapper li:hover > ul,
.menu-wrapper li:hover > .sub-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.menu-wrapper li a:hover,
.menu-wrapper li.current-menu-item a,
.menu-wrapper li.current_page_item a {
    color: #ffff00 !important; 
    background-color: transparent !important; 
    transition: color 0.3s ease;
}

.menu-wrapper li::before {
    content: none !important;
}

.menu-wrapper ul.sub-menu li a {
    text-transform: none !important;
    padding: 8px 20px !important;
    font-size: 14px !important;
}

.menu-wrapper > li.menu-item-has-children > a {
    display: flex !important;
    align-items: center;
    gap: 8px; /* Jarak antara teks dan panah */
}

.menu-wrapper > li.menu-item-has-children > a::after {
    content: "\f347"; 
    font-family: dashicons;
    font-size: 12px;
    color: #ffffff;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.menu-wrapper li.current-menu-item > a,
.menu-wrapper li.current-menu-ancestor > a {
    color: #ffff00 !important;
}


.menu-wrapper li.current-menu-item > a::after,
.menu-wrapper li.current-menu-ancestor > a::after {
    color: #ffff00 !important;
    transform: rotate(0deg); 
}

.menu-wrapper > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg); 
}

.menu-wrapper .sub-menu li.menu-item-has-children > a::after {
    content: "\f345"; 
    font-size: 10px;
    position: absolute;
    right: 15px;
}

.menu-toggle {
    display: none;
}

#mobile-menu-overlay {
    display: none;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-inner {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-inner::before {
    content: "";
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    top: -8px;
    left: 0;
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-inner::after {
    content: "";
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    top: 8px;
    left: 0;
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-toggle.is-active .hamburger-inner {
    background-color: transparent;
}

.menu-toggle.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.is-active .hamburger-inner::after {
    top: 0;
    transform: rotate(-45deg);
}

.site-header .menu-siswa a, 
.main-navigation .menu-siswa a {
    background-color: #ffffff !important; 
    color: #bb0d0d !important;             
    padding: 8px 20px !important;
    border-radius: 50px;                   
    font-weight: 600 !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 7px;                      
}

.site-header .menu-siswa a:hover {
    background-color: #f0f0f0 !important;
    transform: translateY(-2px);           
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    color: #333 !important;
}

/* --- SLIDER & HERO --- */

/* Container Utama */
.main-slider-container { 
    width: 100%; 
    position: relative; 
}

.slide-slide-2 img {
    object-position: 70% !important;
}
.slide-slide-3 img {
    object-position: 30% !important;
}
.slide-slide-4 img {
    object-position: 22% !important;
}

.slide-slide-5 img {
    object-position: 70% !important;
}
.slide-slide-6 img {
    object-position: 22% !important;
}

.main-slider-container { 
    width: 100%; 
    position: relative;
    display: block;
    background: #000; 
}

.home-main-slider .main-slide-item { 
    position: relative; 
    height: 550px !important; 
    min-height: 550px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    outline: none; 
}

.main-slide-bg, .main-slide-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    z-index: 1;
}

.main-slide-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
}

.main-slide-caption {
    position: absolute; 
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: #fff;
    width: 90%;
}

.caption-inner h3 {
    font-size: 24px !important;
    margin: 0 auto !important; 
    text-shadow: 2px 2px 7px rgba(0,0,0,0.8);
    background-color: rgba(0,0,0,.5);
    max-width: 650px;
    text-align: center;  
    line-height: 1.2;     
    display: block;    
    padding: 20px 5px;       
}

.home-main-slider .slick-dots {
    bottom: 25px !important;
    z-index: 10;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}

.home-main-slider .slick-dots li button:before {
    color: #ffffff !important; 
    opacity: 0.5;              
    font-size: 10px;         
}

.home-main-slider .slick-dots li.slick-active button:before {
    color: rgb(187, 13, 13) !important; 
    opacity: 1;
    font-size: 15px;                 
}

.home-main-slider .slick-dots li button:hover:before {
    color: rgb(187, 13, 13) !important;
    opacity: 0.8;
}

.slide-slide-6 .main-slide-caption {
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    margin-top: 100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
    width: 100% !important;
    max-width: 700px; 
}


@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-hero {
    height: 450px; 
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #333; 
}

.hero-bg-content {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-bg-content::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Ubah 0.5 atau 0.7 menjadi 0.3 agar lebih terang */
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2; 
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    color: #ffffff !important;
    text-transform: uppercase;
    font-weight: 800;
    font-size: clamp(24px, 5vw, 42px); 
    margin: 0;
    padding-bottom: 15px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
    border-bottom: 5px solid #bb0d0d;
    display: inline-block;
}

.img-responsive-center {
    display: block;     
    max-width: 100%;      
    height: auto;          
    margin-left: auto;     
    margin-right: auto;    
}


.img-full-width {
    width: 100%;
    height: auto;
    display: block;
}

/* --- KONTEN --- */
.upper-blok{
    background-color: #ffffff;
    background-image: url(assets/images/bg-upper.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    width: 100%;
    color:#000;
    padding-top: 50px;
    font-weight: 400;
}
.upper-blok h1 {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    display: block;
    width: 100%;
}
.top-title-blok h3, .top-title-blok h4{
    text-align: center;
}
.top-title-blok h3{
    color:#6d0000;
}
.top-title-blok h4{
    color:#000;
}
.middle-blok-1{
    width: 100%;
    background-color: #ffffff;
    background-image: url(assets/images/bg-mid-1.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
}


.middle-blok-2{
    width: 100%;
    background-color: #ffffff;
    background-image: url(assets/images/bg-mid-2.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    padding-bottom: 70px;
}

.all-kursus{
    margin-top: 50px;
    margin-bottom: 70px;
}


/* --- TAMPILAN DESKTOP --- */
.kelas-reguler {
    background-image: url(assets/images/kelas-reguler.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex !important;
    /* Paksa tinggi minimal 500px */
    min-height: 450px !important;
    flex: 0 0 50%;
}

.kelas-intensif {
    background-image: url(assets/images/kelas-intensif.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex !important;
    /* Paksa tinggi minimal 500px */
    min-height: 450px !important;
    flex: 0 0 50%;
}

.kelas-privat {
    background-image: url(assets/images/kelas-privat.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex !important;
    /* Paksa tinggi minimal 500px */
    min-height: 450px !important;
    flex: 0 0 50%;
}

.persiapan-magang-tg {
    background-image: url(assets/images/magang-tg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex !important;
    /* Paksa tinggi minimal 500px */
    min-height: 450px !important;
    flex: 0 0 50%;
}

.kelas-studijepang {
    background-image: url(assets/images/studijepang.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex !important;
    /* Paksa tinggi minimal 500px */
    min-height: 450px !important;
    flex: 0 0 50%;
}

.in-house-training {
    background-image: url(assets/images/in-house-training.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex !important;
    /* Paksa tinggi minimal 500px */
    min-height: 450px !important;
    flex: 0 0 50%;
}

.kelas-free-trial {
    background-image: url(assets/images/kelas-free-trial.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex !important;
    /* Paksa tinggi minimal 500px */
    min-height: 450px !important;
    flex: 0 0 50%;
}

.kursus-blok {
    background-image: url(assets/images/bg-kursus.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50% auto;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    min-height: 450px !important;
    flex: 0 0 50%;
}

.row-flex {
    display: flex !important;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.btn-home-text{
  padding-top: 10px;
  padding-bottom: 10px;
  float: right;

}

.btn-home-text1 a {
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
}

.mouse-scroll {
    padding: 7px;
    height: 25px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 22px;
    margin-left: 5px;
}

.mouse-scroll img {
    border-radius: 9999px;
    height: 100%;
    position: relative;
    width: 100%;
    z-index: 2;
    display: block;
}

.btn-home-text1 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.btn-home-text1 i.fa-long-arrow-right {
    margin-left: 10px;
    margin-right: 10px;
}

.btn-home-text p, .btn-home-text1 p{
  display: inline;
  padding-right: 5px;
  font-style: italic;
}

.btn-home-text2 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
    align-items: center;
}

.btn-home-text2 i.fa-long-arrow-right {
    margin-left: 7px;
    margin-right: 7px;
}

.btn-home-text2 p{
  display: inline;
  padding-right: 5px;
  font-style: italic;
}

@keyframes cycle-colors {
  0% { border-color: hsl(0, 100%, 50%); }
  25% { border-color: hsl(90, 100%, 50%); }
  50% { border-color: hsl(180, 100%, 50%); }
  75% { border-color: hsl(270, 100%, 50%); }
  100% { border-color: hsl(360, 100%, 50%); }
}

@keyframes pulse {
  to {
    opacity: 0;
    transform: scale(1);
  }
}

.mouse-scroll::before,
.mouse-scroll::after {
  animation: pulse 2s linear infinite;
  border: #fd062f solid 3px;
  border-radius: 9999px;
  content: ' ';
  height: 138%;
  left: -25%;
  opacity: .3;
  position: absolute;
  top: -23%;
  transform: scale(0.714);
  width: 138%;
  z-index: 1;
}

.mouse-scroll::after {
  animation-delay: 1s;
}

.mouse-scroll:hover::before,
.mouse-scroll:hover::after {
  animation: pulse 1s linear infinite, cycle-colors 6s linear infinite;
}

.mouse-scroll:hover::after {
  animation-delay: .5s;
}

.konsultasi-blok {
    background-image: url('assets/images/bg-konsultasi.png');
    background-position: bottom;
    background-size: 50% auto;
    background-repeat: no-repeat;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px; 
    position: relative;
    min-height: 200px;
    display: block;
    width: 100%;
    clear: both;
}

.konsultasi-blok h1 {
    color: #900000;
    font-weight: normal;
    text-align: center;
}

.konsultasi-blok h1 a{
    text-decoration: none;
    color:red;
}

.konsultasi-blok h3{
    color:#000;
    font-weight: normal;
}

.sjk-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 100px 0 50px 0;
    padding: 0 20px; 
    box-sizing: border-box;
}

.sjk-title-wrapper::before,
.sjk-title-wrapper::after {
    content: "";
    height: 2px;
    background: #bb0d0d; 
    flex-grow: 1;        
    max-width: 150px;    
    min-width: 50px;   
}

.sjk-title-wrapper::before {
    background: linear-gradient(to left, #bb0d0d, transparent);
}
.sjk-title-wrapper::after {
    background: linear-gradient(to right, #bb0d0d, transparent);
}

.sjk-pilihan-content, .sjk-testimoni-content, .sjk-klien-content, .sjk-page-content {
    display: block;
    width: 100%;
}

.sjk-page-content {
    line-height: 1.8;
    color: #444;
    font-size: 16px;
    text-align: justify;
}

/* Styling Paragraf */
.sjk-page-content p {
    margin-bottom: 25px;
}

.sjk-page-content strong, 
.sjk-page-content b {
    color: #bb0d0d; 
    font-weight: 700;
}

.sjk-page-intro {
    font-size: 18px;
    color: #333;
    border-left: 4px solid #bb0d0d;
    padding-left: 20px;
    font-style: italic;
}

.sjk-note-box {
    background: #fff5f5;
    border: 1px solid #ffcccc;
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.sjk-note-box::before {
    content: "\f459"; 
    font-family: dashicons;
    color: #bb0d0d;
    font-size: 40px;
    position: absolute;
    right: -10px;
    bottom: -10px;
    opacity: 0.1;
}

.sjk-note-box h5 {
    color: #bb0d0d;
    margin-top: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sjk-intro-program {
    line-height: 1.8;
    color: #444;
    font-size: 16.5px;
    background: #fdfdfd;
    padding: 30px 40px;
    border-radius: 0 15px 15px 0; 
    margin-bottom: 40px;
    border-left: 6px solid #bb0d0d; 
    
    box-shadow: 5px 5px 20px rgba(0,0,0,0.02);
}

.sjk-intro-program p:first-child {
    font-size: 19px;
    color: #222;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 25px;
}

.sjk-intro-program strong {
    color: #bb0d0d;
    font-weight: 700;
}

.sjk-intro-program p {
    margin-bottom: 20px;
}

.sjk-metode-wrapper {
    margin: 40px 0;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    gap:10px;
}


.sjk-metode-item {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.sjk-metode-item:hover {
    transform: translateX(10px); 
    border-left: 5px solid #bb0d0d;
    box-shadow: 0 8px 25px rgba(187, 13, 13, 0.08);
}


.sjk-metode-icon {
    background: #fff5f5;
    color: #bb0d0d;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
}

.sjk-metode-text {
    line-height: 1.7;
    color: #555;
    font-size: 15.5px;
    margin: 0;
}

.sjk-metode-text strong {
    color: #bb0d0d;
}

.pilihan-blok{
  display: flex !important;
  background-image: url(assets/images/bg-pilihan.jpg);
  background-repeat:no-repeat;
  background-size: contain;
  height: auto;
  background-position: center center;
}

.pilihan-title{
    background-color: #bb0d0d;
    background-image: linear-gradient(to bottom, 
        rgba(255,255,255,0.3) 0%, 
        rgba(255,255,255,0.1) 50%, 
        rgba(0,0,0,0.1) 51%, 
        rgba(0,0,0,0.2) 100%);   
    padding: 12px 30px;
    border-radius: 5px;
    border: 1px solid #990a0a;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 3px 5px rgba(0,0,0,0.2);
    margin: 0 20px; /* Jarak kotak ke garis luar */
    flex-shrink: 0;
    width: fit-content;
}

.pilihan-title h4 {
    color: #fff;
    margin: 0 auto !important;
    text-align: center;
    line-height: 1.4; 
    font-size: 20px !important; 
    max-width: 300px; 
    display: block;
}
.pilihan-img {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 20%;
    min-height: 150px !important;
}

.pilihan-teks {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    flex: 0 0 80%;
    min-height: 150px !important;
}

.testimoni-title {
    background-color: #bb0d0d;
    background-image: linear-gradient(to bottom, 
        rgba(255,255,255,0.3) 0%, 
        rgba(255,255,255,0.1) 50%, 
        rgba(0,0,0,0.1) 51%, 
        rgba(0,0,0,0.2) 100%);
    
    padding: 12px 30px;
    border-radius: 5px;
    border: 1px solid #990a0a;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 3px 5px rgba(0,0,0,0.2);
    
    margin: 0 20px; 
    flex-shrink: 0;
    width: fit-content;
}

.testimoni-title h4 {
    color: #fff !important;
    margin: 0 !important;
    white-space: nowrap;
    font-size: 18px;
}

.testi-content {
    min-height: 80px; 
    display: flex;
    align-items: center;    
    justify-content: center;
}

.testi-content p {
    margin: 0;
    line-height: 1.6;
}

.testi-item {
    text-align: center;
    padding: 10px;
    background: #ffffff;
}
.testi-foto {
    margin-bottom: 5px;
}

.testi-foto img {
    width: 80px;     
    height: 80px;     
    border-radius: 50%; 
    object-fit: cover;  
    margin: 0 auto;  
    border: 3px solid #bb0d0d; 
}

.siswa-nama {
    color: #bb0d0d; 
    font-size: 18px;
    display: block;
    margin-top: 10px;
}

.siswa-level {
    color: #666;
    font-size: 14px;
    font-weight: normal;
    font-style: italic;
    display: block;
    margin-top: 2px;
}

.slick-dots {
    position: relative; 
    bottom: 0;          
    margin-top: 20px;  
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    width: 100%;
}

.testimoni-slider .slick-dots li button:before {
    font-size: 7px !important; 
    color: #ccc !important;    
    opacity: 1 !important;
    transition: all 0.3s ease; 
}

.testimoni-slider .slick-dots li.slick-active button:before {
    color: #bb0d0d !important;
    font-size: 15px !important;
    opacity: 1 !important;
}

.testimoni-slider .slick-dots li {
    margin: 0 2px !important; 
    width: 10px !important;   
}

.testimoni-slider .slick-dots li button {
    padding: 0 !important;
    width: 20px !important;
}
.testimoni-slider .slick-dots {
    position: relative !important;
    bottom: 0 !important;
}

.klien{
    margin-bottom: 30px;
    display: block;
    text-align: center;
}

.klien-title {
     background-color: #bb0d0d;
    background-image: linear-gradient(to bottom, 
        rgba(255,255,255,0.3) 0%, 
        rgba(255,255,255,0.1) 50%, 
        rgba(0,0,0,0.1) 51%, 
        rgba(0,0,0,0.2) 100%);
    
    padding: 12px 30px;
    border-radius: 5px;
    border: 1px solid #990a0a;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 3px 5px rgba(0,0,0,0.2);
    
    margin: 0 20px; /* Jarak kotak ke garis luar */
    flex-shrink: 0;
    width: fit-content;
}

.klien-title h4 {
    color: #fff;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    white-space: nowrap;
    font-size: 1.2rem;
}

.klien-item img {
    filter: grayscale(100%); 
    opacity: 0.6;
    transition: all 0.3s ease;
    max-height: 80px;
    width: auto !important;
    margin: 0 auto;
}

.klien-item img:hover {
    filter: grayscale(0%); 
    opacity: 1;
}

.klien-slider img {
    max-width: 150px;
    height: auto;
    margin: 0 auto;
    filter: grayscale(100%); 
    transition: 0.3s;
}

.klien-slider img:hover {
    filter: grayscale(0%);
}

.lower-blok{
    background-color: #ffffff;
    background-image: url(assets/images/bg-lower.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom left;
    width: 100%;
    color:#000;
    font-weight: 400;
    padding-bottom: 20px;
}

.page-title{
    background-color: #bb0d0d;
    background-image: linear-gradient(to bottom, 
        rgba(255,255,255,0.3) 0%, 
        rgba(255,255,255,0.1) 50%, 
        rgba(0,0,0,0.1) 51%, 
        rgba(0,0,0,0.2) 100%);   
    padding: 12px 30px;
    border-radius: 5px;
    border: 1px solid #990a0a;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 3px 5px rgba(0,0,0,0.2);
    margin: 0 20px; /* Jarak kotak ke garis luar */
    flex-shrink: 0;
    width: fit-content;
}

.page-title h4 {
    color: #fff;
    margin: 0 auto !important;
    text-align: center;
    line-height: 1.4; 
    font-size: 20px !important; 
    max-width: 300px; 
    display: block;
}

.img-holder {
    display: block;             
    max-width: 100%;             
    width: 900px;                
    height: auto;                
    margin-left: auto;           
    margin-right: auto;
    border-radius: 8px;   
    margin-top: 70px;      
    margin-bottom: 70px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    box-sizing: border-box;
}

.pelatihan {
    margin: 30px 0;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.pelatihan table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}

.pelatihan table tr {
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.pelatihan table tr:hover {
    background-color: #fff9f9; 
}

.pelatihan table td:first-child {
    width: 35%;
    background-color: #fcfcfc;
    color: #333;
    font-weight: 600;
    padding: 15px 20px;
    border-right: 2px solid #bb0d0d; 
}

.pelatihan table td:last-child {
    padding: 15px 20px;
    color: #555;
    line-height: 1.5;
}

.pelatihan table td b {
    color: #bb0d0d;
    font-size: 1.1em;
}

.pelatihan .keterangan-text {
    margin-top: 15px;
    font-size: 0.95em;
    color: #666;
}

.pelatihan ul {
    list-style: none;
    padding: 0;
}

.pelatihan ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.pelatihan ul li::before {
    content: "\f147"; 
    font-family: dashicons;
    position: absolute;
    left: 0;
    color: #bb0d0d;
    font-size: 18px;
}

.pelatihan-online {
    background: #ffffff;
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: border-color 0.3s ease;
}

.pelatihan-online:hover {
    border-color: rgba(13,42,85,.2);
}

.pelatihan-online h4 {
    background: #0d2a55; 
    color: #ffffff !important;
    padding: 15px 20px;
    margin: -30px -30px 25px -30px !important; 
    border-radius: 12px 12px 0 0;
    text-align: center;
    font-size: 1.4rem;
}

.pelatihan-online table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 20px;
}

.pelatihan-online td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.5;
}

.pelatihan-online td:first-child {
    font-weight: bold;
    color: #bb0d0d;
    width: 30%;
}

.pelatihan-online b {
    font-size: 1.2rem;
    color: #bb0d0d;
}

.pelatihan-online s {
    color: #999;
    margin-left: 10px;
}

.pelatihan-online i {
    display: block;
    color: #28a745; 
    font-style: normal;
    font-weight: 500;
    margin-top: 5px;
}

.pelatihan-online ul {
    background: #fffde7; 
    padding: 15px 15px 15px 35px !important;
    border-radius: 8px;
    list-style-type: square;
}

.pelatihan-online li {
    font-size: 13px;
    margin-bottom: 5px;
    color: #555;
}

.keuntungan-program, .list-langkah, .list-unggulan {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.keuntungan-program li, .list-langkah li, .list-unggulan li {
    position: relative;
    padding: 12px 15px 12px 45px;
    margin-bottom: 12px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    box-sizing: border-box; 
}

.keuntungan-program li:hover, .list-langkah li:hover, .list-unggulan li:hover {
    border-left: 5px solid #bb0d0d;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.keuntungan-program li::before, .list-langkah li::before, .list-unggulan li::before {
    font-family: dashicons;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #bb0d0d; 
    font-size: 20px;
    font-weight: bold;
}

.keuntungan-program li::before { 
    content: "\f147"; 
} 

.list-langkah li::before { 
    content: "\f345"; 
}       

.list-unggulan li::before { 
    content: "\f529";
}      

.pendaftaran-area {
    margin: 50px 0;
    padding: 30px 0px;
    background: #fdfdfd;
    border-radius: 15px;
    border: 1px dashed #bb0d0d; 
}

.pendaftaran-area h4 {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    margin-bottom: 30px;
    margin-block-start:0px;
    text-transform: uppercase;
}
.pendaftaran-area h5 { 
    margin-block-start: 0px !important;
    text-align: center;
}

.pendaftaran-area p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.btn-shinjuku-glossy {
    background: linear-gradient(to bottom, #d40e0e 0%, #bb0d0d 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 18px;
    font-weight: normal;
    border-radius: 50px; 
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(187, 13, 13, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #990a0a;
}

.btn-shinjuku-glossy:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(to bottom, #bb0d0d 0%, #990a0a 100%);
    box-shadow: 0 6px 20px rgba(187, 13, 13, 0.6);
}

.btn-shinjuku-glossy:active {
    transform: translateY(1px);
}

.kursus-holder {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.kursus-block-privat {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eee;
    display: flex; 
    flex-direction: row; 
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Wrapper agar kontainer tetap rapi */
.kursus-block-privat-wrapper {
    margin-bottom: 20px;
    margin-top: 40px;
}

/* Styling Tombol Pemicu */
.kursus-toggle-pendaftaran {
    background: #f9f9f9;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #eee;
    border-top: none; /* Menyatu dengan block di atasnya */
    border-radius: 0 0 12px 12px;
    font-weight: bold;
    color: #d40e0e;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.kursus-toggle-pendaftaran:hover {
    background: #fff0f0;
}

.sjk-modal {
    position: fixed !important; 
    z-index: 999999 !important; /* Supaya di depan semua elemen */
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8); 
    display: none; align-items: center; justify-content: center;
}
.sjk-modal-content {
    background: #fff; padding: 30px; border-radius: 20px; 
    width: 90%; max-width: 400px; text-align: center;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}
.sjk-icon-success {
    width: 70px; height: 70px; background: #27ae60; color: #fff; 
    border-radius: 50%; font-size: 40px; line-height: 70px; margin: 0 auto 15px;
}
.sjk-btn-close {
    background: #bb0d0d; color: #fff; border: none; padding: 12px 25px;
    border-radius: 8px; cursor: pointer; font-weight: bold; width: 100%; margin-top: 15px;
}
@keyframes sjkPop { from {transform: scale(0.5); opacity: 0;} to {transform: scale(1); opacity: 1;} }
/* Styling Tombol Pemicu */

.chevron-icon {
    font-style: normal;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Animasi Chevron saat aktif */
.kursus-toggle-pendaftaran.active .chevron-icon {
    transform: rotate(180deg);
}

/* Kontainer Form */
.kursus-form-dropdown {
    background: #fff;
    border: 1px solid #eee;
    border-top: none;
    padding: 20px;
    border-radius: 0 0 12px 12px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}

.syarat-label {
    display: block; 
    font-size: 11px;
    font-weight: 400;
    text-transform: none;
    color:#fff; 
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    margin-top: 8px;
    letter-spacing: 0;
    line-height: 1.2;
}

.kursus-block-privat h3 {
    flex-direction: column; 
    padding: 25px 15px !important;
    background: linear-gradient(135deg, #d40e0e 0%, #bb0d0d 100%);
    color: #fff !important; 
    padding: 20px;
    margin: 0;
    width: 200px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    flex-shrink: 0;
}

.kursus-block-privat {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
    position: relative;
    border-left: 0px solid #bb0d0d; 
}

.kursus-block-privat:hover {
    transform: translateY(-3px);
    border-color: #bb0d0d;
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
    border-left: 1px solid #bb0d0d;
    z-index: 10;
}

.kursus-block-privat:hover .kursus-modal button {
    background: #d40e0e;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(187, 13, 13, 0.3);
}

.kursus-block-privat h3 {
    transition: all 0.3s ease;
}

.kursus-block-privat:hover h3 {
    filter: brightness(1.1); 
}

.kursus-desc-privat {
    display: flex; 
    flex-direction: row;
    flex-grow: 1;
    padding: 20px;
    padding-right: 0;
}

.kursus-desc-privat > div {
    padding: 0 15px;
    border-right: 1px solid #dfdfdf;
    flex: 1; 
}

.kursus-desc-privat > div:nth-child(2) {
    flex: 1.5; 
    background-color: #fcfcfc; 
}

.kursus-desc-privat > div:nth-child(3) {
    border-right: 0;
}

.kursus-desc-privat > div:last-child {
    border-right: none !important;
}

.kursus-desc-privat h5 {
    color: #bb0d0d;
    font-size: 12px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.kursus-desc-privat ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kursus-desc-privat ul li {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.kursus-desc-privat ul li::before {
    content: "\f147"; font-family: dashicons;
    position: absolute; left: 0; color: #bb0d0d;
}

.kursus-desc-privat .biaya-item {
    flex: 0.8; 
}

.kursus-desc-privat h6 {
    display: block;
    color: #bb0d0d;
    font-size: 18px; 
    font-weight: 500;
    margin: 5px 0;
}

.kursus-modal {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 0px solid #f0f0f0;
}

.kursus-modal button {
    padding: 12px 25px;
    background: #bb0d0d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
}

.kursus-modal button:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.btn-shinjuku-glossy .dashicons-cart {
    font-size: 18px;
}

.hasil-privat-holder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.hasil-privat-block {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #dfdfdf;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hasil-privat-title {
    background: #fdfdfd;
    padding: 20px;
    border-bottom: 3px solid #0d2a55;
}

.hasil-privat-title h4 {
    margin: 0;
    color: #bb0d0d;
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
}

.hasil-privat-desc {
    padding: 25px;
    flex-grow: 1;
}

.hasil-privat-desc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hasil-privat-desc li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.hasil-privat-desc li::before {
    content: "\f147"; 
    font-family: dashicons;
    position: absolute;
    left: 0;
    color: #27ae60; 
    font-size: 18px;
}

.promo-kelas-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    border: 1px dashed #ccc;
    line-height: 1.8;
    color: #666;
    margin-top: 30px;
    margin-bottom: 70px;
}

.promo-kelas-box a {
    color: #bb0d0d;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.promo-kelas-box a:hover {
    border-bottom: 1px solid #bb0d0d;
    color: #d40e0e;
}

.table-responsive {
    width: 100% !important;
    overflow-x: auto !important; 
    -webkit-overflow-scrolling: touch;
    margin-top: 20px;
    margin-bottom: 20px;
}

table.kelas-online {
    width: 100% !important;
    min-width: 250px !important; 
    border-collapse: collapse !important;
    background: #fff !important;
    border: 1px solid #eee !important;
}

.kelas-online th {
    background-color: #bb0d0d !important;
    color: #ffffff !important;
    padding: 15px !important;
    text-align: left !important;
    font-size: 14px !important;
    text-transform: uppercase;
}

.kelas-online td {
    padding: 12px 15px !important;
    border-bottom: 1px solid #eee !important;
    font-size: 14px !important;
    color: #444 !important;
    vertical-align: middle !important;
}

.kelas-online td:first-child {
    background-color: #f9f9f9 !important;
    font-weight: bold;
    color: #0d2a55 !important;
    width: 150px;
}

.kelas-online td:last-child {
    background-color: #fffde7 !important; 
    font-weight: 500;
}

.kelas-online tr:hover {
    background-color: #f1f1f1 !important;
}

.bidang-kerja {
    display: flex !important;
    flex-wrap: wrap !important; 
    gap: 10px !important;       
    padding: 0 !important;
    margin: 20px 0 !important;
    list-style: none !important;
}

.bidang-kerja li {
    background-color: #0d2a55 !important; 
    color: #ffffff !important;
    padding: 8px 15px !important;
    border-radius: 20px !important;      
    font-size: 13px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    white-space: nowrap !important;     
    transition: all 0.3s ease;
}

.bidang-kerja li:hover {
    background-color: #bb0d0d !important; 
    transform: translateY(-2px);
}

.bidang-kerja li::before {
    content: "\f147"; /* Dashicon Check */
    font-family: dashicons;
    margin-right: 8px;
    color: #ffff00;   /* Centang Kuning */
    font-size: 14px;
    vertical-align: middle;
}

.syarat-umum, .syarat-ssw {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    height: 100%;
}

.syarat-umum h5, .syarat-ssw h5 {
    margin-top: 0 !important;
    color: #bb0d0d !important;
    border-bottom: 2px solid #0d2a55;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px !important;
}

.syarat-umum ul, .syarat-ssw ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.syarat-umum li, .syarat-ssw li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

.syarat-umum li::before, .syarat-ssw li::before {
    content: "\f147"; 
    font-family: dashicons;
    position: absolute;
    left: 0;
    color: #bb0d0d; 
    font-size: 18px;
}

.syarat-ssw {
    background-color: #fffef0; 
    border-color: #ffe082;
}

.benefit-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 25px 0 !important;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.benefit-list li {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-list li:hover {
    transform: translateY(-3px);
    border-color: #bb0d0d;
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}

.benefit-list li::before {
    content: "\f147"; 
    font-family: dashicons;
    margin-right: 15px;
    background: #bb0d0d; 
    color: #ffff00;   
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0; 
}

.materi-ssw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.bidang-item {
    background: #ffffff;
    border: 1px solid #0d2a55; 
    padding: 25px;
    border-radius: 5px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.bidang-item:hover {
    box-shadow: 0 8px 20px rgba(13, 42, 85, 0.1);
    transform: translateY(-5px);
}

.bidang-item h5 {
    color: #0d2a55 !important;
    font-size: 1.1rem !important;
    border-bottom: 2px solid #0d2a55; 
    padding-bottom: 10px;
    margin-bottom: 20px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.box-materi-mensetsu {
    background: #ffffff !important;
    line-height: 1.8 !important;
}

.box-materi-mensetsu h5 strong {
    color: #bb0d0d !important; 
    font-size: 1.4rem !important;
    display: block;
    margin-bottom: 20px;
}

.box-materi-mensetsu p {
    color: #333 !important;
    font-size: 15px !important;
    margin-bottom: 20px !important;
}

.ssw-mensetsu {
    list-style: none !important;
    padding: 0 !important;
}

.ssw-mensetsu li {
    position: relative;
    padding-left: 35px !important;
    margin-bottom: 15px !important;
    font-size: 14px;
    color: #444;
}

.ssw-mensetsu li::before {
    content: "\f147"; 
    font-family: dashicons;
    position: absolute;
    left: 0;
    top: -7px;
    color: #bb0d0d; 
    font-size: 20px;
}

.ssw-mensetsu li b {
    color: #0d2a55 !important; 
}

.pelatihan-ssw-mensetsu {
    background: #ffffff;
    border: 1px solid #0d2a55; 
    border-radius: 5px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pelatihan-ssw-mensetsu h4 {
    color: #0d2a55 !important;
    font-size: 1.3rem !important;
    margin-bottom: 25px !important;
    text-transform: uppercase;
}

.pelatihan-ssw-mensetsu table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 20px;
}

.pelatihan-ssw-mensetsu td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    vertical-align: top;
}

.pelatihan-ssw-mensetsu td:first-child {
    width: 35%;
    color: #bb0d0d;
}

.pelatihan-ssw-mensetsu .harga {
    font-weight: bold;
    color: #0d2a55;
    font-size: 1.1rem;
}

.pelatihan-ssw-mensetsu .cicilan {
    display: block;
    color: #28a745; 
    font-style: normal;
    font-size: 12px;
    margin-top: 5px;
}

.keterangan-box {
    background: #f9f9f9;
    padding: 15px 20px;
    border-radius: 4px;
    border-left: 4px solid #bb0d0d;
}

.keterangan-box ul {
    margin: 10px 0 0 20px !important;
    padding: 0 !important;
}

.keterangan-box li {
    font-size: 13px;
    margin-bottom: 5px;
    color: #666;
}

.inhousetraining {
    background: #ffffff;
    border: 1px solid #0d2a55; 
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.inhousetraining h4 {
    color: #0d2a55 !important;
    border-bottom: 2px solid #bb0d0d; 
    padding-bottom: 15px;
    margin-bottom: 25px !important;
    font-size: 1.4rem;
}

.inhousetraining ul {
    list-style: none !important;
    padding: 0 !important;
}

.inhousetraining ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #444;
}

.inhousetraining ul li::before {
    content: "\f147"; 
    font-family: dashicons;
    position: absolute;
    left: 0;
    top: -10px;
    color: #bb0d0d;
    font-size: 24px;
}

.inhousetraining h5 {
    color: #0d2a55 !important;
    font-weight: bold;
    margin-bottom: 10px !important;
    font-size: 1.1rem;
}

.kenapa-shinjuku-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.kenapa-item {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.6;
}

.kenapa-item strong {
    color: #bb0d0d;
}

.form-submit-box {
    background: #ffffff !important;
    border: 1px dashed #bb0d0d;
    border-radius: 5px !important;
    padding: 35px !important;
    margin-top: 40px !important;
    margin-bottom: 50px !important; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
    text-align: center;
}

.form-submit-box h5 {
    color: #333 !important; 
    font-weight: bold !important;
    font-size: 1.2rem !important;
    margin-bottom: 25px !important;
    line-height: 1.5;
}

.form-submit {
    margin-top: 20px;
    text-align: left; 
}

.studi-jepang-box {
    background: #ffffff;
    border: 1px solid #0d2a55; 
    border-radius: 5px;
    padding: 35px;
    padding-top: 15px;
    margin-bottom: 30px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.studi-jepang-box h4 {
    color: #0d2a55 !important;
    border-left: 5px solid #bb0d0d; 
    padding-left: 15px;
    margin: 30px 0 20px 0 !important;
}

.keuntungan-studi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    list-style: none !important;
    padding: 0 !important;
    margin: 25px 0 !important;
}

.keuntungan-studi li {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 15px 15px 15px 45px !important;
    border-radius: 5px;
    position: relative;
    font-weight: 500;
    color: #0d2a55;
    transition: all 0.3s ease;
}

.keuntungan-studi li:hover {
    border-color: #bb0d0d;
    background: #fff;
}

.keuntungan-studi li::before {
    content: "\f155"; 
    font-family: dashicons;
    position: absolute;
    left: 15px;
    top: 15px;
    color: #bb0d0d;
    font-size: 18px;
}

.syarat-studi-box {
    background: #ffffff !important; 
    padding: 35px !important;
    margin-top: 30px !important;
}

.syarat-studi-box h4 {
    color: #bb0d0d !important; 
    margin-top: 0 !important;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.syarat-studi-box p {
    margin-bottom: 15px !important;
    line-height: 1.8;
    color: #333;
}

.syarat-daftar-box {
    background: #ffffff;
    border: 1px solid #0d2a55;
    padding: 25px 35px;
    border-radius: 5px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.event-card-holder {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    margin-bottom: 25px !important;
    width: 100% !important; 
}

.event-card-info-block {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    flex: 1 1 calc(33.333% - 20px); 
    min-width: 280px; 
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.event-card-info-block h3 {
    margin-bottom: 20px !important;
    min-height: 45px;
    color: #0d2a55 !important;
}

.event-card-block-img img {
    width: 100% !important;
    height: 220px !important; 
    object-fit: cover !important;
    border-radius: 3px;
}

.profil-container {
    line-height: 1.9 !important;
    color: #444 !important;
}

.profil-container h1 {
    color: #0d2a55 !important;
    text-align: center;
    margin-bottom: 40px !important;
    position: relative;
    padding-bottom: 15px;
}

.profil-container h1::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #bb0d0d; 
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.profil-intro {
    font-size: 1.1rem;
    color: #0d2a55;
    border-left: 5px solid #bb0d0d;
    padding-left: 20px;
    margin-bottom: 30px !important;
    font-style: italic;
}

.legal-box {
    background: #f9f9f9;
    border: 1px solid #0d2a55;
    border-radius: 5px;
    padding: 25px;
    margin: 40px 0 !important;
    display: flex;
    align-items: flex-start; 
    gap: 20px;
}

.legal-box i {
    font-size: 40px; 
    color: #bb0d0d;
    margin-top: -3px; 
    flex-shrink: 0; 
}

.legal-text {
    font-size: 14px;
    margin: 0 !important;
    line-height: 1.5;
}

.btn-profil-kontak {
    display: inline-block;
    background: #bb0d0d;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none !important;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s;
    margin-bottom: 50px;
}

.btn-profil-kontak:hover {
    background: #0d2a55;
}

.sjk-slider-container {
    display: block;
    width: 100%;
    margin: 0 auto;
    overflow: hidden; 
}

.slide-pengajar-item {
    margin: 10px;
}

.slide-pengajar-item {
    background: #ffffff;
    border: 1px solid #0d2a55;
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex !important;
    flex-direction: column;
    min-height: 450px; 
}

.pengajar-detail-body {
    flex-grow: 1;
}

.slick-list.draggable {
    transition: height 0.5s ease-in-out;
}

.sjk-slider-container {
    position: relative;
    padding: 0 40px; 
}

.sjk-slider-container .slick-prev, 
.sjk-slider-container .slick-next {
    z-index: 10;
    width: 30px;
    height: 30px;
}

.sjk-slider-container .slick-prev:before, 
.sjk-slider-container .slick-next:before {
    font-family: 'slick';
    font-size: 30px;
    line-height: 1;
    opacity: .75;
    color: #0d2a55; 
}

.sjk-slider-container .slick-prev {
    left: 5px;
}
.sjk-slider-container .slick-next {
    right: 5px;
}

.sjk-slider-container .slick-dots {
    bottom: -35px; 
}

.sjk-slider-container {
    padding-bottom: 60px !important; 
    position: relative;
    overflow: hidden; 
}

.sjk-slider-container .slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
    position: absolute;
    bottom: 20px;    
    left: 0;
    right: 0;        
    width: 100%;      
    z-index: 10;
}

.sjk-slider-container .slick-dots li {
    margin: 0 5px;    
    display: inline-block;
}

.sjk-slider-container .slick-dots li button {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.sjk-slider-container .slick-dots li.slick-active button {
    background: #bb0d0d;
    transform: scale(1.4);
}

.sjk-slider-container .slick-dots li button:before {
    display: none; 
}

.pengajar-header {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.img-pengajar-slider {
    width: 140px !important;
    height: 160px !important;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #ddd;
    flex-shrink: 0; 
}

.pengajar-foto img {
    border-radius: 5px;
    border: 1px solid #ddd;
}

.pengajar-info-utama h4 {
    color: #bb0d0d !important;
    margin-top: 0 !important;
}

.pengajar-quote {
    font-style: italic;
    font-size: 13px;
    color: #666;
}

.pengajar-detail-body {
    margin-top: 10px;
}

.pengajar-detail-body h5, .pengajar-detail-body em {
    color: #0d2a55;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.pengajar-detail-body ul {
    margin-bottom: 15px !important;
}

.pengajar-detail-body ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 14px;
    list-style-type: none;
}

.pengajar-detail-body ul li::before {
    content: "\f147";
    font-family: dashicons;
    position: absolute;
    left: 0;
    color: #bb0d0d;
}

.klien-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #bb0d0d;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.4;
    color: #0d2a55;
    display: flex;
    align-items: center; 
    min-height: 80px;    
    height: 100%;         
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.klien-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 1fr; 
    gap: 15px;
    padding: 20px 0;
    align-items: stretch;
}

.klien-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 42, 85, 0.1);
    background-color: #fcfcfc;
    border-color: #0d2a55;
}

.page-btn {
    padding: 8px 16px;
    border: 1px solid #0d2a55;
    background: #fff;
    color: #0d2a55;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: bold;
}

.page-btn.active {
    background: #bb0d0d;
    color: #fff;
    border-color: #bb0d0d;
}

.page-btn:hover:not(.active) {
    background: #f1f1f1;
}

.klien-card.hidden {
    display: none;
}

#searchKlien {
    width: 100%;

    box-sizing: border-box; 
    
    padding: 12px 15px;
    margin-bottom: 25px;
    border: 2px solid #0d2a55; 
    border-radius: 5px;
    font-size: 16px; 
    outline: none;
    transition: border-color 0.3s ease;
}

#searchKlien:focus {
    border-color: #bb0d0d; 
    box-shadow: 0 0 8px rgba(187, 13, 13, 0.1);
}

.sjk-contact-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin: 40px 0;
}

.sjk-contact-content { flex: 1; }

.sjk-contact-content h1 {
    color: #0d2a55;
    margin-bottom: 20px;
}

.sjk-contact-card {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid #bb0d0d;
}

.sjk-contact-card h4 {
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
}

.sjk-contact-card h2 {
    color: #bb0d0d;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 800;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.info-item .dashicons {
    color: #bb0d0d;
    font-size: 24px;
    margin-top: 4px;
}

.info-item p, .info-item a {
    margin: 0;
    font-size: 15px;
    color: #333;
    text-decoration: none;
}

.whatsapp-btn {
    background: #25d366 !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    display: inline-flex !important; 
    align-items: center !important;  
    gap: 10px !important;           
    text-decoration: none !important;
    transition: 0.3s;
}

.whatsapp-btn * {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

.whatsapp-btn .dashicons {
    font-size: 22px !important;
    width: 22px !important;
    height: 22px !important;
    color: white !important;
}

.whatsapp-btn span, 
.whatsapp-btn a {
    color: white !important;
    font-weight: bold !important;
    font-size: 16px !important;
}

.whatsapp-btn:hover {
    background: #128c7e !important;
    transform: scale(1.02);
}

.slick-slide:focus, .slick-slide a:focus {
    outline: none !important;
}

/* --- FOOTER STYLING --- */
.site-footer {
    width: 100%;
}

.footer-top {
    background-color: #0d2a55;
    padding-top: 50px;
    padding-bottom: 50px;
    color: #ffffff;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 280px;
}

.footer-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #ffffff;
}

/* --- CSS UNTUK MAP GREY & BORDER --- */

.footer-map-container {
    margin-top: 15px;
    padding: 3px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,.5);
    border-radius: 4px;
    overflow: hidden;
    line-height: 0;
}

.footer-map-container iframe {
    filter: grayscale(100%);
    display: block;
    width: 100%;
    transition-property: filter;
    transition-duration: 0.3s;
}

.footer-map-container iframe:hover {
    filter: grayscale(0%);
}

.footer-address {
    font-size: 13px;
    line-height: 1.6;
    color: #ffffff;
}

.footer-address strong {
    color: #ffff00; 
}

/* Menu Footer */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-menu li a:hover,
.footer-menu li.current-menu-item a {
    color: #ffff00;
}

/* Sosmed Footer */
.footer-title-social {
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    gap: 15px; 
}

.footer-title-social::before {
    content: "";
    flex: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.footer-title-social::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}
.footer-social {
    display: flex;
    gap: 20px; 
    justify-content: center; 
    align-items: center;
    margin-top: 10px;
}

.footer-social a {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    transition-property: transform, color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
}

.footer-social a i {
    width: auto;
    margin: 0;
}

.footer-social a:hover {
    color: #ffff00;
    transform: scale(1.3);
}

.footer-bottom {
    background-color: #bb0d0d;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}

.footer-bottom p {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul {
    padding-inline-start: 10px; 
}

.footer-links li {
    margin-bottom: 8px;
    position: relative; 
    padding-left: 15px; 
    line-height: 1.5;
    list-style: none;   
}

.footer-links li::before {
    content: "-";       
    position: absolute;
    left: 0;            
    color: #ffffff;    
    font-weight: bold;
}

.footer-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    display: inline-block; 
}

.footer-links li a:hover {
    color: #ffff00 !important;
    background: transparent !important;
    background-color: transparent !important;
}


footer .menu-siswa a {
    color: #ffcc00 !important;          
    font-weight: bold;
    text-decoration: underline;
}


#backToTop {
    position: fixed !important; 
    bottom: 20px !important;
    right: 20px !important;
    width: 40px;
    height: 40px;
    background-color: #bb0d0d;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.3) 0%, rgba(0,0,0,0.1) 100%);
    color: #ffffff !important;
    border-radius: 5px;
    border: 1px solid #990a0a;
    display: none; 
    align-items: center;
    justify-content: center;
    z-index: 999999 !important; 
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

#backToTop:hover {
    transform: translateY(-5px);
    background-color: #d40e0e;
}

#backToTop .dashicons {
    font-size: 30px;
    width: 30px;
    height: 30px;
    line-height: 30px; 
    margin-left: 3px;
}


/* --- RESET & ROW --- */
.row {
    display: block;
    margin-left: -15px;
    margin-right: -15px;
}

.row::after {
    content: "";
    display: table;
    clear: both;
}

/* --- BASE COLUMN SETTING --- */
[class*="col-"] {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    float: left;
    box-sizing: border-box;
}

/* Mobile (Default 100%) */
.col-sm-12 {
    width: 100%;
}

.row-flex {
    display: flex !important;
    flex-wrap: wrap !important;
}


.flex-reverse .col-md-6:nth-child(1) {
    order: 2 !important; /* Gambar pindah ke posisi 2 */
}

.flex-reverse .col-md-6:nth-child(2) {
    order: 1 !important; /* Teks pindah ke posisi 1 */
}


@media (max-width: 1024px) {
.konsultasi-blok{
        background-size: 100% auto;
    }
.pilihan-blok{
        background-size: 200% auto;
    }

.kursus-block-privat h3 { 
        width: 150px; 
        font-size: 16px; 
    }
}


/* =============================================
   2. HEADER & NAVIGASI MOBILE (Di bawah 768px)
   ============================================= */
@media (max-width: 768px) {
    .single .site-content, 
    .single main {
        margin-bottom: 20px !important;
        padding-bottom: 20px !important;
    }
    .header-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .main-navigation .container {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        border-width: 2px;
        border-style: solid;
        border-color: #ffffff;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        cursor: pointer;
        position: relative;
        z-index: 9999;
        margin-left: 0;
        margin-right: 0;
    }

    .main-navigation .menu-wrapper {
        display: none;
    }

    .nav-logo img {
        height: 45px;
        width: auto;
        max-width: 220px;
        margin-left: auto;
        margin-right: auto;
    }

    .nav-social {
        justify-content: center;
        margin-top: 5px;
    }

    .menu-wrapper-container {
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100vh;
        background-color: #bb0d0d;
        z-index: 9998;
        transition-property: left;
        transition-duration: 0.4s;
        padding-top: 80px;
        display: block;
    }

    .menu-wrapper-container .menu-wrapper li.menu-item-has-children > a {
        position: relative;
        padding-right: 50px; 
    }

     /* 1. Kondisi Dasar Chevron */
    .menu-wrapper-container .menu-wrapper li.menu-item-has-children > a::after {
        content: "\f347"; 
        font-family: dashicons;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%) rotate(0deg); 
        font-size: 16px;
        color: #ffffff;
        transition: all 0.3s ease; 
    }

    .menu-wrapper-container .menu-wrapper li.current-menu-item > a,
    .menu-wrapper-container .menu-wrapper li.current-menu-ancestor > a {
        color: #ffff00 !important;
    }

    .menu-wrapper-container .menu-wrapper li.current-menu-item > a::after,
    .menu-wrapper-container .menu-wrapper li.current-menu-ancestor > a::after,
    .menu-wrapper-container .menu-wrapper li.menu-item-has-children:active > a::after,
    .menu-wrapper-container .menu-wrapper li.menu-item-has-children:focus-within > a::after {
        color: #ffff00 !important;
        transform: translateY(-50%) rotate(180deg) !important;
    }

    .menu-wrapper-container .menu-wrapper ul.sub-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        background-color: rgba(0, 0, 0, 0.15); 
    }

    .menu-wrapper-container .menu-wrapper ul.sub-menu li a {
        padding-left: 50px !important; 
        font-size: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .menu-wrapper-container.is-open {
        left: 0;
    }

    .menu-wrapper-container .menu-wrapper {
        display: flex;
        flex-direction: column;
    }

    .menu-wrapper-container .menu-wrapper li a {
        padding-left: 30px;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        border-bottom-color: rgba(255, 255, 255, 0.1);
        text-align: left;
    }

    #mobile-menu-overlay.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 9997;
    }

    .main-slide-item {
        height: 300px !important; 
    }
    
    .caption-inner h3 {
        font-size: 20px !important; 
        line-height: 1.2;
        max-width: 450px;
    }

    .caption-inner small {
        font-size: 16px !important;
    }

    .page-hero {
        height: 250px; 
    }

    .hero-title {
        border-bottom-width: 3px;
        line-height: 1.2;
    }

    .middle-blok-1{
        padding-bottom: 0;
    }
    .kelas-reguler, .kelas-intensif, .kelas-privat, .persiapan-magang-tg, .kelas-studijepang, .in-house-training, .kelas-free-trial {
        min-height: 350px !important;
        flex: 0 0 50%;
    }

    .kursus-blok {
        min-height: auto !important;
        flex: 0 0 50%;
        background-size: 50% auto;
        padding-top: 5px;
    }

    .sjk-title-wrapper {
        margin: 50px 0 30px 0; 
        padding: 0 15px; 
    }

    .sjk-title-wrapper::before,
    .sjk-title-wrapper::after {        
        max-width: 60px; 
        min-width: 20px; 
        height: 1.5px; /
    }

    .sjk-title-wrapper h2, 
    .sjk-title-wrapper h1 {
        font-size: 20px; 
        padding: 0 10px;
    }

    .sjk-page-content {
        font-size: 15px;
        text-align: left; 
    }
    .sjk-page-intro {
        font-size: 16px;
    }
    .sjk-intro-program {
        padding: 20px 25px;
        font-size: 15px;
        border-left-width: 4px; 
    }
    .sjk-intro-program p:first-child {
        font-size: 17px;
    }

    .pilihan-title, .testimoni-title, .klien-title {
        padding: 10px 20px !important; 
        margin: 0 10px !important;
    }

    .pilihan-title h4, .testimoni-title h4, .klien-title h4, .page-title h4 {
        font-size: 14px !important; 
        letter-spacing: 0; 
        white-space: normal; 
    }

    .konsultasi-blok {
        background-position: center center;
        min-height: 200px;
    }

    .pilihan-blok{
        background-size: 250% auto;
    }

    .img-holder {
        width: 100%;
        padding: 0 5px; 
        border-radius: 4px; 
    }

    .keuntungan-program li, .list-langkah li, .list-unggulan li {
        padding-left: 40px; 
        font-size: 14px;
        line-height: 1.6;
    }
    
    .keuntungan-program li::before, .list-langkah li::before, .list-unggulan li::before {
        font-size: 18px; 
        left: 12px;
    }

    .pendaftaran-area h4 { 
        font-size: 22px; 
    }

    .btn-shinjuku-glossy {
        width: auto;            
        max-width: 90%;
        justify-content: center;
        font-size: 16px; 
    }

    .kursus-block-privat {
        flex-direction: column; 
    }
    .kursus-block-privat h3 {
        width: 100%;
        padding: 15px;
    }
    .kursus-desc-privat {
        flex-direction: column;
    }
    .kursus-desc-privat > div {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 15px 0 !important;
    }
    .kursus-modal {
        border-left: none;
        border-top: 1px solid #f0f0f0;
    }

   .table-responsive {
        overflow-x: hidden !important;
    }

    table.kelas-online, 
    .kelas-online thead, 
    .kelas-online tbody, 
    .kelas-online th, 
    .kelas-online td, 
    .kelas-online tr { 
        display: block !important; 
        width: 100% !important;
    }
    table.kelas-online{
         border: none !important;
    }

    .kelas-online thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .kelas-online tr {
        margin-bottom: 20px;
        border: 1px solid #eee;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .kelas-online td:first-child {
        background-color: #bb0d0d !important;
        color: #ffffff !important;
        text-align: center !important;
        font-weight: bold !important;
        text-transform: uppercase;
        font-size: 14px !important;
        padding: 10px !important;
    }

    .kelas-online td:nth-child(2),
    .kelas-online td:nth-child(3) {
        display: inline-block !important;
        float: left;
        background: #fff;
        padding: 15px 0px !important;
        border-bottom: none !important;
        font-size: 12px !important;
        text-align: center;
    }

    .kelas-online td:nth-child(2)::before {
        content: "MAGANG";
        display: block;
        font-weight: bold;
        color: #888;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .kelas-online td:nth-child(3)::before {
        content: "SSW";
        display: block;
        font-weight: bold;
        color: #bb0d0d;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .kelas-online td:nth-child(3) {
        background-color: #fffde7 !important;
        border-left: 1px solid #eee !important;
    }

    .kelas-online tr::after {
        content: "";
        display: table;
        clear: both;
    }

    .pelatihan-online { 
        padding: 20px; 
    }

    .pelatihan-online h4 { 
        font-size: 1.1rem; 
    }

    .pelatihan-online td { 
        display: block; 
        width: 100% !important; 
        padding: 10px 0; 
    }

    .pelatihan-online td:first-child { 
        border-bottom: none; 
        padding-bottom: 0; 
    }

    .pelatihan-ssw-mensetsu td { 
        display: block;
         width: 100% !important; 
     }
    .pelatihan-ssw-mensetsu td:first-child { 
        border-bottom: none; 
        padding-bottom: 0; 
    }

    .event-card-info-block {
        flex: 1 1 100% !important;
    }

    .sjk-contact-wrapper {
        flex-direction: column;
    }
    .sjk-contact-card {
        width: 100%;
        box-sizing: border-box;

    .footer-grid {
        flex-direction: column;
    }

    .footer-social {
        align-items: center;
    }
     #backToTop {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

/* =============================================
   1. ATURAN UMUM MOBILE (Di bawah 767px)
   ============================================= */
@media (max-width: 767px) {
    h1 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    h2 {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    h3 {
        font-size: 22px;
        line-height: 1.3;
    }

    h4 {
        font-size: 20px;
        line-height: 1.3;
    }

    h5 {
        font-size: 17px;
        line-height: 1.3;
    }

    h6 {
        font-size: 15px;
        line-height: 1.3;
    }

    .menu-siswa {
        display: block !important;
        text-align: center !important; 
        width: 100% !important;
        margin: 10px 0 !important;
    }

    .site-header .menu-siswa a, 
    .main-navigation .menu-siswa a {
        display: inline-block !important; 
        float: none !important;           
        margin: 0 auto !important;
        padding: 10px 25px !important;   
        font-size: 1rem !important;
    }

    .home-main-slider .main-slide-item { 
        height: 400px !important;
        min-height: 400px !important;
    }
   
    [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }
    .row-flex {
        display: block !important;
    }
    .upper-blok h1{
        width: auto;
    }
    .all-kursus{
        display: none;
    }
    .kelas-reguler, .kelas-intensif, .kelas-privat, .persiapan-magang-tg, .kelas-studijepang, .in-house-training, .kelas-free-trial {
        min-height: 200px !important;
        flex: 0 0 50%;
    }
    .kursus-blok {
        min-height: auto !important;
        flex: 0 0 50%;
        background-size: 70% auto;
        padding-top: 5px;
    }

    .kursus-blok h5{
        margin-block-start: 0;
    }

    .btn-home-text{
        float: none;
    }

    .btn-home-text p{
        padding-right: 0;
    }

    .btn-home-text p span{
        display: block;
        margin-top: 15px;
    }
    .konsultasi-blok {
        background-position: center center;
        min-height: 150px;
        background-size: 250% auto;
        padding-top: 15px;
        padding-bottom: 20px; 
    }

    .konsultasi-blok h1 {
        font-size: 22px !important;
    }

    .pilihan-blok{
        background-size: 250% auto;
        background-repeat: repeat; 
    }

    .pilihan-title{
        margin-bottom: 50px;
    }

    .pilihan-img {
        flex: 0 0 50%;
        min-height: 80px !important;
    }

    .pilihan-teks {
        padding: 0;
        flex: 0 0 50%;
        min-height: 150px !important;
        margin-bottom: 100px;
    }
    .testi-content {
        min-height: 200px; 
    }
    .kursus-block-privat h3 { 
        padding: 25px 0 !important;
    }
    .kursus-desc-privat {
        padding-bottom: 0;
    }
    .hasil-privat-holder {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .materi-ssw-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .site-header .menu-siswa {
        display: block !important;
        text-align: center !important; 
        width: 100% !important;
        margin: 10px 0 !important;
    }

    .site-header .menu-siswa a {
        display: inline-block !important; 
        float: none !important;
        margin: 0 auto !important;
    }

    /* Khusus Footer: Kita kembalikan ke setelan normal (biasanya rata kiri di HP) */
    footer .menu-siswa {
        text-align: left !important; /* Atau ubah ke 'left' sesuai keinginan */
        display: list-item !important; /* Mengikuti gaya list menu footer pada umumnya */
        width: auto !important;
        margin: 5px 0 !important;
    }

    footer .menu-siswa a {
        display: inline !important;
        padding: 0 !important; /* Menghilangkan bentuk tombol di footer agar rapi */
        background: none !important;
        color: #ffcc00 !important; /* Tetap pakai warna kontras footer */
        box-shadow: none !important;
    }
}


@media screen and (max-width: 600px) {
    .pelatihan table td {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    .pelatihan table td:first-child {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        background: #fffafa;
    }
    .pelatihan table td:last-child {
        padding-top: 5px;
        padding-bottom: 15px;
    }
    .pendaftaran-area h4 { 
        font-size: 16px; 
    }
      .btn-shinjuku-glossy {
        font-size: 12px; 
        padding: 7px 15px;
        text-align: left;
    }
    .sjk-metode-item {
        flex-direction: column;
        padding: 20px;
    }
    .sjk-metode-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .event-card-holder {
        grid-template-columns: 1fr; 
    }
    .pengajar-header {
        flex-direction: column; 
        align-items: center;    
        text-align: center;
    }
    
    .slide-pengajar-item {
        padding: 20px; 
        margin: 10px;
    }

    .sjk-slider-container {
        padding: 0px;
    }
    .sjk-slider-container .slick-prev, 
    .sjk-slider-container .slick-next {
        display: none !important;
    }

    .sjk-slider-container .slick-dots li {
        margin: 0 4px; 
    }

    .img-pengajar-slider {
        margin-bottom: 15px; 
    }

    .pengajar-detail-body {
        max-height: 300px; 
        overflow-y: auto;  
        padding-right: 5px;
    }
    
    .pengajar-detail-body ul li {
        font-size: 13px; 
    }

    .klien-grid {
        grid-template-columns: 1fr; 
    }
    .klien-card {
        font-size: 13px;
        padding: 12px 15px;
    }
    #searchKlien {
        padding: 10px;
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    .sjk-title-wrapper::before,
    .sjk-title-wrapper::after {
        max-width: 20px; 
    }
    
    .testimoni-title h4, .klien-title h4 {
        font-size: 14px !important;
    }
    .pilihan-title h4 {
        max-width: 250px; 
        font-size: 14px !important;
    }

    .page-title{
        padding: 10px 5px !important; 
       margin: 0px 10px !important;
    }
    .page-title h4 {
        max-width: 180px; 
        font-size: 14px !important;
    }
}

@media (min-width: 576px) and (max-width: 991px) and (orientation: landscape) {
    .kursus-blok {
        min-height: auto !important;
        flex: 0 0 50%;
        background-size: 30% auto;
        padding-top: 5px;
    }

    .btn-home-text{
        float: right;
    }

    .btn-home-text p{
        padding-right: 5;
    }

    .btn-home-text p span{
        display: inline-block;
    }
    .konsultasi-blok{
        background-size: 150% auto;
    }
    .pilihan-blok{
        background-size: 150% auto;
        background-repeat: repeat;
    }
}

/* --- STYLING BOX PERSYARATAN --- */
@media screen and (min-width: 769px) {
    .syarat-wrapper {
        display: flex;
        gap: 20px;
        align-items: stretch;
        margin-top: 20px;
    }
    .syarat-umum, .syarat-ssw {
        flex: 1;
    }
}

/* =============================================
   3. RESPONSIVE GRID (Mobile/Tablet 576px+)
   ============================================= */
@media (min-width: 576px) {
    .col-sm-1 { width: 8.33333333%; }
    .col-sm-2 { width: 16.66666667%; }
    .col-sm-3 { width: 25%; }
    .col-sm-4 { width: 33.33333333%; }
    .col-sm-5 { width: 41.66666667%; }
    .col-sm-6 { width: 50%; }
    .col-sm-7 { width: 58.33333333%; }
    .col-sm-8 { width: 66.66666667%; }
    .col-sm-9 { width: 75%; }
    .col-sm-10 { width: 83.33333333%; }
    .col-sm-11 { width: 91.66666667%; }
    .col-sm-12 { width: 100%; }
}

/* =============================================
   4. RESPONSIVE GRID (Tablet/Desktop 768px+)
   ============================================= */
@media (min-width: 768px) {
    .col-md-1 { width: 8.33333333%; }
    .col-md-2 { width: 16.66666667%; }
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.33333333%; }
    .col-md-5 { width: 41.66666667%; }
    .col-md-6 { width: 50%; }
    .col-md-7 { width: 58.33333333%; }
    .col-md-8 { width: 66.66666667%; }
    .col-md-9 { width: 75%; }
    .col-md-10 { width: 83.33333333%; }
    .col-md-11 { width: 91.66666667%; }
    .col-md-12 { width: 100%; }
}

/* =============================================
   5. RESET ORDER UNTUK MOBILE (Di bawah 991px)
   ============================================= */
@media (max-width: 991px) {
    .row-flex {
        display: block;
    }

    .col-md-6 {
        width: 100%;
        order: 0;
    }
}

/* =============================================
   6. GRID DESKTOP & SELANG-SELING (992px+)
   ============================================= */
@media (min-width: 992px) {
    /* Lebar Kolom Large */
    .col-lg-1 { width: 8.33333333%; }
    .col-lg-2 { width: 16.66666667%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.33333333%; }
    .col-lg-5 { width: 41.66666667%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.33333333%; }
    .col-lg-8 { width: 66.66666667%; }
    .col-lg-9 { width: 75%; }
    .col-lg-10 { width: 83.33333333%; }
    .col-lg-11 { width: 91.66666667%; }
    .col-lg-12 { width: 100%; }

    .flex-reverse .col-md-6:nth-child(1) {
        order: 2 ;
    }
    
    .flex-reverse .col-md-6:nth-child(2) {
        order: 1;
    }

}