/********** Template CSS V3 (FIXED) **********/

:root {
    --primary: #DC3545;
    --secondary: #F8F9FA;
    --light: #FFFFFF;
    --dark: #212529;
    --font-primary: "Open Sans", sans-serif;
    --font-heading: "Libre Baskerville", serif;
}

body {
    font-family: var(--font-primary);
    color: #777;
    /* PENTING: Menambahkan padding atas agar konten tidak tertutup navbar baru */
    padding-top: 85px; 
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    color: #212529;
    font-family: var(--font-heading);
}

/*** Generic Styles ***/
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.fw-bold { font-weight: 700 !important; }

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    transition: all 0.3s ease;
    font-weight: 600;
}
.btn-square { width: 38px; height: 38px; padding: 0; display: flex; align-items: center; justify-content: center; font-weight: normal; }
.btn-sm-square { width: 32px; height: 32px; padding: 0; display: flex; align-items: center; justify-content: center; font-weight: normal; }
.btn-lg-square { width: 48px; height: 48px; padding: 0; display: flex; align-items: center; justify-content: center; font-weight: normal; }


/*** Innovated Navbar (BARU) ***/
.navbar-innovated {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1030;
    /* --- MODIFIKASI: Default HITAM PADAT, JANGAN LAGI TRANSPARAN --- */
    background-color: var(--dark); /* Gunakan warna solid #212529 */
    padding: 1rem 0;
    transition: background-color 0.4s ease-in-out, padding 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4); /* Beri shadow yang kuat dari awal */
}

.navbar-innovated.scrolled {
    /* MODIFIKASI: Mengatur efek semi-transparan hanya saat discroll */
    background-color: rgba(15, 15, 15, 0.95); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

.navbar-innovated .navbar-brand img {
    height: 45px;
    transition: height 0.4s ease;
}

.navbar-innovated.scrolled .navbar-brand img {
    height: 40px;
}

.navbar-innovated .navbar-brand h4 {
    color: var(--light); /* Teks logo harus PUTIH dari awal */
    font-weight: 700;
}

.navbar-innovated .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8); /* Link harus PUTIH/LIGHT dari awal */
    font-weight: 600;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    position: relative;
}

.navbar-innovated .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.navbar-innovated .navbar-nav .nav-link:hover,
.navbar-innovated .navbar-nav .nav-link.active {
    color: var(--light);
}

.navbar-innovated .navbar-nav .nav-link:hover::after,
.navbar-innovated .navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-innovated .dropdown-menu {
    background-color: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
}

.navbar-innovated .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
}

.navbar-innovated .dropdown-item:hover {
    background-color: var(--primary);
    color: var(--light);
}

.navbar-innovated .navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}

.navbar-innovated .navbar-toggler-icon {
    /* Icon toggler default PUTIH */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*** Innovated Hero Section (BARU) ***/
.hero-header-innovated {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding: 8rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/renew1.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--light);
}

.hero-header-innovated h1 {
    color: var(--light);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-header-innovated p.lead {
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 1.5rem auto 2.5rem auto;
    font-size: 1.25rem;
    font-weight: 400;
}

.btn-hero-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--light);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 50px;
}

.btn-hero-primary:hover {
    background-color: #a71d2a;
    border-color: #a71d2a;
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-hero-secondary {
    background-color: transparent;
    border: 2px solid var(--light);
    color: var(--light);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 50px;
}

.btn-hero-secondary:hover {
    background-color: var(--light);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


/*********************************/
/********** GAYA LAMA YANG DIPERTAHANKAN ***********/
/*********************************/

.homepage-section {
    position: relative;
    z-index: 1;
}

.page-header {
    background: url(../img/banner.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}

/*** About Section ***/
.new-about-section {
    position: relative;
    background-image: url('../img/renew12.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 80px 0;
}
.new-about-section p { text-align: justify !important; }
.chibi-main-v2 { position: absolute; bottom: 0; left: 5%; width: 450px; z-index: 10; }
.read-more-btn-v2 { background-color: var(--primary); color: var(--light); border: none; border-radius: 5px; padding: 12px 15px 12px 25px; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s ease; }
.read-more-btn-v2 i { background-color: var(--light); color: var(--primary); width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: bold; }
.read-more-btn-v2:hover { background-color: #a71d2a; color: var(--light); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.2); }

/*** Video Section ***/
.video-section { width: 100%; line-height: 0; }
.fullscreen-video { width: 100%; height: auto; }

/*** Features Section ***/
.features-section { position: relative; background-color: #212529; background-image: url('https://www.transparenttextures.com/patterns/dark-denim-3.png'); color: var(--light); }
.features-section .section-title { background-color: transparent !important; color: var(--primary) !important; border: 1px solid var(--primary); padding: 2px 10px; border-radius: 5px; display: inline-block; }
.benefits-list { margin-top: 1.5rem; }
.benefit-item { display: flex; align-items: center; margin-bottom: 1rem; background: rgba(255, 255, 255, 0.05); padding: 10px 15px; border-radius: 8px; transition: background 0.3s; }
.benefit-item:hover { background: rgba(255, 255, 255, 0.1); }
.benefit-item i { font-size: 1.5rem; color: var(--primary); margin-right: 15px; width: 30px; text-align: center; }
.benefit-item p { margin: 0; color: var(--secondary); font-size: 1rem; }
.features-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; border-radius: 8px; overflow: hidden; }
.stat-item { padding: 2.5rem 1.5rem; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; }
.stat-item:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }
.stat-item.bg-dark { background: linear-gradient(145deg, #a71d2a, #8f1824); }
.stat-item.bg-secondary { background: linear-gradient(145deg, #e03646, #c42938); }
.stat-item h1 { font-size: 3.5rem; font-weight: 800; color: var(--light); text-shadow: 2px 2px 8px rgba(0,0,0,0.4); }
.stat-item span { font-size: 1.1rem; font-weight: 600; color: var(--light); }

/*** Banner Section ***/
.banner { background-attachment: fixed; }
.banner-card { background: rgba(0, 0, 0, 0.45); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 15px; border: 1px solid rgba(255, 255, 255, 0.15); overflow: hidden; transition: all 0.3s ease; box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); }
.banner-card:hover { transform: translateY(-10px); box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5); border-color: rgba(255, 255, 255, 0.25); }
.banner-card .card-img { width: 100%; height: 200px; object-fit: cover; opacity: 0.9; }
.banner-card .card-content { padding: 1.5rem 2rem; }
.banner-card h2 { color: var(--light) !important; text-shadow: 1px 1px 3px rgba(0,0,0,0.7); }
.banner-card p { color: var(--secondary) !important; }

/*** Service Section ***/
.service-section { background-color: #212529; background-image: url('https://www.transparenttextures.com/patterns/dark-denim-3.png'); }
.section-title-light { display: inline-block; text-transform: uppercase; font-weight: 600; color: var(--primary); background-color: rgba(220, 53, 69, 0.1); padding: 5px 15px; border-radius: 50px; }
.training-card { background: var(--light); border-radius: 15px; overflow: hidden; border: 1px solid #dee2e6; box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: all 0.3s ease-in-out; height: 100%; }
.training-card:hover { transform: translateY(-10px); box-shadow: 0 15px 25px rgba(0,0,0,0.1); border-color: var(--primary); }
.card-image-wrapper { overflow: hidden; height: 220px; }
.card-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.training-card:hover .card-image-wrapper img { transform: scale(1.1); }
.card-content { padding: 1.5rem; }
.card-content h3 { font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.card-content p { color: #6c757d; min-height: 100px; }
.card-link { font-weight: 600; color: var(--primary); text-decoration: none; transition: letter-spacing 0.3s; }
.card-link:hover { letter-spacing: 1px; }
.card-link i { margin-left: 5px; }

/*** Gallery Section ***/
.gallery-section { background-color: #212529; background-image: url('https://www.transparenttextures.com/patterns/dark-denim-3.png'); }
.gallery-item { position: relative; overflow: hidden; border-radius: 15px; box-shadow: 0 10px 20px rgba(0,0,0,0.2); aspect-ratio: 4 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(220, 53, 69, 0.8); display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; transition: all 0.4s ease; color: var(--light); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2.5rem; margin-bottom: 0.5rem; }
.gallery-overlay h4 { font-size: 1.2rem; color: var(--light); font-weight: 600; }

/*** Team Section ***/
.team-section { background-color: #212529; background-image: url('https://www.transparenttextures.com/patterns/dark-denim-3.png'); }
.founder-img img { border-radius: 15px; border: 5px solid rgba(255,255,255,0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.founder-content h2, .founder-content p { color: var(--light); }
.founder-content .signature { width: 200px; filter: brightness(0) invert(1); }

/*** Testimonial Section ***/
.testimonial-section-static { background-color: #212529; background-image: url('https://www.transparenttextures.com/patterns/dark-denim-3.png'); position: relative; overflow: hidden; padding: 4rem 0; }
.card-static-testimonial { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 15px; height: 100%; display: flex; flex-direction: column; transition: all 0.3s ease; }
.card-static-testimonial:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.card-static-header { display: flex; align-items: center; padding: 1.5rem 1.5rem 1rem 1.5rem; }
.card-static-header .avatar { width: 60px; height: 60px; border-radius: 50%; border: 3px solid var(--primary); margin-right: 15px; }
.author-info-static .author-name { color: var(--light); font-weight: 600; margin: 0; }
.author-info-static .author-title { color: #adb5bd; font-size: 0.9rem; margin: 0; }
.card-static-body { padding: 0 1.5rem 1.5rem 1.5rem; }
.card-static-body .testimonial-text { font-style: italic; color: #e9ecef; font-size: 1rem; line-height: 1.6; margin: 0; }

/*** Partner & CTA Section ***/
.partner-section-innovated { background-color: #212529; background-image: url('https://www.transparenttextures.com/patterns/dark-denim-3.png'); padding-bottom: 5rem; position: relative; overflow: hidden; }
.logo-scroller { max-width: 1200px; margin: auto; overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent); mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent); }
.logo-scroller-inner { display: flex; gap: 4rem; width: max-content; animation: scroll 25s linear infinite; }
.logo-scroller:hover .logo-scroller-inner { animation-play-state: paused; }
.logo-scroller-inner img { height: 100px; width: auto; filter: grayscale(100%) brightness(5); opacity: 0.6; transition: all 0.3s ease; }
.logo-scroller-inner img:hover { filter: none; opacity: 1; transform: scale(1.1); }
@keyframes scroll { to { transform: translate(calc(-50% - 2rem)); } }
.cta-section-innovated { position: relative; padding: 5rem 0; background-color: #212529; background-image: radial-gradient(circle at top right, rgba(220, 53, 69, 0.3), transparent 40%), radial-gradient(circle at bottom left, rgba(220, 53, 69, 0.3), transparent 40%); overflow: hidden; }
.btn-cta-innovated { padding: 15px 40px; font-size: 1.1rem; font-weight: 600; color: var(--light); background-color: var(--primary); border: 2px solid var(--primary); border-radius: 50px; transition: all 0.3s ease; box-shadow: 0 10px 20px rgba(220, 53, 69, 0.2); }
.btn-cta-innovated:hover { background-color: #a71d2a; border-color: #a71d2a; color: var(--light); transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 30px rgba(220, 53, 69, 0.4); }

/*** Footer Section ***/
.footer-innovated { background-color: #212529; background-image: url('https://www.transparenttextures.com/patterns/dark-denim-3.png'); color: #adb5bd; padding-top: 4rem; }
.footer-brand img { height: 50px; margin-right: 15px; }
.footer-innovated h5 { font-weight: 600; position: relative; padding-bottom: 15px; color: var(--light); }
.footer-innovated h5::after { content: ''; position: absolute; left: 0; bottom: 0; width: 50px; height: 2px; background-color: var(--primary); }
.footer-innovated .btn.btn-link { display: block; margin-bottom: 10px; padding: 0; text-align: left; color: #adb5bd; font-weight: normal; text-transform: capitalize; transition: .3s; }
.footer-innovated .btn.btn-link:hover { color: var(--light); letter-spacing: 1px; }
.footer-innovated .btn.btn-link::before { position: relative; content: "\f105"; font-family: "Font Awesome 5 Free"; font-weight: 900; margin-right: 10px; }
.footer-innovated .d-flex i { color: var(--primary); font-size: 1.1rem; }
.map-responsive { overflow: hidden; position: relative; height: 400px; }
.map-responsive iframe { left: 0; top: 0; height: 100%; width: 100%; position: absolute; filter: grayscale(100%) invert(90%) contrast(90%); }
.footer-bottom { padding: 25px 0; background-color: #000; }
.footer-bottom a { color: var(--light); }
.footer-bottom a:hover { color: var(--primary); }
.footer-social-icons a { display: inline-flex; justify-content: center; align-items: center; width: 40px; height: 40px; border: 1px solid #adb5bd; border-radius: 50%; margin-left: 10px; transition: .3s; }
.footer-social-icons a:hover { background-color: var(--primary); border-color: var(--primary); color: var(--light); }
}

/* ========================================= */
/* ===== 7. ALUR KERJA SAMA INNOVATED V3 (FINAL CLEANUP) ===== */
/* ========================================= */

.step-list-innovated {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-list-innovated .step-item {
    position: relative;
    background-color: #2e2e2e; /* Warna card langkah yang lebih gelap */
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Border tipis untuk detail */
    
    /* Efek Inovatif: Glow dan Transform */
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateX(0deg);
    
    /* Hapus Padding Kiri Ekstra yang digunakan untuk penomoran lama */
    padding-left: 2.5rem; 
}

.step-list-innovated .step-item:hover {
    transform: perspective(1000px) rotateX(1deg) translateY(-8px);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.3);
    border-color: var(--primary); /* Border menjadi Merah saat hover */
}

/* Penomoran Otomatis CSS Dihapus (Kini menggunakan Icon di HTML) */
.step-list-innovated .step-item::before {
    content: none !important;
}

/* Gaya Icon Baru yang Terintegrasi di Dalam Card */
.step-list-innovated .step-icon {
    position: absolute;
    top: 2.5rem; /* Sejajar dengan padding atas */
    left: 2.5rem;
    
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary); /* Latar Merah */
    color: #ffffff;
    font-size: 1.2rem;
    
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #2e2e2e; /* Border gelap agar menonjol dari card */
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.6); /* Glow Merah halus */
    z-index: 10;
}

.step-list-innovated .step-number-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary); 
    margin-bottom: 0.25rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* Sesuaikan posisi teks agar mengalir setelah ikon */
    margin-left: 55px; 
}

.step-list-innovated .step-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    
    /* Sesuaikan posisi judul agar mengalir setelah ikon */
    margin-left: 55px;
}

.step-list-innovated .step-description {
    color: #cccccc;
    margin-bottom: 0;
    padding-left: 25px; /* Indentasi agar teks deskripsi sejajar */
    border-left: 2px solid rgba(220, 53, 69, 0.4); 
}

.image-container-full {
    margin-bottom: 4rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 5px solid rgba(220, 53, 69, 0.5); 
}

/* Styling untuk Komitmen Section di bawah list */
.commitment-innovated {
    background: linear-gradient(135deg, #181818 0%, #212529 60%);
    border: 1px solid rgba(220, 53, 69, 0.3);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 5rem;
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.2);
    text-align: center;
}
.commitment-innovated h2 {
    color: var(--primary);
    font-size: 2.5rem;
}
.commitment-icon {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}