:root {
    --color-primary: #B60A00;
    --primary-dark: #830303;
    --second-darker: #4c0002;
    --color-secondary: #FF584E;
    --third-color: #ff3131;
    --primary-blue: #004AAD;
    --darker-blue: #011f47;
    --darker-yellow: #F4A411;
    --normal-yellow: #FFD52B;
    --normal-gray: #727272;
    --font-size-title: 28px;
    --font-size-desktop: 18px;
    --font-size-title-mobile: 22px;
    --font-size-subtitle-mobile: 14px;
    --badge-font-size: 12px;
    --badge-font-size-mobile: 10px;
    --general-font-mobile: 14px;
    --primary-green: #388049;
    --primary-green-dark: #09530b;
    --font-mobile-size: 14px;
    --default-font: 'Poppins', sans-serif;
    --dark-black: black;
    --mobile-padding: 30px;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--default-font);
    line-height: 1.6;
    background-color: black;

}

/* =========================
   Navbar
========================= */
.tp-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
    padding: 10px 80px;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    background: rgba(8, 8, 8, 0.53);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Content */
.tp-navbar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tp-navbar__logo-img {
    width: 40%;
}

.tp-navbar__menu {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.tp-navbar__item {
    list-style: none;
}

/* Links */
.tp-navbar__link {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 6px;
    transition: color 0.3s ease;
}

.tp-navbar__link:hover {
    color: var(--color-secondary);
}

/* CTA */
.tp-navbar__cta {
    background: var(--color-secondary);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.tp-navbar__cta:hover {
    background: var(--primary-dark);
}

/* ================= DROPDOWN ================= */
.tp-navbar__dropdown {
    position: relative;
}

.tp-navbar__dropdown-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--default-font);
}

.tp-navbar__dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.tp-navbar__dropdown.is-open .tp-navbar__dropdown-arrow {
    transform: rotate(180deg);
}

.tp-navbar__dropdown-menu {
    position: absolute;
    list-style: none;
    top: 120%;
    left: 0;
    min-width: 180px;
    background: #000;
    border-radius: 6px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 10;
}

.tp-navbar__dropdown.is-open .tp-navbar__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tp-navbar__dropdown-link {
    display: block;
    padding: 10px 12px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.tp-navbar__dropdown-link:hover {
    background: #df2028;
}

@media (max-width: 767.98px) {
    .tp-navbar {
        display: none;
    }
}

/* =========================
   Bottom Bar
========================= */
.tp-mb {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px 20px 0 0;
    padding: 10px 0;
    z-index: 99;
}

.tp-mb__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tp-mb__item {
    flex: 1;
    text-align: center;
    position: relative;
}

.tp-mb__link,
.tp-mb__toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    height: 100%;
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    color: var(--dark-black);
    font-size: 11px;
    font-family: var(--default-font);
    text-decoration: none;
    cursor: pointer;
}

.tp-mb__icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.tp-mb__text {
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
}

.tp-mb__dropdown-menu {
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    border-radius: 8px;
    min-width: 180px;
    padding: 6px;
    display: none;
}

.tp-mb__dropdown.is-open .tp-mb__dropdown-menu {
    display: block;
}

.tp-mb__dropdown-link {
    display: block;
    padding: 10px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
}

.tp-mb__dropdown-link:hover {
    background: #df2028;
}

@media (min-width: 768px) {
    .tp-mb {
        display: none;
    }
}

/* =========================
   Footer
========================= */
.tp-ftx {
    font-family: var(--default-font);
    background: #000;
    color: #fff;
    padding: 30px 80px;
}

.tp-ftx__inner {
    margin: 0 auto;
    padding: 40px 20px 20px;
}

.tp-ftx__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.tp-ftx__logo {
    width: 100%;
    max-width: 220px;
}

.tp-ftx__title {
    display: flex;
    gap: 8px;
    font-size: var(--font-size-title);
    text-transform: uppercase;
    line-height: 30px;
}

.title-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-second-title {
    color: var(--darker-yellow);
}

.tp-ftx__list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.tp-ftx__list li {
    margin-top: 5px;
}

.tp-ftx__list a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

.tp-ftx__address,
.tp-ftx__desc {
    font-size: 15px;
    margin-top: 10px;
    line-height: 1.6;
}

.tp-ftx__sosmed {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.tp-ftx__sosmed img {
    width: 50px;
    height: 50px;
}

.tp-ftx__media {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.tp-ftx__media-img {
    width: 100%;
    height: 40px;
    object-fit: contain;
    border-radius: 5px;
    background-color: white;
    padding: 0 10px;
}

.tp-ftx__cta {
    display: inline-block;
    background: var(--primary-dark);
    color: #fff;
    padding: 12px 30px;
    border-radius: 21px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 15px;
}

.tp-ftx__cta:hover {
    background: #141414;
}

.tp-ftx__section-space {
    margin-top: 20px;
}

.tp-ftx__copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
}

/* TABLET */
@media (max-width: 1024px) and (min-width: 768px) {
    .tp-ftx {
        padding: 20px 40px;
    }

    .tp-ftx__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* MOBILE */
@media (max-width: 767.98px) {
    .tp-ftx {
        padding: 0px 30px;
        margin-bottom: 50px;
    }

    .tp-ftx__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tp-ftx__logo {
        display: none;
    }

    .tp-ftx__inner {
        padding: 0px 0px 20px;
    }

    .tp-ftx__title {
        font-size: 16px;
    }

    .tp-ftx__list a {
        font-size: 14px;
    }

    .tp-ftx__media-img {
        height: 50px;
    }
}

/* =========================
   Float CTA
========================= */
.tp-fcta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;

    width: 56px;
    height: 56px;
    border-radius: 50%;

    background: var(--primary-green);
    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 22px rgba(0, 0, 0, .3);
    transition: transform .2s ease, box-shadow .2s ease;
}

.tp-fcta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .4);
}

.tp-fcta img {
    width: 100%;
}

/* POPUP WRAPPER */
.tp-fcta-pop {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
}

.tp-fcta-pop[aria-hidden="false"] {
    pointer-events: auto;
}

/* OVERLAY */
.tp-fcta-pop__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    transition: opacity .2s ease;
}

.tp-fcta-pop[aria-hidden="false"] .tp-fcta-pop__overlay {
    opacity: 1;
}

/* POPUP BOX */
.tp-fcta-pop__box {
    position: absolute;
    right: 20px;
    bottom: 90px;

    width: 320px;
    max-width: calc(100% - 40px);

    background: #fff;
    border-radius: 14px;
    overflow: hidden;

    transform: translateY(10px);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
}

.tp-fcta-pop[aria-hidden="false"] .tp-fcta-pop__box {
    transform: translateY(0);
    opacity: 1;
}

/* HEADER */
.tp-fcta-pop__header {
    background: var(--primary-dark);
    color: #fff;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 16px;
    font-weight: 700;
}

.tp-fcta-pop__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* LIST */
.tp-fcta-pop__list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.tp-fcta-pop__list li a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #111;

    transition: background .15s ease;
}

.tp-fcta-pop__list li a:hover {
    background: #f5f5f5;
}

.tp-fcta-pop__name {
    display: block;
    font-weight: 700;
    font-size: 14px;
}

.tp-fcta-pop__tel {
    display: block;
    font-size: 13px;
    opacity: .75;
}

@media (max-width: 767.98px) {
    .tp-fcta {
        bottom: calc(20px + 90px + env(safe-area-inset-bottom));
    }

    .tp-fcta-pop__box {
        bottom: calc(90px + env(safe-area-inset-bottom));
        right: 16px;
    }
}

/* ===============================
   JUMBOTRON
================================ */
.tp-jb {
    position: relative;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    padding-bottom: 80px;
}

.tp-jb__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.tp-jb__overlay { z-index:1; }
.tp-jb__inner { z-index:2; }

.tp-jb__overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.55) 45%,
            rgba(0, 0, 0, 0.2) 100%); */
    z-index: 1;
}

.tp-jb__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 80px 0px 80px;
    margin: 0 auto;
}

.tp-jb__content {
    max-width: 520px;
    margin-right: auto;
    text-align: left;
    padding-top: 80px;
}

/* title */
.tp-jb__title {
    font-size: 36px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 20px;
}


.tp-jb__desc {
    font-size: var(--font-size-desktop);
    line-height: 1.7;
}

.tp-jb__desc ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.tp-jb__desc ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 10px;
    font-weight: 500;
}

/* bullet image kuning */
.tp-jb__desc ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    background-image: url("/assets/img/point-yellow.webp");
    background-size: contain;
    background-repeat: no-repeat;
}

.tp-jb--mobile {
    display: none;
}

@media (max-width: 768px) {

    .tp-jb--desktop {
        display: none;
    }

    .tp-jb--mobile {
        display: block;
    }

    .tp-jb {
        min-height: 480px;
    }

    .tp-jb__overlay {
        /* background: linear-gradient(90deg,
                rgba(0, 0, 0, 0.75) 0%,
                rgba(0, 0, 0, 0.55) 45%,
                rgba(0, 0, 0, 0.2) 100%); */
    }

    .tp-jb__inner {
        padding: 0px 30px 150px 30px;
    }

    .tp-jb__content {
        margin: 0 auto;
        max-width: 100%;
        padding-top: 20px;
        text-align: center;
    }

    .tp-jumbotron__logo-img {
        display: block;
        margin: 0 auto 20px auto;
        max-width: 120px;
        height: auto;
    }

    .tp-jb__title {
        font-size: var(--font-size-title-mobile);
        margin-bottom: 10px;
    }

    .tp-jb__desc {
        font-size: var(--general-font-mobile);
        line-height: 1.6;
        text-align: center;
        margin-top: 10px;
    }

    .tp-jb__desc ul {
        list-style: none;
        padding: 15px 0;
        margin: 0px auto;
        border-top: 2px solid #FFD700;
        border-bottom: 2px solid #FFD700;
        max-width: 340px;
        box-sizing: border-box;
        line-height: 10px;
    }

    .tp-jb__desc ul li {
        position: relative;
        padding-left: 32px;
        margin-bottom: 10px;
        font-weight: 500;
        text-align: left;
    }

    .tp-jb__desc ul li::before {
        content: "";
        position: absolute;
        left: 0;
        top: -2px;
        width: 18px;
        height: 18px;
        background-image: url("/assets/img/point-yellow.webp");
        background-size: contain;
        background-repeat: no-repeat;
    }

    .tp-jb__desc p {
        font-size: var(--general-font-mobile);
        line-height: 1.6;
        margin-top: 10px;
        text-align: left;
    }
}

/* ===============================
   DIVIDER
================================ */
.social-divider-wrapper {
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.social-divider {
    display: flex;
    gap: 40px;
}

.social-divider a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-divider a i {
    font-size: 24px;
    display: inline-block;
}

.social-divider a:hover {
    background-color: #f0f0f0;
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .social-divider {
        flex-direction: row;
        gap: 5px;
        justify-content: center;
    }

    .social-divider a {
        justify-content: flex-start;
        width: auto;
        padding: 8px 4px;
        font-size: 7px;
        gap: 3px;
    }

    .social-divider a i {
        font-size: 7px;
    }
}

/* =========================
   ABOUT US
========================= */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.about-section {
    position: relative;
    background-color: var(--primary-dark);
    padding: 30px 80px;
    overflow: hidden;
    color: #fff;
    font-family: var(--default-font);
}

.about-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    z-index: 1;
}

.second-orange-title {
    color: var(--darker-yellow);
    text-transform: uppercase;
}

.about-section .bg-logo {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    opacity: 0.08;
    max-width: 400px;
    pointer-events: none;
    z-index: 0;
}

.about-section .bg-logo img {
    width: 100%;
    height: auto;
}

.about-title-wrapper {
    position: relative;
    flex: 1;
    z-index: 1;
}

.about-title-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-image {
    flex: 2;
    z-index: 1;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.about-body {
    text-align: justify;
    margin-bottom: 40px;
}

.about-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: #fff;
}

.about-stats-wrapper {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.about-stats {
    display: inline-flex;
    justify-content: center;
    gap: 20px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 0px;
}

.about-stat-item {
    min-width: 180px;
    padding: 15px 20px;
    text-align: center;
    color: var(--primary-dark);
}

.about-stat-item span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-stat-item p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px var(--mobile-padding) var(--mobile-padding) var(--mobile-padding);
    }

    .about-header {
        flex-direction: column;
        text-align: center;
    }

    .about-title-wrapper h2 {
        font-size: var(--font-size-title-mobile);
    }

    .about-section .bg-logo {
        left: 50%;
        transform: translate(-50%, -50%);
        top: 10%;
        width: 150px;
    }

    .about-body p {
        font-size: var(--general-font-mobile);
    }

    .about-stats {
        align-items: center;
    }

    .about-stat-item {
        min-width: 80px;
    }

    .about-stat-item span {
        font-size: var(--general-font-mobile);
    }

    .about-stat-item p {
        font-size: 10px;
    }

    .about-image img {
        max-width: 100%;
    }
}

/* =========================
   TARGET BIMBINGAN
========================= */
.target-bimbingan-section {
    background-color: var(--primary-dark);
    padding: 30px 80px;
    color: #fff;
}

.target-bimbingan-header {
    text-align: center;
    margin-bottom: 40px;
}

.target-bimbingan-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.target-highlight {
    color: #ffb400;
}

.target-bimbingan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.target-bimbingan-card {
    background-color: #fff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.target-card-title--akademi-tni {
    background-color: var(--primary-blue);
}

.target-card-title--bintara {
    background-color: var(--primary-green);
}

.target-card-title--sekolah-kedinasan {
    background-color: var(--normal-gray);
}

.target-card-title--akpol {
    background-color: var(--color-primary);
}

.target-card-image {
    position: relative;
    background-color: #fff;
    text-align: center;
    line-height: 0;
}

.target-card-image img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    display: block;
    padding-top: 30px;
}

.target-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    background-color: #fff;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-card-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
}

.target-card-title {
    font-size: 24px;
    text-align: center;
    padding: 12px 10px;
    color: #fff;
    letter-spacing: 0.5px;
}

.target-card-action {
    padding: 15px;
    text-align: center;
    margin-top: auto;
}

.target-card-button {
    display: inline-block;
    background-color: #ffcc00;
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.target-card-button:hover {
    background-color: #ffd84d;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .target-bimbingan-section {
        padding: 20px var(--mobile-padding);
    }

    .target-bimbingan-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .target-bimbingan-header h2 {
        font-size: var(--font-size-title-mobile);
    }

    .target-card-title {
        font-size: 10px;
    }

    .target-card-image img {
        height: 150px;
    }

    .target-card-button {
        font-size: 10px;
    }
}

/* =========================
   REKOMENDASI PROGRAM
========================= */
.recommended-programs {
    background: var(--primary-dark);
    background: linear-gradient(179deg, rgba(131, 3, 3, 1) 57%, rgba(76, 0, 2, 1) 100%);
    padding: 30px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: var(--font-size-title);
    font-weight: 800;
    color: #fff;
}

.program-grid {
    padding: 0px 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.program-item {
    display: flex;
    flex-direction: column;
}

.program-card {
    background-color: var(--darker-blue);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.program-head {
    padding: 18px 10px;
    text-align: center;
    font-weight: 800;
    font-size: 22px;
    color: #fff;
    border-radius: 20px;
}

.theme-bootcamp .program-head {
    background: linear-gradient(180deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, 0)), var(--color-primary);
}

.theme-intensive-class .program-head {
    background: linear-gradient(180deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, 0)), var(--primary-blue);
}

.theme-online-class .program-head {
    background: linear-gradient(180deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, 0)), var(--primary-green);
}

.program-body {
    display: block;
}

.program-desc {
    font-size: 13px;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.benefit-list {
    background: #fff;
    padding: 20px;
}

.benefit-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 7px;
}

.benefit-list img {
    width: 16px;
    margin-top: 2px;
}

.price-wrap {
    text-align: center;
    margin-top: 18px;
}

.price-wrap span {
    display: block;
    font-size: 14px;
    color: var(--darker-blue);
}

.price-wrap strong {
    font-size: 28px;
    font-weight: 800;
    color: var(--darker-blue);
}

.cta-btn-rp {
    margin-top: 14px;
    background: #ffb300;
    color: #fff;
    font-weight: 800;
    padding: 16px 14px;
    text-decoration: none;
    border-radius: 14px;
    transition: .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-btn-rp img {
    width: 50px;
    height: auto;
    flex-shrink: 0;
}

.cta-btn-rp span {
    font-size: 22px;
}

.cta-btn-rp:hover {
    background: #ffc107;
    transform: translateY(-1px);
}

@media(max-width:1024px) {
    .program-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {

    .program-grid {
        grid-template-columns: 1fr;
        padding: 0px var(--mobile-padding);
    }

    .section-header {
        background-color: var(--second-darker);
        padding: 10px;
    }

    .section-header h2 {
        font-size: var(--font-size-title-mobile);
    }

    .program-head {
        font-size: 20px;
    }

    .cta-btn-rp span {
        font-size: 16px;
    }

    .cta-btn-rp img {
        width: 30px;
    }
}

/* =========================
   FASILITAS
========================= */
.facility-section {
    background: var(--second-darker);
    background: linear-gradient(179deg, rgba(76, 0, 2, 1) 57%, rgba(0, 0, 0, 1) 100%);
}

.fasility-section-header {
    text-align: center;
    margin-bottom: 10px;
}

.fasility-section-header h2 {
    font-size: var(--font-size-title);
    font-weight: 800;
    color: #fff;
}

.fasility-container {
    padding: 30px 80px 30px 80px;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.facility-item {
    grid-column: span 2;
    display: flex;
    justify-content: center;
}

.facility-item img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .15);
}

.facility-item:nth-child(7) {
    grid-column: 2 / span 2;
}

.facility-item:nth-child(8) {
    grid-column: 4 / span 2;
}

@media(max-width:768px) {
    .fasility-container {
        padding: 10px 30px 30px 30px;
    }

    .fasility-section-header {
        background-color: var(--second-darker);
        padding: 10px;
    }

    .fasility-section-header h2 {
        font-size: var(--font-size-title-mobile);
    }

    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .facility-item,
    .facility-item:nth-child(7),
    .facility-item:nth-child(8) {
        grid-column: span 1;
    }
}

/* =========================
   MAPEL
========================= */
.mapel-section {
    background: #000;
    padding: 40px 80px;
    font-family: var(--default-font);
}

.mapel-container {
    width: 100%;
    margin: auto;
}

.mapel-title {
    color: #fff;
    text-align: center;
    font-size: var(--font-size-title);
    font-weight: 700;
    margin: 30px 0;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-color: var(--color-primary);
}

.mapel-accordion {
    margin: auto;
}

.mapel-accordion-btn {
    width: 100%;
    background: var(--third-color);
    border: none;
    border-radius: 6px;
    padding: 14px 16px;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: .2s;
    font-family: var(--default-font);
}

.mapel-accordion-btn:hover,
.mapel-accordion-btn.active {
    background: var(--second-darker);
}

.mapel-icon {
    font-size: 18px;
    color: #fff;
    transition: transform .3s ease;
}

.mapel-accordion-btn.active .mapel-icon {
    transform: rotate(180deg);
}

.mapel-accordion-panel {
    max-height: 0;
    overflow: hidden;
    background: var(--primary-dark);
    border-radius: 6px;
    transition: max-height .3s ease;
    margin-bottom: 8px;
}

.mapel-list {
    list-style: none;
    padding: 12px 16px;
    margin: 0;
}

.mapel-list li {
    font-size: 14px;
    color: #fff;
    margin-bottom: 6px;
    display: flex;
    gap: 8px;
}

.mapel-list li:before {
    content: "✓";
    color: #ffb300;
    font-weight: 700;
}

@media(max-width:768px) {
    .mapel-section {
        padding: 0 30px 30px 30px;
    }

    .mapel-title {
        font-size: var(--font-size-title-mobile);
    }

    .mapel-list li {
        font-size: var(--font-mobile-size);
    }
}

/* =========================
   GALLERY DESKTOP
========================= */
.gallery-section {
    background: #000;
    padding: 60px 80px;
}

.gallery-container {
    width: 100%;
}

.gallery-header {
    text-align: center;
    margin-bottom: 32px;
}

.gallery-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}

.gallery-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.gallery-slider {
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: flex;
    transition: transform .45s ease;
}

.gallery-slide {
    flex: 0 0 calc(100% / 3);
    padding: 0 10px;
}

.gallery-slide img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .35);
}

.gallery-nav {
    background: #ffb300;
    border: none;
    color: #000;
    font-size: 22px;
    font-weight: 800;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: .2s;
}

.gallery-nav:hover {
    background: #ffc107;
}

.gallery-nav.prev {
    left: -18px;
}

.gallery-nav.next {
    right: -18px;
}

.view-gallery-desktop {
    display: block;
}

@media(max-width:768px) {
    .view-gallery-desktop {
        display: none;
    }

    .gallery-section {
        padding: 30px 30px;
        background: #000000;
        background: linear-gradient(179deg, rgba(0, 0, 0, 1) 13%, rgba(131, 3, 3, 1) 100%);
    }

    .gallery-header h2 {
        font-size: 26px;
    }

    .gallery-slide {
        flex: 0 0 100%;
    }

    .gallery-slide img {
        height: 220px;
    }

    .gallery-nav.prev {
        left: 6px;
    }

    .gallery-nav.next {
        right: 6px;
    }
}

/* Youtube */
.yt-section {
    background: #000;
    padding-top: 30px;
}

.yt-container {
    width: 100%;
}

.yt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.yt-full {
    grid-column: span 2;
}

.item-yt {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .45);
}

.gallery-lazy-yt {
    position: relative;
    cursor: pointer;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 14px;
    overflow: hidden;
}

.gallery-lazy-yt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.gallery-lazy-yt .youtube-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.gallery-lazy-yt .youtube-play-btn::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 15px;
    width: 0;
    height: 0;
    border-left: 16px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}


@media(max-width:768px) {

    .yt-grid {
        grid-template-columns: 1fr;
    }

    .yt-full {
        grid-column: span 1;
    }
}

/* =========================
   GALLERY MOBILE
========================= */

.view-gallery-mobile-wrapper {
    display: none;
}

.container-gallery-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    max-width: 100%;
    overflow: hidden;
}

.img-galeri,
.img-galeri-new {
    width: 100%;
    height: auto;
    display: block;
}

.img-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    width: 100%;
}

.img-second-column {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.container-child-video {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 20px;
}

.item-yt {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    border: none;
}

@media (max-width:768px) {
    .view-gallery-mobile-wrapper {
        display: block;
    }

    .gallery-header {
        margin-bottom: 10px;
    }
}

/* ================================
   APA KATA MEREKA SECTION
================================ */
.apa-kata-mereka-section {
    padding: 30px 80px;
    background: #000;
}

.apa-kata-mereka-header {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.apa-kata-mereka-header h2 {
    font-size: var(--font-size-title);
    font-weight: 700;
    line-height: 1.2;
}

.apa-kata-mereka-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.apa-kata-mereka-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.apa-kata-mereka-slide {
    flex: 0 0 calc(25% - 15px);
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
}

.apa-kata-mereka-slide iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

.apa-kata-mereka-arrow {
    background: var(--darker-yellow);
    border: none;
    color: #000;
    font-size: 22px;
    font-weight: 800;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: .2s;
}

.apa-kata-mereka-arrow.prev {
    left: 0;
}

.apa-kata-mereka-arrow.next {
    right: 0;
}

.apa-kata-mereka-dots {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 8px;
}

.apa-kata-mereka-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.apa-kata-mereka-dot.active {
    background: var(--darker-yellow);
}

.youtube-lazy {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    cursor: pointer;
    background: #000;
}

.youtube-lazy img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.youtube-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    background: var(--color-primary);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.youtube-play-btn::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 16px;
    width: 0;
    height: 0;
    border-left: 16px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.apa-kata-mereka-slide .youtube-lazy {
    height: 100%;
    padding-bottom: 0;
}

.apa-kata-mereka-slide .youtube-lazy img,
.apa-kata-mereka-slide .youtube-lazy iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .apa-kata-mereka-slide {
        flex: 0 0 calc(50% - 10px);
    }

    .apa-kata-mereka-header h2 {
        font-size: var(--font-size-title-mobile);
    }

    .apa-kata-mereka-section {
        padding: 30px 30px;
        background-color: var(--primary-dark);
    }
}

/* ================================
   TESTIMONIALS SISWA
================================ */
.testimonial-siswa-parent {
    background: #000000;
    color: white;
    padding: 20px 80px;
}

.testimonial-siswa-carousel {
    position: relative;
    width: 100%;
}

.testimonial-siswa-card {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: auto;
    height: 330px;
}

.testimonial-siswa-img-wrapper {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15);

    width: 112px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

figure.testimonial-siswa-img-wrapper {
    margin: 0;
}

.testimonial-siswa-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.testimonial-siswa-card-body {
    margin-top: 50px;
}

.testimonial-siswa-stars {
    font-size: 18px;
    color: #f5b50a;
    margin-bottom: 10px;
}

.testimonial-siswa-deskripsi {
    font-size: 14px;
    color: #333;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-siswa-nama {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin-bottom: 2px;
}

.testimonial-siswa-jabatan {
    font-size: 13px;
    color: gray;
}

.testimonial-siswa-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-siswa-arrow:hover {
    opacity: 1;
}

.testimonial-siswa-arrow--prev {
    left: 10px;
}

.testimonial-siswa-arrow--next {
    right: 10px;
}

.testimonial-siswa-container {
    width: 100%;
    padding: 16px 60px;
    margin: 20px 0;
    overflow-x: auto;
    display: flex;
    gap: 30px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.testimonial-siswa-slide {
    margin-top: 45px;
    flex: 1 0 30%;
    scroll-snap-align: center;
}

.testimonial-siswa-container::-webkit-scrollbar {
    height: 14px;
}

.testimonial-siswa-container::-webkit-scrollbar-track {
    background: white;
    border-radius: 50px;
}

.testimonial-siswa-container::-webkit-scrollbar-thumb {
    background: #df2028;
    border-radius: 50px;
}

@media (max-width: 767.98px) {
    .testimonial-siswa-slide {
        flex: 1 0 100%;
    }

    .testimonial-siswa-parent {
        padding: 20px 30px;
        background: var(--primary-dark);
        background: linear-gradient(to bottom,
                var(--primary-dark) 0%,
                #000000 100%);
    }

    .testimonial-siswa-container {
        padding: 16px 40px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .testimonial-siswa-slide {
        flex: 0 0 48%;
    }

    .testimonial-siswa-container {
        gap: 20px;
    }
}

/* ================================
   SUCCESS STORIES
================================ */
.success-story-section {
    padding: 30px 80px;
}

.success-story-container {
    width: 100%;
    margin: auto;
    padding: 0px;
}

.success-story-title {
    font-size: var(--font-size-title);
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    text-align: center;
}

.success-story-carousel {
    position: relative;
    width: 100%;
}

.success-story-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.success-story-track {
    display: flex;
    gap: 10px;
    transition: transform 0.6s ease;
    will-change: transform;
}

.success-story-slide {
    flex: 0 0 25%;
}

.success-story-figure {
    width: 100%;
    height: 100%;
    margin: 0;
}

.success-story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.success-story-img:hover {
    transform: scale(1.05);
}

.success-story-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 5;
    opacity: 0.7;
    transition: 0.2s;
}

.success-story-arrow:hover {
    opacity: 1;
}

.success-story-arrow--prev {
    left: -10px;
}

.success-story-arrow--next {
    right: -10px;
}

.success-story-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.success-story-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.success-story-dot.active {
    background: #df2028;
    transform: scale(1.2);
}


@media (max-width: 1024px) {
    .success-story-slide {
        flex: 0 0 33.3333%;
    }
}

@media (max-width: 768px) {
    .success-story-section {
        padding: 30px 30px;
    }

    .success-story-title {
        font-size: var(--font-size-title-mobile);
    }

    .success-story-slide {
        flex: 0 0 50%;
    }
}

/* ================================
   ALUMNI
================================ */
.alumni-section {
    padding: 30px 80px;
    background: linear-gradient(180deg,
            var(--dark-black) 0%,
            var(--primary-dark) 70%);
}

.alumni-container {
    width: 100%;
    margin: auto;
    padding: 0 20px;
}

.alumni-title {
    text-align: center;
    margin-bottom: 30px;
    line-height: 1;
}

.alumni-title-img {
    display: block;
    margin: 0 auto 6px;
    max-width: 380px;
    width: 100%;
    height: auto;
}

.alumni-title-text {
    display: block;
    font-size: var(--font-size-title);
    font-weight: 700;
    letter-spacing: 4px;
    color: #ffffff;
    text-shadow:
        2px 2px 0 #000,
        -2px 2px 0 #000,
        2px -2px 0 #000,
        -2px -2px 0 #000;
}

.alumni-grid-wrapper {
    width: 100%;
}

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.alumni-item {
    width: 100%;
    height: 100%;
}

.alumni-figure {
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 12px;
}


.alumni-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.alumni-img:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .alumni-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .alumni-section {
        padding: 30px 20px;
        background: linear-gradient(180deg,
                var(--dark-black) 0%,
                rgba(0, 0, 0, 0.15) 55%,
                var(--primary-dark) 100%);
    }

    .alumni-title-text {
        font-size: var(--font-size-title-mobile);
    }

    .alumni-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
}

/* =========================
   FAQ
========================= */
.faq-section {
    background: var(--primary-dark);
    color: #ffffff;
    padding: 30px 80px;
}

.faq-container {
    width: 100%;
    margin: auto;
}

.faq-header {
    margin-bottom: 25px;
}

.faq-title {
    font-size: var(--font-size-title);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--third-color);
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    margin: 0;
}

.faq-toggle {
    width: 100%;
    background: transparent;
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    text-align: left;
    font-family: var(--default-font);
}

.faq-toggle:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.faq-question-text {
    flex: 1;
    padding-right: 10px;
}

/* ICON */
.faq-icon {
    font-size: 18px;
    transition: transform 0.25s ease;
}

/* ANSWER */
.faq-answer-wrapper {
    background-color: var(--second-darker);
}

.faq-answer {
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.6;
}

/* OPEN STATE */
.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
}

@media (max-width: 767.98px) {
    .faq-section {
        padding: 30px 30px;
    }

    .faq-title {
        font-size: var(--font-size-title-mobile);
    }

    .faq-toggle {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 12px;
    }
}

/* ================================
   ALUMNI
================================ */
.tutors-section {
    background: var(--primary-dark);
    padding: 30px 80px;
}

.tutors-container {
    width: 100%;
    margin: 0 auto;
}

.tutors-title {
    color: #fff;
    text-align: center;
    font-size: var(--font-size-title);
    font-weight: 700;
    margin-bottom: 24px;
}

.tutors-track-wrapper {
    overflow: hidden;
}

.tutors-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    transition: transform 0.4s ease;
}

.tutors-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.tutors-card-media {
    width: 100%;
}

.tutors-card-bg {
    width: 100%;
    display: block;
    border-radius: 20px;
    padding: 10px;
}

.tutors-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 10px 10px 10px;
}

.tutors-card-name {
    font-size: 20px;
    text-align: center;
    font-weight: 800;
    color: black;
    margin: 0;
}

.tutors-card-desc {
    font-size: 14px;
    color: black;
    margin: 0;
    text-align: center;
}

.tutors-card-btn {
    border: none;
    background: var(--third-color);
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    padding: 8px 0;
    cursor: pointer;
}

.tutors-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.tutors-prev,
.tutors-next {
    background: #701014;
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

.tutors-dots {
    display: flex;
    gap: 6px;
}

.tutors-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    opacity: 0.5;
    border: none;
}

.tutors-dot.active {
    background: var(--third-color);
    opacity: 1;
}

@media (max-width: 767.98px) {
    .tutors-section {
        padding: 30px 30px;
    }

    .tutors-track {
        display: flex;
        gap: 16px;
        will-change: transform;
    }

    .tutors-card {
        flex: 0 0 100%;
    }

    .tutors-nav {
        display: flex;
    }
}

/* ================================
   DIRECTORY
================================ */
.directory-section {
    background: var(--primary-dark);
    padding: 30px 80px;
}

.directory-container {
    width: 100%;
    margin: 0 auto;
}

.directory-header {
    margin-bottom: 20px;
}

.directory-title {
    color: #fff;
    font-size: var(--font-size-title);
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.directory-title-accent {
    display: inline-block;
}

.directory-image-wrapper {
    margin-bottom: 20px;
}

.directory-figure {
    margin: 0;
}

.directory-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.directory-list-wrapper {
    margin-top: 20px;
}

.directory-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.directory-item {
    width: 100%;
}

.directory-link {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 6px;
    color: #fff;
    text-decoration: none;
    background-color: #000;
    border-radius: 20px;
}

.directory-link:hover,
.directory-link:focus-visible {
    background: #701014;
    color: #fff;
    outline: none;
}

/* TABLET */
@media (max-width: 991.98px) {
    .directory-section {
        padding: 30px 30px;
    }

    .directory-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .directory-link {
        font-size: 15px;
    }
}

/* MOBILE */
@media (max-width: 767.98px) {
    .directory-section {
        padding: 30px 30px;
    }

    .directory-title {
        font-size: var(--font-size-title-mobile);
    }

    .directory-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .directory-link {
        font-size: 10px;
        padding: 6px 4px;
    }
}

/* =========================
   PAGE KELAS
========================= */
.kelas-container {
    width: 100%;
    padding: 100px 80px 30px 80px;
    background: linear-gradient(179deg, rgba(131, 3, 3, 1) 57%, rgba(76, 0, 2, 1) 100%);
}

.kelas-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 20px;
}

/* SIDEBAR */
.kelas-sidebar {
    width: 100%;
}

.kelas-filters {
    padding: 30px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--second-darker);
    box-shadow: rgba(0, 0, 0, 0.54) 0px 3px 8px;
    border-radius: 10px;
}

.kelas-filter-item {
    list-style: none;
    display: flex;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid #ffffff;
    cursor: pointer;
    color: #ffffff;
}

.kelas-filter-item label {
    cursor: pointer;
    width: 100%;
    padding: 10px;
    text-transform: uppercase;
}

.kelas-filter-checkbox {
    margin-right: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

/* CONTENT GRID */
.kelas-content {
    width: 100%;
}

.kelas-item-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px 0;
    align-items: stretch;
}

.kelas-item-col {
    display: flex;
    width: 100%;
}

.kelas-item {
    width: 100%;
    padding-bottom: 10px;
}

.kelas-child-item {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* =========================
   SUBPROGRAM CARD
========================= */
.subprogram-card {
    background-color: #fff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 320px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.2s ease;
}

.subprogram-card:hover {
    transform: translateY(-5px);
}

.subprogram-card-image {
    position: relative;
    background-color: #fff;
    text-align: center;
    line-height: 0;
    padding-top: 20px;
}

.subprogram-card-image img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.subprogram-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    background-color: #fff;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.subprogram-card-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
}

.subprogram-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 12px 10px;
    background-color: var(--primary-dark);
    color: #fff;
    letter-spacing: 0.5px;
}

.subprogram-card-action {
    padding: 15px;
    margin-top: auto;
}

.subprogram-card-button {
    display: inline-block;
    background-color: #ffcc00;
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.subprogram-card-button:hover {
    background-color: #ffd84d;
    transform: translateY(-2px);
}

/* =========================
   MOBILE IMPROVEMENTS
========================= */
@media (max-width: 991.98px) {
    .kelas-container {
        padding: 80px 24px 30px 24px;
    }

    .kelas-layout {
        grid-template-columns: 240px 1fr;
        gap: 16px;
    }

    .kelas-item-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 767.98px) {
    .kelas-container {
        padding: 60px 16px 20px 16px;
    }

    .kelas-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .kelas-sidebar {
        order: -1;
    }

    .kelas-filters {
        padding: 16px;
        gap: 10px;
        margin-top: 0;
    }

    .kelas-filters img {
        width: 50%;
    }

    .kelas-filter-item {
        font-size: 14px;
    }

    .kelas-filter-checkbox {
        width: 22px;
        height: 22px;
    }

    .kelas-child-item {
        border-radius: 8px;
    }

    .subprogram-card-image img {
        width: 100%;
        padding-top: 40px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .kelas-container {
        padding: 40px 12px 16px 12px;
    }

    .kelas-filter-item label {
        padding: 8px;
        font-size: 13px;
    }
}

/* =========================
   KALKULATOR JASMANI
========================= */
.kj-wrapper {
    padding: 100px 80px 30px 80px;
    background: #000000;
    background: linear-gradient(3deg, rgba(0, 0, 0, 1) 13%, rgba(131, 3, 3, 1) 100%);
    font-family: var(--default-font);
}

.kj-container {
    margin: 0 auto;
}

.kj-title {
    font-size: var(--font-size-title);
    font-weight: 900;
    margin: 25px 0;
    color: #fff;
    text-shadow: 0 0 12px rgba(220, 38, 38, 0.8);
    letter-spacing: 1px;
}

.kj-card {
    background: linear-gradient(145deg, #0a0a0a, #141414);
    border-radius: 16px;
    box-shadow:
        0 0 0 1px rgba(220, 38, 38, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(220, 38, 38, 0.15);
    backdrop-filter: blur(4px);
}

.kj-card-body {
    padding: 28px;
}

.kj-form-group {
    margin-bottom: 18px;
}

.kj-label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    color: #f5f5f5;
    letter-spacing: 0.3px;
}

.kj-select,
.kj-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #111111;
    outline: none;
    transition: all 0.25s ease;
}

.kj-select::placeholder,
.kj-input::placeholder {
    color: #9ca3af;
}

.kj-select:focus,
.kj-input:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.35);
    background: #ffffff;
}

.kj-form-row .kj-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.kj-nilai-box {
    min-width: 70px;
    text-align: center;
    padding: 10px 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, #dc2626, #7f1d1d);
    color: #fff;
    font-weight: 900;
}

.kj-submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #fff;
    font-weight: 900;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.25s ease;
}

.kj-submit-btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow:
        0 12px 30px rgba(220, 38, 38, 0.8),
        0 0 30px rgba(220, 38, 38, 0.6);
}

.kj-result-card {
    margin-top: 28px;
    background: linear-gradient(145deg, #ffffff, #f1f1f1);
    border-radius: 16px;
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.35),
        0 0 0 2px rgba(220, 38, 38, 0.2);
}

.kj-result-body {
    padding: 24px;
    text-align: center;
}

.kj-result-title {
    font-weight: 900;
    margin-bottom: 10px;
    color: #111;
    letter-spacing: 1px;
}

.kj-result-total {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #dc2626, #7f1d1d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    text-shadow: 0 4px 10px rgba(220, 38, 38, 0.4);
}

@media (max-width: 767.98px) {
    .kj-wrapper {
        padding: 30px 30px;
    }

    .kj-title {
        font-size: var(--font-size-title-mobile);
        font-weight: 900;
        margin-bottom: 28px;
        color: #fff;
        text-shadow: 0 0 12px rgba(220, 38, 38, 0.8);
        letter-spacing: 1px;
    }
}