/* =========================
   Reset & Body
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

.bg-image {
    background: linear-gradient(rgba(40, 120, 235, 0.05), rgba(40, 120, 235, 0.05)), url('https://apps.masterclass.co.id/assets/img/bg-image.webp');
    background-attachment: fixed;
}

/* =========================
   Navbar
========================= */
.navbar.header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
}

/* Container */
.navbar.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* max-width: 1200px; */
    width: 100%;
    padding: 0 80px;
}

/* Logo */
.navbar.header .link-img img.logo-top {
    width: 150px;
    transition: transform 0.3s;
}

.navbar.header .link-img img.logo-top:hover {
    transform: scale(1.05);
}

/* Buttons */
.parent-btn-navbar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    display: inline-block;
    padding: 10px 40px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background-color: #f4d20c;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: white;
    color: black;
    border: 2px solid #1144b1;
}

.btn-daftar-navbar {
    background-color: #1144b1;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-daftar-navbar:hover {
    background-color: #1144b1;
    transform: scale(1.05);
}

/* ======================
   NAV MENU + DROPDOWN
====================== */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu .dropdown a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #1144b1;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background-color: transparent;
    border: 2px solid #1144b1;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    background: white;
    padding: 10px 0;
    width: 180px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
}

/* Show on hover (desktop) */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* ======================
   HAMBURGER MENU
====================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 768px) {

    .navbar.header .container {
        flex-direction: row;
        gap: 30px;
        padding: 10px 30px;
    }

    .parent-btn-navbar {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn-login,
    .btn-daftar-navbar {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .navbar.header .link-img img.logo-top {
        width: 100px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
        border-radius: 12px;
    }

    .nav-menu.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}


/* =========================
   CTA Floating WhatsApp
========================= */

/* Wrapper CTA */
.parent-float-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    animation: floatIn 0.5s ease-out;
}

.cta-bubble {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    text-decoration: none;
}

.label-cta {
    background-color: #dbeafe;
    color: black;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background-color 0.3s;
}

.label-cta b {
    font-weight: 700;
}

.label-cta:hover {
    background-color: #555;
    transform: translateX(-2px);
}

.icon-float-cta {
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.icon-float-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 575px) {
    .parent-float-cta {
        bottom: 20px;
        right: 20px;
    }

    .label-cta {
        font-size: 12px;
        padding: 8px 12px;
    }

    .icon-float-cta {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* =========================
   Footer - Tryout Pintar
========================= */
.pg-footer {
    background-color: #1144b1;
    width: 100%;
    color: #fff;
    font-family: inherit;
    font-family: 'Poppins', sans-serif;
}

.footer {
    text-align: left;
    padding: 80px
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap !important;
    text-align: left;
    gap: 100px;
}

.footer-content-column {
    flex: 1;
    max-width: 25%;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 220px;
    margin-bottom: 25px;
}

.footer p {
    max-width: 380px;
    font-size: 15px;
    line-height: 1.5;
}

.footer-menu-name,
.footer-call-to-action-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.all-sosmed {
    display: flex;
    gap: 14px;
    margin-top: 15px;
}

.img-sosmed {
    width: 32px;
    height: 32px;
    transition: .2s;
}

.img-sosmed:hover {
    transform: scale(1.1);
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-menu-list a {
    color: #fff;
    text-decoration: none;
    transition: .2s;
}

.footer-menu-list a:hover {
    opacity: .8;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.partner-item {
    width: 100%;
    height: 65px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}


.img-media-partner {
    width: 130px;
    padding: 6px 10px;
    border-radius: 6px;
}

.footer-content-column:nth-child(3) {
    display: grid;
    gap: 20px;
}

.footer-content-column:nth-child(2) {
    display: grid;
    gap: 15px;
}

.footer-call-to-action-button {
    background-color: #f4d30c;
    color: #1144b1;
    padding: 10px 26px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    transition: .3s;
    margin-top: 20px;
}

.footer-call-to-action-button:hover {
    background-color: #ffd84d;
    color: #00246a;
}

.footer-call-to-action-description {
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-copyright {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-copyright-text {
    font-size: 13px;
    opacity: .9;
    text-align: center;
}

@media (max-width: 991px) {
    .footer {
        padding: 20px;
    }

    .footer-content {
        display: flex;
        flex-wrap: wrap !important;
        gap: 20px;
        padding-top: 20px;
        flex-direction: row !important;
    }

    .footer-content>* {
        width: calc(50% - 20px);
    }

    .footer-content-column {
        max-width: 50%;
    }

    .footer-content-column:nth-child(2),
    .footer-content-column:nth-child(3) {
        gap: 10px;
    }
}

@media (max-width: 768px) {

    .footer-content {
        flex-direction: column !important;
        gap: 0px;
        padding-top: 20px;
    }

    .footer-content>* {
        width: 100% !important;
    }

    .footer-content-column {
        max-width: 100%;
    }

    .footer-logo img {
        width: 180px;
    }

    .img-sosmed {
        width: 26px;
        height: 26px;
    }

    .footer {
        padding: 30px;
    }
}

/* =========================
   Jumbotron
========================= */
.tryout-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 80px;
    gap: 30px;
    /* height: 100vh; */
}

.content {
    max-width: 600px;
    flex: 1 1 100%;
}

.content h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #121a2a;
    line-height: 1.2;
}

.content h1 span {
    color: #2569f5;
}

.content p {
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    color: #121a2a;
    line-height: 1.5;
    max-width: 560px;
}

.image-container {
    flex-shrink: 0;
    max-width: 520px;
    flex: 1 1 100%;
    text-align: center;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}


/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .tryout-section {
        padding: 30px 20px;
        gap: 20px;
    }

    .content h1 {
        font-size: 2.2rem;
    }

    .content p {
        font-size: 0.875rem;
        max-width: 100%;
    }

    .image-container {
        max-width: 100%;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .content {
        flex: none;
    }

    .tryout-section {
        flex-direction: column;
        padding: 20px 30px;
        gap: 20px;
    }

    .content h1 {
        font-size: 1.8rem;
    }

    .content p {
        font-size: 0.8rem;
        max-width: 100%;
    }

    .image-container {
        max-width: 100%;
    }
}

@media screen and (min-width: 1024px) {
    .tryout-section {
        padding: 20px 80px;
        gap: 20px;
    }
}

@media screen and (min-width: 1281px) {
    .tryout-section {
        padding: 20px 80px;
        gap: 20px;
    }
}

@media screen and (min-width: 1536px) {
    .tryout-section {
        padding: 20px 80px;
        gap: 20px;
    }
}

@media screen and (min-width: 1845px) {
    .tryout-section {
        padding: 20px 80px;
        gap: 20px;
    }
}

/* =========================
   Keunggulan
========================= */
.why-tryoutpintar {
    background-color: #1144b1;
    color: white;
    padding: 60px 80px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.why-tryoutpintar .subtitle {
    color: #f6cc00;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
    text-align: center;
}

.why-tryoutpintar .title {
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.3;
    max-width: 720px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.why-tryoutpintar .container {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: stretch;
    flex-wrap: wrap;
}

.cards-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    min-width: 250px;
}

.cards-column .card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: white;
    color: #1144b1;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 6px 10px rgb(0 0 0 / 0.1);
    font-size: 0.875rem;
    line-height: 1.4;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cards-column .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgb(0 0 0 / 0.15);
}

.card h3 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #1237b7;
}

.card-progress .leaderboard {
    margin-top: 20px;
}

.card-progress .bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    border-radius: 10px;
    padding: 8px 12px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
}

.bar.yellow {
    background-color: #f6cc00;
}

.bar.red {
    background-color: #ff3567;
}

.bar.blue {
    background-color: #2569f5;
}

.bar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.leaderboard-list ol {
    margin-top: 10px;
    padding-left: 20px;
    color: #1237b7;
    font-weight: 600;
}

.leaderboard-list ol li {
    margin: 6px 0;
    position: relative;
}

.leaderboard-list ol li .number {
    background: #1144b1;
    color: white;
    font-weight: 700;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    display: inline-block;
    margin-right: 8px;
}

.icon-wrapper {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 900px) {
    .why-tryoutpintar {
        padding: 20px 30px;
    }

    .cards-column {
        width: 100%;
        max-width: 500px;
        gap: 8px;
    }

    .why-tryoutpintar .container {
        justify-content: left;
        gap: 6px;
        flex-wrap: nowrap;
    }

}

@media (max-width: 768px) {
    .why-tryoutpintar .container {
        flex-direction: column;
    }

    .why-tryoutpintar .subtitle {
        font-size: 1.2rem;
        text-align: left;
    }

    .why-tryoutpintar .title {
        font-size: 1.2rem;
        text-align: left;
    }
}

@media screen and (min-width: 1024px) {
    .why-tryoutpintar {
        padding: 20px 80px;
    }
}

@media screen and (min-width: 1281px) {
    .why-tryoutpintar {
        padding: 20px 80px;
    }
}

@media screen and (min-width: 1536px) {
    .why-tryoutpintar {
        padding: 20px 80px;
    }
}

@media screen and (min-width: 1845px) {
    .why-tryoutpintar {
        padding: 20px 80px;
    }
}

/* =========================
   Sales
========================= */
.ptdv-section {
    /* max-width: 1024px;
    margin: 0 auto;
    padding: 2rem; */
    font-family: 'Poppins', sans-serif;
    color: #0d3c92;
    text-align: center;
}

.ptdv-group-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    padding: 7rem 1rem;
    /* border-radius: 12px; */
    /* margin-bottom: 4rem; */
}

.ptdv-title {
    font-weight: 700;
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

.ptdv-sub-top {
    color: #f4d20c;
    background-color: #1144b1;
    padding: 5px 30px;
    border-radius: 15px;
    font-size: 20px;
    margin-bottom: 10px;
}

.ptdv-title-wrapper {
    width: fit-content;
    max-width: 80%;
    margin-bottom: 40px;
    margin-left: 50px;
    margin-top: 100px;
}

.ptdv-title-group {
    font-weight: 700;
    font-size: 3.25rem;
    margin: 0;
    padding: 20px 40px;
    color: white;
    background-color: #1144b1;
    border-radius: 8px;
    display: inline-block;
}

.ptdv-header-top {
    font-size: 14px;
}

.ptdv-tryout-container,
.ptdv-video-container {
    display: flex;
    gap: 3.5rem;
    justify-content: left;
    padding-left: 50px;
    /* flex-wrap: wrap; */
    margin-bottom: 2rem;
}

/* Card base */
.ptdv-card {
    width: 360px;
    background-color: #0d3c92;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(13, 60, 146, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    position: relative;
}

.ptdv-card-header {
    background-color: #f4d30c;
    color: #0d3c92;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 0.75rem 1rem;
    width: calc(100% + 40px);
    text-align: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    line-height: 1.2;
    box-sizing: border-box;
    user-select: none;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.ptdv-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 0;
}

.ptdv-card-info {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 1rem;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;

    border-radius: 0 0 8px 8px;
    z-index: 1;
}


.ptdv-label-harga {
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
    color: white;
    opacity: 0.7;
}

.ptdv-harga-lama {
    font-size: 0.9rem;
    color: white;
    opacity: 0.7;
    margin: 0 0 0.15rem 0;
}

.ptdv-harga-lama span {
    text-decoration: line-through;
    text-decoration-color: red;
}

.ptdv-harga-baru {
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 0 0.3rem 0;
}

.ptdv-hemat {
    background-color: #f6cd07;
    color: #0d3c92;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 1rem;
}


.ptdv-btn-daftar {
    background-color: white;
    color: #0d3c92;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 0.25rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.ptdv-btn-daftar:hover {
    background-color: #0d3c92;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {

    .ptdv-tryout-container,
    .ptdv-video-container {
        flex-direction: column;
        padding-left: 30px;
    }

    .ptdv-card {
        width: 90%;
    }

    .ptdv-card-header {
        width: calc(100% + 20px);
        /* Sesuaikan untuk mobile */
        margin-left: -10px;
        margin-right: -10px;
    }

    .ptdv-group-section {
        padding: 0rem 0px;
        background-image: none !important;
        background-size: auto;
        background-repeat: no-repeat;
    }

    .ptdv-title-wrapper {
        margin-top: 0;
        margin-left: 20px;
    }

    .ptdv-title-group {
        font-size: 1.25rem;
        padding: 10px 20px;
    }

    .ptdv-sub-top {
        font-size: 15px;
        margin-top: 30px;
    }

    .ptdv-title {
        font-size: 1.2rem;
    }
}

@media screen and (min-width: 640px) {}

@media screen and (max-width: 900px) {
    .ptdv-group-section {
        padding: 0px 0px;
        background-image: none !important;
        background-size: auto;
        background-repeat: no-repeat;
    }


    .ptdv-tryout-container,
    .ptdv-video-container {
        padding-left: 30px;
    }

    .ptdv-title-wrapper {
        margin-top: 0;
        margin-left: 20px;
    }

    .ptdv-title-group {
        font-size: 1.25rem;
        padding: 10px 20px;
    }

    .ptdv-sub-top {
        font-size: 15px;
        margin-top: 30px;
    }

    .ptdv-title {
        font-size: 1.8rem;
    }

    .ptdv-card {
        width: 320px;
    }
}

@media screen and (min-width: 1024px) {
    .ptdv-group-section {
        padding: 1px 30px;
    }
}

@media screen and (min-width: 1281px) {
    .ptdv-group-section {
        padding: 30px 30px;
    }
}

@media screen and (min-width: 1536px) {
    .ptdv-group-section {
        padding: 128px 64px;
    }
}

@media screen and (min-width: 1845px) {
    .ptdv-group-section {
        padding: 335px 64px;
    }
}

/* =========================
   Alumni
========================= */

.alumni-section {
    background-color: #1144b1;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 60px 80px;
    color: white;
}

.alumni-section__title {
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 40px;
    line-height: 1.3;
}

.alumni-section__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px 20px;
    justify-content: center;
    margin-bottom: 45px;
}

.alumni-section__card {
    overflow: hidden;
    box-sizing: border-box;
    background: transparent;
    cursor: default;
    transition: transform 0.3s ease;
}

.alumni-section__card:hover {
    transform: scale(1.05);
}

.alumni-section__card--military {
    background: linear-gradient(180deg, transparent 50%, #ffdd00 50%);
    border: none;
}

.alumni-section__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    user-select: none;
}

.alumni-section__footer-text {
    margin-bottom: 70px;
}

.alumni-section__footer-title {
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}

.alumni-section__footer-subtitle {
    font-weight: 400;
    font-size: 1rem;
    margin-top: 4px;
    color: white;
}

.alumni-section__btn {
    display: inline-block;
    background-color: #f4d30c;
    border-radius: 8px;
    color: #0039a6;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 12px 40px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.alumni-section__btn:hover {
    background-color: #f4d30c;
}

/* Responsive */
@media (max-width: 900px) {
    .alumni-section__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .alumni-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .alumni-section {
        padding: 60px 30px;
    }

    .alumni-section__title {
        font-size: 1.2rem;
    }

    .alumni-section__footer-title {
        font-size: 1.2rem;
    }
}

@media screen and (min-width: 640px) {
    .alumni-section {
        padding: 40px 80px;
    }
}

/* =========================
   FAQ
========================= */
.faq-section {
    padding: 40px 80px;
    font-family: 'Poppins', sans-serif;
    margin: 0 auto;
    color: #222;
    position: relative;
}

.faq-section__title {
    font-size: 2rem;
    font-weight: 700;
    color: #0039a6;
    /* biru */
    margin-bottom: 24px;
    border-bottom: 2px solid #222;
    padding-bottom: 8px;
    width: max-content;
}

.faq-section__list {
    border-top: 1px solid #ddd;
}

.faq-section__item+.faq-section__item {
    border-top: 1px solid #ddd;
}

.faq-section__question {
    width: 100%;
    padding: 14px 40px 14px 0;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    color: #222;
    cursor: pointer;
    outline-offset: 4px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.faq-section__question:hover {
    color: #0039a6;
}

.faq-section__icon {
    color: #0039a6;
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1;
    user-select: none;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq-section__answer {
    max-height: 0;
    overflow: hidden;
    color: #444;
    font-size: 0.9rem;
    padding: 0 10px 15px 0;
    transition: max-height 0.35s ease;
    white-space: pre-line;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 30px;
    }
}

@media screen and (min-width: 640px) {
    .faq-section {
        padding: 40px 80px;
    }
}

/* =========================
   Sitemap
========================= */

.sitemap-section {
    font-family: 'Poppins', sans-serif;
    padding: 40px 80px;
    margin: 0 auto;
    color: #222;
    background-color: #1144b1;
}

.sitemap-section__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    border-bottom: 3px solid #f4d30c;
    padding-bottom: 8px;
    width: fit-content;
}

.sitemap-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #444;
    color: white;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.sitemap-city-card {
    text-decoration: none;
    display: block;
}

.sitemap-city-item {
    padding: 12px 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 1.1rem;
    font-weight: 600;
    color: #0056b3;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.sitemap-city-icon {
    color: #f4d30c;
    font-size: 1.2rem;
}

.sitemap-city-card:hover .sitemap-city-item {
    background: #eef5ff;
    transform: translateY(-2px);
    cursor: pointer;
}

@media (max-width: 768px) {
    .sitemap-section {
        padding: 60px 30px;
    }
}


/* =========================
   Jenis Ujian
========================= */

.jenis-ujian-section {
    font-family: 'Poppins', sans-serif;
    padding: 40px 80px;
    margin: 0 auto;
    color: #222;
    background-color: #1144b1;
}

.jenis-ujian-section__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    border-bottom: 3px solid #f4d30c;
    padding-bottom: 8px;
    width: fit-content;
}

.jenis-ujian-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #444;
    color: white;
}

.jenis-ujian-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.jenis-ujian-city-card {
    text-decoration: none;
    display: block;
}

.jenis-ujian-city-item {
    padding: 12px 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 0.8rem;
    height: 60px;
    font-weight: 600;
    color: #0056b3;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.jenis-ujian-city-icon {
    color: #f4d30c;
    font-size: 1.2rem;
}

.jenis-ujian-city-card:hover .jenis-ujian-city-item {
    background: #eef5ff;
    transform: translateY(-2px);
    cursor: pointer;
}

@media (max-width: 768px) {
    .jenis-ujian-section {
        padding: 60px 30px;
    }

    .jenis-ujian-section__title {
        font-size: 1.8rem;
    }
}

@media screen and (min-width: 640px) {
    .jenis-ujian-section {
        padding: 40px 80px;
    }
}

/* =========================
   Sub Test
========================= */

.sub-test-section {
    font-family: 'Poppins', sans-serif;
    padding: 40px 80px;
    margin: 0 auto;
    color: #222;
}

.sub-test-section__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: black;
    border-bottom: 3px solid #1144b1;
    padding-bottom: 8px;
    width: fit-content;
}

.sub-test-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #444;
    color: black;
}

.sub-test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.sub-test-city-card {
    text-decoration: none;
    display: block;
}

.sub-test-city-item {
    padding: 12px 16px;
    background-color: #1144b1;
    color: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 60px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.sub-test-city-icon {
    color: #f4d30c;
    font-size: 1.2rem;
}

.sub-test-city-card:hover .sub-test-city-item {
    background: #eef5ff;
    transform: translateY(-2px);
    cursor: pointer;
    color: black;
}

@media (max-width: 768px) {
    .sub-test-section {
        padding: 60px 30px;
    }

    .sub-test-section__title {
        font-size: 1.8rem;
    }

    .sub-test-city-item {
        align-items: center;
    }
}

@media screen and (min-width: 640px) {
    .sub-test-section {
        padding: 40px 80px;
    }
}