/* ===================================================================
   Table of Contents
   1. Global Variables & Base Styles
   2. Hero Section
   3. Main Content Layout (Sidebar + Sections)
   4. Why Section
   5. Sukses Section
   6. Info Section
   7. Benefit Section
   8. Fasilitas Section
   9. Kurikulum Section
   10. Pemateri Section
   11. Program Section
   12. FAQ Section
   13. Dark Mode & Responsive
=================================================================== */

/* ===================================================================
   1. Global Variables & Base Styles
=================================================================== */
:root {
    --bootcamp-primary: #0056b3; /* Biru Tua */
    --bootcamp-secondary: #007bff; /* Biru Cerah */
    --bootcamp-accent: #ffc107; /* Kuning Aksen */
    --bootcamp-dark: #212529;
    --bootcamp-light: #f8f9fa;
    --bootcamp-white: #ffffff;
    --bootcamp-purple: #775ba3;;
    --bootcamp-font-sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

#page-bootcamp {
    font-family: var(--bootcamp-font-sans);
    background-color: var(--bootcamp-light);
    color: var(--bootcamp-dark);
}

.container-bootcamp {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn-bootcamp {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary-bootcamp {
    background-color: var(--bootcamp-accent);
    color: var(--bootcamp-dark);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.btn-primary-bootcamp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
}

.btn-secondary-bootcamp {
    background-color: transparent;
    color: var(--bootcamp-white);
    border-color: var(--bootcamp-white);
}

.btn-secondary-bootcamp:hover {
    background-color: var(--bootcamp-white);
    color: var(--bootcamp-primary);
}

/* ===================================================================
   2. Hero Section
=================================================================== */
.hero-section-bootcamp {
    background: linear-gradient(135deg, #775ba3, #c75d9d, #775ba3);
    color: var(--bootcamp-white);
    padding: 80px 0;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-section-bootcamp .container-bootcamp {
    display: flex;
    flex-direction: column;
}

.hero-grid-bootcamp {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    flex-grow: 1;
}

.hero-content-bootcamp {
    flex: 1.2;
    text-align: left;
    z-index: 2;
}

.hero-content-bootcamp h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-highlight-text-bootcamp {
    display: block;
    background: linear-gradient(90deg, var(--bootcamp-accent), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow-animation-bootcamp 3s ease-in-out infinite;
}

@keyframes glow-animation-bootcamp {
    0%, 100% { text-shadow: 0 0 5px #ffd700, 0 0 10px #ffd700; }
    50% { text-shadow: 0 0 15px #fff, 0 0 25px #ffd700; }
}

.hero-subtitle-bootcamp {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-cta-buttons-bootcamp {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image-wrapper-bootcamp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image-bootcamp {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.hero-bottom-info-bootcamp {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
    padding: 30px 0 10px 0;
    background: none;
    backdrop-filter: none;
    border: none;
    flex-wrap: wrap;
}

.hero-info-item-bootcamp {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: var(--bootcamp-white);
    opacity: 0.9;
}

.hero-info-item-bootcamp img {
    height: 40px;
    width: auto;
}

.hero-avatars-bootcamp {
    display: flex;
}

.hero-avatars-bootcamp img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 2px solid var(--bootcamp-white);
    margin-left: -15px;
}

.hero-avatars-bootcamp img:first-child {
    margin-left: 0;
}


/* ===================================================================
   3. Main Content Layout (Sidebar + Sections)
=================================================================== */
.main-container-bootcamp {
    display: flex;
    width: 90%;
    margin: 60px auto;
    gap: 40px;
    max-width: 1200px;
}

.sidebar-bootcamp {
    flex: 0 0 250px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
    height: calc(100vh - 140px);
    overflow-y: auto;
}

.side-nav-bootcamp ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-nav-bootcamp a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--bootcamp-dark);
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.side-nav-bootcamp a.active,
.side-nav-bootcamp a:hover {
    background-color: var(--bootcamp-purple);
    color: var(--bootcamp-white);
}

.content-bootcamp {
    flex: 1;
    min-width: 0;
}

.section-bootcamp {
    padding: 60px 0;
    border-bottom: 1px solid #ddd;
}
.section-bootcamp:last-child {
    border-bottom: none;
}

.section-bootcamp .container-bootcamp {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

/* ===================================================================
   4. Why Section
=================================================================== */
.why-heading-bootcamp {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--bootcamp-dark);
}

.why-carousel-wrapper-bootcamp {
    position: relative;
}

.why-carousel-container-bootcamp {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 5px 20px 5px;
    cursor: grab;
}
.why-carousel-container-bootcamp:active {
    cursor: grabbing;
}

.why-carousel-container-bootcamp::-webkit-scrollbar {
    display: none;
}

.why-card-bootcamp {
    flex: 0 0 calc(33.333% - 14px); 
    min-width: 280px; 
    aspect-ratio: 4 / 3.2;
    position: relative;
    border-radius: 5px 20px 5px 20px; 
    overflow: hidden;
    color: var(--bootcamp-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card-bootcamp:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.why-card-bg-bootcamp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.why-card-content-bootcamp {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(119, 91, 163, 0.95), transparent 70%);
}

.why-card-title-bootcamp {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bootcamp-light);
    margin: 0 0 10px 0;
}
html.dark-mode .why-card-title-bootcamp {
    color: var(--bootcamp-white);
}
.why-card-subtitle-bootcamp {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    color: var(--bootcamp-white);
}

.why-carousel-nav-bootcamp {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bootcamp-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, color 0.3s;
}

.why-carousel-nav-bootcamp:hover {
    background-color: var(--bootcamp-primary);
    color: var(--bootcamp-white);
}

.why-carousel-nav-bootcamp.prev {
    left: -22.5px;
}

.why-carousel-nav-bootcamp.next {
    right: -22.5px;
}

.why-progress-bar-container-bootcamp {
    width: 25%;
    max-width: 300px;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    margin: 30px auto 0 auto;
    overflow: hidden;
}

.why-progress-bar-bootcamp {
    height: 100%;
    background-color: var(--bootcamp-accent);
    border-radius: 3px;
    width: 0;
    transition: width 0.3s ease;
}

/* ===================================================================
   5. Sukses Section (Testimoni)
=================================================================== */

.sukses-heading-bootcamp,
.sukses-subheading-bootcamp {
    text-align: center;
    color: var(--bootcamp-dark);
}

.sukses-heading-bootcamp {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.sukses-subheading-bootcamp {
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 400;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.sukses-carousel-wrapper-bootcamp {
    position: relative;
}

.sukses-carousel-container-bootcamp {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 5px;
    cursor: grab;
}
.sukses-carousel-container-bootcamp:active {
    cursor: grabbing;
}


.sukses-carousel-container-bootcamp::-webkit-scrollbar {
    display: none;
}

.sukses-card-bootcamp {
    flex: 0 0 calc(33.333% - 17px);
    min-width: 320px;
    background-color: var(--bootcamp-white);
    border-radius: 5px 20px 5px 20px;
    box-shadow: 0 8px 30px rgba(0, 86, 179, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sukses-card-upskill-badge-bootcamp {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    color: var(--bootcamp-dark);
    padding: 8px 15px 8px 30px;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    border-bottom-left-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 3;
    transform: translateY(-0px);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.sukses-card-header-bootcamp {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #e9f2ff;
    padding: 20px;
}

.sukses-card-avatar-bootcamp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bootcamp-white);
}

.sukses-card-info-bootcamp {
    display: flex;
    flex-direction: column;
}

.sukses-card-nama-bootcamp {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--bootcamp-dark);
}

.sukses-card-jabatan-bootcamp {
    font-size: 0.85rem;
    color: var(--bootcamp-dark);
    opacity: 0.7;
    margin-bottom: 5px;
}

.sukses-card-program-bootcamp {
    font-size: 0.8rem;
    background-color: #d1e2ff;
    color: var(--bootcamp-primary);
    padding: 4px 8px;
    border-radius: 5px;
    display: inline-block;
    width: fit-content;
}

.sukses-card-body-bootcamp {
    padding: 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--bootcamp-dark);
    opacity: 0.9;
    flex-grow: 1;
}

.sukses-carousel-nav-bootcamp {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bootcamp-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, color 0.3s;
}

.sukses-carousel-nav-bootcamp:hover {
    background-color: var(--bootcamp-primary);
    color: var(--bootcamp-white);
}

.sukses-carousel-nav-bootcamp.prev {
    left: -22.5px;
}

.sukses-carousel-nav-bootcamp.next {
    right: -22.5px;
}

.sukses-progress-bar-container-bootcamp {
    width: 25%;
    max-width: 300px;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    margin: 30px auto 0 auto;
    overflow: hidden;
}

.sukses-progress-bar-bootcamp {
    height: 100%;
    background-color: var(--bootcamp-accent);
    border-radius: 3px;
    width: 0;
    transition: width 0.3s ease;
}

.sukses-loading-bootcamp {
    text-align: center;
    width: 100%;
    padding: 40px;
    color: var(--bootcamp-dark);
    opacity: 0.8;
}

/* ===================================================================
   6. Info Section
=================================================================== */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* Aturan @keyframes khusus untuk animasi gradient di halaman bootcamp */
@keyframes spin-gradient-bootcamp {
    0% { --angle: 0deg; }
    100% { --angle: 360deg; }
}

#info-section-bootcamp {
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.info-container-bootcamp {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px 60px;
    align-items: start;
}

.info-content-left-bootcamp {
    grid-column: 1;
    grid-row: 1;
}

.info-heading-bootcamp {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--bootcamp-dark);
}

.info-paragraph-wrapper-bootcamp {
    grid-column: 1 / -1;
    grid-row: 2;
}

.info-paragraph-bootcamp {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--bootcamp-dark);
    opacity: 0.85;
    margin-top: 40px;
    margin-bottom: 20px;
}

.info-paragraph-bootcamp:last-child {
    margin-bottom: 0;
}

.info-content-right-bootcamp {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-card-bootcamp {
    position: relative;
    width: 50%;
    padding: 12px;
    border-radius: 5px 20px 5px 20px;
    background-color: var(--bootcamp-white);
    box-shadow: 0 10px 40px rgba(0, 86, 179, 0.1);
    z-index: 1; /* Pastikan kartu punya stacking context */
}

/* Pseudo-element ::before yang menjadi border animasi */
.info-card-bootcamp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105%;
    height: 105%;
    background: conic-gradient(from var(--angle), #775ba3, #c75d9d, #ffc107, #775ba3);
    border-radius: 5px 20px 5px 20px;
    z-index: -1; /* Diletakkan di belakang background kartu */
    animation: spin-gradient-bootcamp 6s linear infinite;
}

/* Pastikan gambar di dalam kartu berada di atas background kartu */
.info-card-image-bootcamp {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative; /* Diperlukan agar z-index bekerja */
    z-index: 2;
}

/* --- Dark Mode untuk Info Section --- */
html.dark-mode #info-section-bootcamp {
    background-color: #1a1822;
}

html.dark-mode .info-heading-bootcamp,
html.dark-mode .info-paragraph-bootcamp {
    color: var(--bootcamp-light);
}

html.dark-mode .info-card-bootcamp {
    background-color: #2a2734;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
/* ===================================================================
   7. Benefit Section
=================================================================== */
#benefit-section-bootcamp {
    padding: 80px 0;
    background-color: var(--bootcamp-white);
}

.benefit-grid-bootcamp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.benefit-card-bootcamp {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card-bootcamp:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.1);
}

.benefit-heading-bootcamp {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bootcamp-primary);
    margin-top: 0;
    margin-bottom: 25px;
}

.benefit-list-bootcamp {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list-bootcamp li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    line-height: 1.7;
    color: var(--bootcamp-dark);
}

.benefit-list-bootcamp li:last-child {
    margin-bottom: 0;
}

.benefit-icon-bootcamp {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    fill: #28a745;
    margin-top: 2px;
}

.benefit-list-bootcamp li strong {
    color: var(--bootcamp-dark);
}

.benefit-summary-bootcamp {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    color: var(--bootcamp-dark);
    opacity: 0.9;
}
html.dark-mode .benefit-summary-bootcamp {
    color: var(--bootcamp-dark);
}
/* ===================================================================
   8. Fasilitas Section
=================================================================== */
#fasilitas-section-bootcamp {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.fasilitas-heading-bootcamp {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 50px;
    color: var(--bootcamp-dark);
}

.fasilitas-grid-bootcamp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.fasilitas-item-bootcamp {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--bootcamp-white);
    color: var(--bootcamp-dark);
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fasilitas-item-bootcamp:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.fasilitas-icon-bootcamp {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    background-color: #e9f2ff;
    border-radius: 50%;
}

.fasilitas-text-bootcamp {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===================================================================
   9. Kurikulum Section
=================================================================== */
#kurikulum-section-bootcamp {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.kurikulum-heading-bootcamp {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--bootcamp-dark);
    margin-top: 0;
    margin-bottom: 15px;
}

.kurikulum-subtitle-bootcamp {
    text-align: center;
    font-size: 1.1rem;
    color: var(--bootcamp-dark);
    opacity: 0.8;
    margin-top: 0;
    margin-bottom: 50px;
}

.kurikulum-accordions-grid-bootcamp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.kurikulum-accordion-item-bootcamp {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
}

.kurikulum-accordion-button-bootcamp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: var(--bootcamp-white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bootcamp-dark);
}

.kurikulum-accordion-icon-bootcamp {
    position: relative;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.kurikulum-accordion-icon-bootcamp::before,
.kurikulum-accordion-icon-bootcamp::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--bootcamp-primary);
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.kurikulum-accordion-icon-bootcamp::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.kurikulum-accordion-item-bootcamp.active .kurikulum-accordion-icon-bootcamp::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.kurikulum-accordion-content-bootcamp {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: var(--bootcamp-white);
}

.kurikulum-list-bootcamp {
    list-style: none;
    padding: 0 20px 20px 20px;
    margin: 0;
}

.kurikulum-list-bootcamp li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.kurikulum-list-icon-bootcamp {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    fill: var(--bootcamp-accent);
}
.kurikulum-tools-wrapper-bootcamp {
    padding: 30px 0;
    background-color: #e9ecef00;
    border-radius: 15px;
    overflow: hidden;
}

.kurikulum-tools-header-bootcamp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.kurikulum-tools-title-bootcamp {
    text-align: left;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bootcamp-dark);
    margin-bottom: 0;
}

.kurikulum-tools-carousel-container-bootcamp {
    display: flex;
    flex-shrink: 0;
    gap: 25px;
    animation: marquee-bootcamp 15s linear infinite;
}

.kurikulum-tools-carousel-container-bootcamp:hover {
    animation-play-state: paused;
}


.kurikulum-tool-card-bootcamp {
    flex-shrink: 0;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kurikulum-tool-card-bootcamp:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.1);
}

.kurikulum-tool-card-bootcamp img {
    display: block;
    height: 60px;
    width: auto;
}

@keyframes marquee-bootcamp {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ===================================================================
   10. Pemateri Section
=================================================================== */
#pemateri-section-bootcamp {
    padding: 80px 0;
    background-color: var(--bootcamp-white);
}

.pemateri-heading-bootcamp {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--bootcamp-dark);
}

.pemateri-carousel-wrapper-bootcamp {
    position: relative;
    overflow: hidden;
}

.pemateri-carousel-container-bootcamp {
    display: flex;
    gap: 25px;
    padding: 20px 40vw;
    transition: transform 0.6s ease-in-out;
}

.pemateri-carousel-container-bootcamp::-webkit-scrollbar {
    display: none;
}

.pemateri-card-bootcamp {
    flex: 0 0 280px;
    min-width: 280px;
    aspect-ratio: 3 / 4;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    color: var(--bootcamp-white);
    transition: transform 0.6s ease, box-shadow 0.6s ease, opacity 0.6s ease;
    transform: scale(0.9);
    opacity: 0.7;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pemateri-card-bootcamp.active {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 10px 35px rgba(119, 91, 163, 0.25);
}

.pemateri-card-bg-bootcamp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.pemateri-card-bootcamp::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(80, 57, 128, 0.95), transparent);
    z-index: 2;
}

.pemateri-card-content-bootcamp {
    position: relative;
    z-index: 3;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.pemateri-nama-bootcamp {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.pemateri-info-bootcamp {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

.pemateri-carousel-nav-bootcamp {
    position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(255, 255, 255, 0.9); border: none; border-radius: 50%; width: 45px; height: 45px; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--bootcamp-primary); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.pemateri-carousel-nav-bootcamp:hover { background-color: var(--bootcamp-primary); color: var(--bootcamp-white); }
.pemateri-carousel-nav-bootcamp.prev { left: calc(50% - 200px); }
.pemateri-carousel-nav-bootcamp.next { right: calc(50% - 200px); }
.pemateri-loading-bootcamp { text-align: center; width: 100%; padding: 40px; color: var(--bootcamp-dark); }

/* ===================================================================
   11. Program Section
=================================================================== */
#program-section-bootcamp {
    padding: 80px 0;
    background-color: #f0f2f5; 
}

.program-heading-bootcamp {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--bootcamp-dark);
}

.program-carousel-wrapper-bootcamp {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
    overflow: hidden;
}

.program-carousel-container-bootcamp {
    display: flex;
    padding: 20px 0;
    transition: transform 0.6s ease-in-out;
}

.program-carousel-container-bootcamp::-webkit-scrollbar {
    display: none;
}

.program-card-bootcamp {
    flex: 0 0 100%;
    min-width: 100%;
    background-color: var(--bootcamp-white);
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 30px rgba(0, 86, 179, 0.08);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

@media (min-width: 769px) {
    .program-card-bootcamp {
        transform: scale(0.85);
        opacity: 0.7;
    }
    .program-card-bootcamp.active {
        transform: scale(1);
        opacity: 1;
    }
}

.program-card-header-bootcamp {
    background-color: var(--bootcamp-purple);
    color: var(--bootcamp-white);
    padding: 25px;
    margin: -25px -25px 0 -25px;
    border-radius: 20px 20px 0 0;
}
.program-badge-bootcamp {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--bootcamp-white);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 15px;
}

.program-title-bootcamp {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--bootcamp-white);
    line-height: 1.2;
}

.program-price-section-bootcamp {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}
.program-price-label-bootcamp {
    font-size: 0.8rem;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.program-price-normal-bootcamp {
    font-size: 1.2rem;
    color: #dc3545;
    text-decoration: line-through;
}
.program-price-coret-bootcamp {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bootcamp-dark);
}
.program-price-bundling-bootcamp {
    background-color: #fffbe6;
    border: 1px solid #ffe58f;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
    color: var(--bootcamp-dark);
}
.program-price-earlybird-bootcamp {
    font-weight: 700;
    color: #dc3545;
}

.program-benefit-toggle-wrapper-bootcamp {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.program-benefit-toggle-button-bootcamp {
    background: none;
    border: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bootcamp-dark);
}

.program-benefit-toggle-icon-bootcamp {
    width: 24px;
    height: 24px;
    fill: var(--bootcamp-primary);
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.program-benefit-toggle-wrapper-bootcamp.active .program-benefit-toggle-icon-bootcamp {
    transform: rotate(180deg);
}

.program-benefit-list-container-bootcamp {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.program-benefit-toggle-wrapper-bootcamp.active .program-benefit-list-container-bootcamp {
    max-height: 500px;
    transition: max-height 0.6s ease-in;
}

.program-benefit-list-bootcamp {
    list-style: none;
    padding: 15px 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.program-benefit-list-bootcamp li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--bootcamp-dark);
}
.program-benefit-icon-bootcamp {
    width: 20px;
    height: 20px;
    fill: #28a745;
    flex-shrink: 0;
    margin-top: 2px;
}

.program-cta-buttons-bootcamp {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.program-btn-bootcamp {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.program-btn-bootcamp:hover {
    transform: scale(1.03);
}

.program-btn-primary-bootcamp {
    background-color: var(--bootcamp-accent);
    color: var(--bootcamp-dark);
}
.program-btn-secondary-bootcamp {
    background-color: var(--bootcamp-dark);
    color: var(--bootcamp-white);
}

.program-carousel-nav-bootcamp {
    position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(255, 255, 255, 0.9); border: none; border-radius: 50%; width: 45px; height: 45px; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--bootcamp-primary); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.program-carousel-nav-bootcamp:hover { background-color: var(--bootcamp-primary); color: var(--bootcamp-white); }
.program-carousel-nav-bootcamp.prev { left: -10px; }
.program-carousel-nav-bootcamp.next { right: -10px; }
.program-loading-bootcamp { text-align: center; width: 100%; padding: 40px; color: var(--bootcamp-dark); }

/* ===================================================================
   BARU: Testimoni YouTube Section
=================================================================== */

/* Aturan keyframes untuk animasi putaran gradient */
@keyframes spin-gradient-youtube-bootcamp {
    0% { --angle: 0deg; }
    100% { --angle: 360deg; }
}

#testi-youtube-section-bootcamp {
    padding: 80px 0;
    background-color: var(--bootcamp-light);
}

.testi-youtube-heading-bootcamp {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--bootcamp-dark);
}

/* 1. Kartu luar sebagai bingkai animasi conic gradient */
.testi-youtube-card-bootcamp {
    position: relative;
    padding: 5px; /* Ketebalan bingkai animasi */
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    background: conic-gradient(from var(--angle), #775ba3, #c75d9d, #ffc107, #775ba3);
    animation: spin-gradient-youtube-bootcamp 4s linear infinite;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* 2. Pembungkus video di dalam kartu */
.testi-youtube-embed-wrapper-bootcamp {
    position: relative;
    width: 100%;
    /* Trik untuk rasio 16:9 */
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 16px; /* Radius lebih kecil dari kartu luar */
    background-color: var(--bootcamp-dark); /* Warna background sementara video loading */
}

/* 3. Styling untuk iframe agar responsif */
.testi-youtube-embed-wrapper-bootcamp iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Dark Mode --- */
html.dark-mode #testi-youtube-section-bootcamp {
    background-color: #1a1822;
}

html.dark-mode .testi-youtube-heading-bootcamp {
    color: var(--bootcamp-light);
}

/* ===================================================================
   12. FAQ Section
=================================================================== */
#faq-section-bootcamp {
    padding: 20px 10px 10px 10px;
    background-color: var(--bootcamp-white);
    justify-content: center;
}

#faq-section-bootcamp h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--bootcamp-dark);
}

.faq-accordion-bootcamp {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.faq-item-bootcamp {
    border-bottom: 1px solid #e0e0e0;
}

.faq-header-bootcamp {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    text-align: left;
}

.faq-header-bootcamp span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bootcamp-dark);
    padding-right: 15px;
}

.faq-icon-bootcamp {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bootcamp-secondary);
    transition: transform 0.3s ease;
}

.faq-item-bootcamp.active .faq-icon-bootcamp {
    transform: rotate(45deg);
}

.faq-content-bootcamp {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-content-bootcamp p {
    padding: 0 0 20px 0;
    line-height: 1.7;
    color: var(--bootcamp-dark);
    opacity: 0.9;
}

.faq-cta-bootcamp {
    display: block;
    width: fit-content;
    margin: 0 auto;
}


/* ===================================================================
   #. MINOL
=================================================================== */
.whatsapp-chat-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-chat-button img {
    width: 120px; /* Ukuran default untuk desktop */
    height: auto;
    /*border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); */
}

.whatsapp-chat-button:hover {
    transform: scale(1.1);
    /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3); */
}

/* Responsif untuk tampilan mobile */
@media (max-width: 768px) {
    .whatsapp-chat-button {
        right: 15px;
        bottom: 25px;
    }
    .whatsapp-chat-button img {
        width: 50px; /* Ukuran yang lebih kecil untuk mobile */
    }
}
/* ===================================================================
   13. Dark Mode & Responsive
=================================================================== */
@media (max-width: 992px) {
    .sidebar-bootcamp {
        display: none;
    }
    .hero-grid-bootcamp {
        flex-direction: column;
        text-align: center;
    }
    .hero-content-bootcamp {
        order: 2;
    }
    .hero-image-wrapper-bootcamp {
        order: 1;
        margin-bottom: 30px;
    }
    .hero-cta-buttons-bootcamp {
        justify-content: center;
    }
    .info-container-bootcamp {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .info-content-right-bootcamp {
        grid-row: 1;
        margin-bottom: 30px;
        align-self: center;
    }
    .info-content-left-bootcamp, 
    .info-paragraph-wrapper-bootcamp {
        grid-column: 1;
    }
    /* Aturan untuk judul tetap di tengah */
    .info-heading-bootcamp {
        text-align: center;
    }
    /* Diubah agar paragraf menjadi RATA KIRI-KANAN */
    .info-paragraph-wrapper-bootcamp {
        text-align: justify; 
    }
    .benefit-grid-bootcamp {
        grid-template-columns: 1fr;
    }
    .kurikulum-accordions-grid-bootcamp {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .sidebar-bootcamp {
        display: none;
    }
    .hero-grid-bootcamp {
        flex-direction: column;
        text-align: center;
    }
    .hero-content-bootcamp {
        order: 2;
    }
    .hero-image-wrapper-bootcamp {
        order: 1;
        margin-bottom: 30px;
    }
    .hero-cta-buttons-bootcamp {
        justify-content: center;
    }
    .info-container-bootcamp {
        grid-template-columns: 1fr;
    }
    .info-content-right-bootcamp {
        grid-row: 1;
        margin-bottom: 30px;
        align-self: center;
    }
    .info-content-left-bootcamp, .info-paragraph-wrapper-bootcamp {
        grid-column: 1;
        text-align: left; 
    }
    .info-heading-bootcamp {
        text-align: center;
    }
    .benefit-grid-bootcamp {
        grid-template-columns: 1fr;
    }
    .kurikulum-accordions-grid-bootcamp {
        grid-template-columns: 1fr;
    }
    .program-carousel-wrapper-bootcamp {
        overflow: hidden;
    }
}
@media (max-width: 768px) {
    .fasilitas-grid-bootcamp {
        grid-template-columns: 1fr;
    }
    .pemateri-carousel-container-bootcamp { padding: 20px 25vw; }
    .pemateri-carousel-nav-bootcamp.prev { left: 10px; }
    .pemateri-carousel-nav-bootcamp.next { right: 10px; }
    .program-carousel-wrapper-bootcamp {
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .program-carousel-nav-bootcamp { width: 40px; height: 40px; }
    .program-carousel-nav-bootcamp.prev { left: -10px; }
    .program-carousel-nav-bootcamp.next { right: -10px; }
    .why-card-bootcamp {
        flex-basis: 80%;
    }
    .sukses-card-bootcamp {
        flex-basis: 85%;
        min-width: 85%;
    }
}

html.dark-mode #page-bootcamp {
    background-color: #1a1822;
    color: var(--bootcamp-light);
}
html.dark-mode .section-bootcamp {
    border-bottom-color: #333;
}
html.dark-mode .side-nav-bootcamp a {
    color: var(--bootcamp-light);
}
html.dark-mode .side-nav-bootcamp a.active,
html.dark-mode .side-nav-bootcamp a:hover {
    background-color: #775ba3;
    color: var(--bootcamp-white);
}
html.dark-mode .why-heading-bootcamp, html.dark-mode .sukses-heading-bootcamp, html.dark-mode .info-heading-bootcamp, html.dark-mode .fasilitas-heading-bootcamp, html.dark-mode .kurikulum-heading-bootcamp, html.dark-mode .pemateri-heading-bootcamp, html.dark-mode .program-heading-bootcamp, html.dark-mode #faq-section-bootcamp h2 {
    color: var(--bootcamp-light);
}
html.dark-mode .sukses-subheading-bootcamp, html.dark-mode .info-paragraph-bootcamp, html.dark-mode .kurikulum-subtitle-bootcamp {
    color: var(--bootcamp-light);
    opacity: 0.8;
}
html.dark-mode .sukses-card-bootcamp, html.dark-mode .info-card-bootcamp {
    background-color: #2a2734;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
html.dark-mode .sukses-card-header-bootcamp { background-color: #1f1d29; }
html.dark-mode .sukses-card-nama-bootcamp, html.dark-mode .sukses-card-jabatan-bootcamp, html.dark-mode .sukses-card-body-bootcamp { color: var(--bootcamp-light); }
html.dark-mode .sukses-card-program-bootcamp { background-color: #3a315a; color: #d9cffc; }
html.dark-mode .benefit-section-bootcamp { background-color: #1a1822; }
html.dark-mode .benefit-card-bootcamp { background-color: #2a2734; border-color: #444; }
html.dark-mode .benefit-list-bootcamp li, html.dark-mode .benefit-list-bootcamp li strong { color: var(--bootcamp-light); }
html.dark-mode #fasilitas-section-bootcamp { background-color: #121f3a; }
html.dark-mode .fasilitas-item-bootcamp { background-color: #2a3b5e; color: var(--bootcamp-light); box-shadow: none; }
html.dark-mode .fasilitas-icon-bootcamp { background-color: #1a2a4a; }
html.dark-mode #kurikulum-section-bootcamp { background-color: #1a1822; }
html.dark-mode .kurikulum-accordion-item-bootcamp { border-color: #444; }
html.dark-mode .kurikulum-accordion-button-bootcamp, html.dark-mode .kurikulum-accordion-content-bootcamp { background-color: #2a2734; color: var(--bootcamp-light); }
html.dark-mode .kurikulum-accordion-button-bootcamp span, html.dark-mode .kurikulum-list-bootcamp li { color: var(--bootcamp-light); }
html.dark-mode .kurikulum-tools-title-bootcamp { color: var(--bootcamp-light); }
html.dark-mode .kurikulum-tool-card-bootcamp { background-color: rgba(42, 39, 52, 0.8); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); }
html.dark-mode #pemateri-section-bootcamp { background-color: #1a1822; }
html.dark-mode .pemateri-card-bootcamp.active { box-shadow: 0 10px 35px rgba(119, 91, 163, 0.2); }
html.dark-mode #program-section-bootcamp { background-color: #1a1822; }
html.dark-mode .program-card-bootcamp { background-color: #2a2734; border-color: #444; }
html.dark-mode .program-title-bootcamp, html.dark-mode .program-price-coret-bootcamp, html.dark-mode .program-benefit-toggle-button-bootcamp, html.dark-mode .program-benefit-list-bootcamp li { color: var(--bootcamp-light); }
html.dark-mode .program-price-section-bootcamp, html.dark-mode .program-benefit-toggle-wrapper-bootcamp { border-color: #444; }
html.dark-mode .program-price-bundling-bootcamp { background-color: #3d341b; border-color: #a38b39; color: var(--bootcamp-light); }
html.dark-mode .program-btn-secondary-bootcamp { background-color: #775ba3; }
html.dark-mode #faq-section-bootcamp { background-color: #121212; }
html.dark-mode .faq-header-bootcamp span, html.dark-mode .faq-content-bootcamp p { color: var(--bootcamp-light); }
html.dark-mode .faq-item-bootcamp { border-bottom-color: #444; }