:root {
    --color-primary: #1244b0;
    --primary-dark: #1b1f5d;
    --color-secondary: #95afe8;
    --third-color: #003399;
    --font-size-title: 32px;
    --font-size-subtitle: 16px;
    --font-size-title-mobile: 20px;
    --font-size-subtitle-mobile: 14px;
    --badge-font-size: 12px;
    --badge-font-size-mobile: 10px;
    --general-font-mobile: 14px;
    --primary-green: #4caf50;
    --primary-green-dark: #09530b;
    --font-mobile-size: 14px;
    --default-font: 'Poppins', sans-serif;
}

/* =========================
   Reset & Body
========================= */
html {
    scroll-behavior: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: white;
    color: #333;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--color-primary);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 10px 80px;
}

.container-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 0;
}

.text-navbar {
    color: white;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    width: 130px;
}

.text-navbar img {
    width: 120px;
}

.parent-btn-navbar {
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-daftar-navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    background: var(--primary-dark);
    border: 2px solid white;
    padding: 10px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    border-radius: 100px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 100%;
}

.text-in-button-daftar {
    text-decoration: none;
}

.text-down-btn {
    color: white;
    font-size: 12px;
    margin-bottom: 0;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    padding: 8px 0;
    display: none;
    z-index: 999;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--color-primary) !important;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: var(--color-primary);
    color: #fff !important;
}

/* show on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* =========================
   MENU DESKTOP (TAMBAHAN)
========================= */
.menu-desktop {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0 20px;
    padding: 0;
}

.menu-desktop li a {
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.menu-desktop li a:hover {
    text-decoration: underline;
}

/* =========================
   BOTTOM NAV (MOBILE)
========================= */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    z-index: 999;
}

.bottom-nav a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #666;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.bottom-nav a i {
    font-size: 18px;
}

.bottom-nav a.active {
    color: #1244b0;
}

.mobile-registrasi {
    position: relative;
}

.mobile-dropdown-menu {
    position: absolute;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    display: none;
    min-width: 200px;
    overflow: hidden;
    z-index: 9999;
}

.mobile-dropdown-menu span {
    display: block;
    padding: 14px 16px;
    text-align: left;
    color: #1244b0;
    font-weight: 600;
}

.mobile-dropdown-menu span+span {
    border-top: 1px solid #eee;
}

.mobile-dropdown-menu span:active {
    background: #1244b0;
    color: #fff;
}

.group-menu {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

/* =========================
   RESPONSIVE
========================= */
@media only screen and (max-width: 767.98px) {

    /* navbar asli tetap tampil */
    .navbar {
        padding: 10px 30px;
    }

    .menu-desktop {
        display: none;
    }

    .group-menu {
        display: none;
    }

    .bottom-nav {
        display: flex;
    }

    .container-navbar {
        flex-direction: row;
        gap: 8px;
    }

    .parent-btn-navbar {
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .btn-daftar-navbar {
        font-size: 12px;
        padding: 10px;
    }

    .text-navbar {
        font-size: 10px;
        text-align: center;
        width: 80px;
    }

    .text-down-btn {
        font-size: 10px;
        text-align: center;
    }

    body {
        padding-bottom: 70px;
    }
}

/* =========================
   Footer
========================= */
.lps-footer {
    background-color: #1b1f5d;
    width: 100%;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.lps-footer-wrap {
    padding: 40px 80px
}

.lps-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap !important;
    gap: 100px;
}

.lps-footer-col {
    flex: 1;
    max-width: 25%;
    margin-bottom: 40px;
}

.lps-footer-title {
    font-size: var(--font-size-title);
    font-weight: 700;
    margin-bottom: 18px;
}

.lps-footer-subtitle {
    font-size: var(--font-size-subtitle);
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.lps-footer-subtitle-second {
    font-size: var(--font-size-subtitle);
    font-weight: 700;
    margin-bottom: 5px;
}

.lps-footer-text {
    max-width: 380px;
    font-size: 15px;
    line-height: 1.6rem;
    /* text-align: justify; */
}

.lps-footer-sub-text {
    max-width: 380px;
    font-size: 15px;
    padding-top: 10px;
    line-height: 1.6rem;
    /* text-align: justify; */
}

.lps-footer-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.lps-footer-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 5px;
    line-height: 1.4;
    font-size: 15px;
}

/* DOT */
.lps-footer-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}

.lps-footer-wa {
    list-style: none;
    padding: 0;
    margin-top: 35px;
}

.lps-footer-wa li {
    margin-bottom: 3px;
}

.lps-footer-wa a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.lps-footer-wa a:hover {
    opacity: 1;
    transform: translateX(4px);
}

.lps-footer-wa i {
    font-size: 18px;
}

.lps-footer-logo img {
    width: 250px;
    margin-top: 20px;
}

.lps-footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.lps-footer-bottom-text {
    font-size: 15px;
    text-align: justify;
}

@media (max-width: 991px) {
    .lps-footer-wrap {
        padding: 40px 40px;
    }

    .lps-footer-content {
        flex-wrap: wrap !important;
        gap: 20px;
        padding-top: 20px;
    }

    .lps-footer-content>* {
        width: calc(50% - 20px);
    }

    .lps-footer-col {
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .lps-footer-content {
        flex-direction: column !important;
        gap: 0;
        padding-top: 20px;
    }

    .lps-footer-content>* {
        width: 100% !important;
    }

    .lps-footer-col {
        max-width: 100%;
    }

    .lps-footer-wrap {
        padding: 30px;
    }

    .lps-footer-logo img {
        width: 230px;
    }
}

/* ============================= */
/* LPS WHATSAPP FLOATING CTA */
/* ============================= */
.lps-wa-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
}

/* BUTTON */
.lps-wa-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-green);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.lps-wa-toggle-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .3);
}

/* PANEL */
.lps-wa-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all .25s ease;
}

.lps-wa-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* HEADER */
.lps-wa-panel-header {
    background: #25D366;
    color: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lps-wa-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* LIST */
.lps-wa-list {
    list-style: none;
    margin: 0;
    padding: 10px;
    max-height: 280px;
    overflow-y: auto;
}

.lps-wa-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #1f2937;
    transition: background .2s ease;
}

.lps-wa-item:hover {
    background: #f0fdf4;
}

/* ICON */
.lps-wa-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* TEXT */
.lps-wa-info strong {
    display: block;
    font-size: 0.9rem;
}

.lps-wa-info small {
    font-size: 0.75rem;
    color: #6b7280;
}

/* MOBILE */
@media (max-width: 480px) {
    .lps-wa-panel {
        width: 280px;
    }

    .lps-wa-toggle {
        bottom: 80px;
    }
}

/* =========================
   JUMBOTRON
========================= */
.jumbotron {
    background: var(--color-primary);
    color: #ffffff;
    padding: 150px 80px 80px 80px;
    text-align: center;
}

.jumbotron-inner {
    margin: 0 auto;
}

.jumbotron-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
}

.jumbotron-subtitle {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 18px;
}

.jumbotron-desc {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 auto 40px;
    opacity: 0.95;
}

/* TAGS */
.jumbotron-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.jumbotron-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #ffffff;
    color: #0a1c8f;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    cursor: default;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.jumbotron-tag i {
    transition: transform 0.25s ease;
    font-size: 14px;
}

.jumbotron-tag:hover {
    background: #0a1c8f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 28, 143, 0.25);
}

.jumbotron-tag:hover i {
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .jumbotron {
        padding: 100px 30px 0px 30px;
    }

    .jumbotron-title {
        font-size: 28px;
        text-align: left;
    }

    .jumbotron-subtitle {
        font-size: 24px;
        text-align: left;
    }

    .jumbotron-desc {
        font-size: 15px;
        text-align: left;
        margin: 0 0 10px 0;
    }

    .jumbotron-tags {
        justify-content: left;
        gap: 10px;
    }

    .jumbotron-tag {
        font-size: 10px;
    }

    .jumbotron-tag i {
        font-size: 10px;
    }
}

/* =========================
   PROGRAM SECTION
========================= */

.program-section {
    background: var(--color-primary, #0a1c8f);
    padding: 30px 80px;
    color: #ffffff;
}

/* GRID */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

/* CARD */
.program-card {
    position: relative;
    background: #ffffff;
    color: #0a1c8f;
    border-radius: 20px;
    padding: 72px 24px 32px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    transition: transform .3s ease, box-shadow .3s ease;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
    color: white;
    background-color: var(--color-secondary);
}

.program-icon {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: #0a1c8f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* .program-icon::after {
    content: "";
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 320px;
    background: #f3f3f3;
    border-radius: 50%;
    z-index: -1;
} */

/* ICON FONT AWESOME */
.program-icon i {
    font-size: 36px;
    color: #ffffff;
    padding-top: 40px;
}

/* =========================
   CONTENT
========================= */

.program-title {
    font-size: var(--font-size-title);
    font-weight: 700;
    margin-bottom: 10px;
}

.program-badge {
    font-size: 18px;
    font-weight: 700;
    padding-top: 20px;
}

.program-desc {
    font-size: var(--general-font-mobile);
    line-height: 1.7;
    height: 160px;
    margin-bottom: 22px;
}

/* BUTTON */
.program-btn {
    display: inline-block;
    background: #4caf50;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .25s ease, transform .25s ease;
}

.program-btn:hover {
    background: #43a047;
    transform: translateY(-2px);
}

.program-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.program-price-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 14px 26px;
    border: 2px solid #ffffff;
    border-radius: 14px;
    color: #ffffff;
    margin: 24px auto 30px;
    background: transparent;
}

/* LABEL */
.program-price-label {
    font-size: 20px;
    opacity: 0.85;
    margin: 0;
}

/* HARGA */
.program-price {
    margin: 4px 0 0;
    font-size: 100px;
    font-weight: 800;
    line-height: 1.1;
}

.program-price span {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
}


.program-main-btn {
    display: inline-block;
    background: #4caf50;
    color: #ffffff;
    padding: 16px 34px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s ease, transform .25s ease;
}

.program-main-btn:hover {
    background: #43a047;
    transform: translateY(-2px);
}

.program-note {
    font-size: 13px;
    margin-top: 14px;
    opacity: .9;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

@media (max-width: 768px) {
    .program-section {
        padding: 30px 30px;
    }

    .program-title {
        font-size: var(--font-size-title-mobile);
        font-weight: 700;
        margin-bottom: 10px;
    }

    .program-grid {
        margin-bottom: 0;
    }

    .program-card {
        padding-top: 64px;
    }

    .program-price {
        font-size: 34px;
    }

    .program-main-btn {
        font-size: 16px;
    }
}

/* =========================
   Universities
========================= */
.universities-section {
    background: var(--color-primary);
    padding: 30px 80px;
    text-align: center;
}

.universities-title {
    color: #ffffff;
    font-size: var(--font-size-title);
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.universities-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
    gap: 20px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.universities-logo-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

.universities-logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.universities-logo-item img {
    max-width: 72px;
    max-height: 72px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .universities-section {
        padding: 30px 30px;
    }

    .universities-title {
        font-size: var(--font-size-title-mobile);
        text-align: left;
    }

    .universities-logo-item img {
        max-width: 60px;
        max-height: 60px;
    }
}

/* =========================
   Alumni Testimoni
========================= */
.alumni-testimoni {
    background: var(--color-primary);
    padding: 30px 80px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.alumni-header {
    text-align: center;
    margin: 0 auto 48px;
}

.alumni-header h2 {
    font-size: var(--font-size-title);
    font-weight: 800;
    margin-bottom: 10px;
}

.alumni-subtitle {
    font-size: var(--font-size-subtitle);
    opacity: .9;
    margin-bottom: 26px;
}

.alumni-counter {
    display: inline-block;
    background: #ffffff;
    color: #0a1c8f;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
}

.alumni-counter strong {
    font-size: 40px;
    display: block;
}

.alumni-counter span {
    font-size: 13px;
    font-weight: 500;
}

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 0 auto;
}

.alumni-card {
    background: #ffffff;
    color: #333;
    border-radius: 22px;
    padding: 28px 28px 32px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .2);
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}

.alumni-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .3);
}

.alumni-quote-icon {
    position: absolute;
    top: 22px;
    right: 26px;
    font-size: 36px;
    color: var(--primary-dark);
}

.alumni-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.alumni-profile img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.alumni-meta h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.alumni-meta span {
    font-size: var(--badge-font-size);
    color: white;
    background-color: var(--primary-dark);
    padding: 3px 10px;
    border-radius: 10px;
}

.alumni-rating {
    color: var(--primary-dark);
    font-size: 25px;
    margin-bottom: 12px;
    letter-spacing: 5px;
}

.alumni-desc {
    font-size: var(--general-font-mobile);
    line-height: 1.7;
    margin: 0;
}

.alumni-cta {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.alumni-cta p {
    font-size: var(--font-size-title);
    font-weight: 700;
    margin-bottom: 16px;
}

.alumni-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4caf50;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s ease, transform .25s ease;
}

.alumni-btn:hover {
    background: #43a047;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .alumni-grid {
        grid-template-columns: 1fr;
    }

    .alumni-cta {
        margin-top: 20px;
    }

    .alumni-header {
        text-align: left;
    }

    .alumni-header h2,
    .alumni-cta p {
        font-size: var(--font-size-title-mobile);
    }

    .alumni-testimoni {
        padding: 60px 30px;
    }

    .alumni-card {
        padding: 24px;
    }

    .alumni-btn {
        font-size: 16px;
        padding: 12px 24px;
    }

    .alumni-counter {
        display: block;
    }

    .alumni-counter strong {
        font-size: 25px;
        display: block;
    }

    .alumni-meta span {
        font-size: var(--badge-font-size-mobile);
    }
}

/* =========================
   Custom Button
========================= */

.btn-daftar {
    display: inline-flex;
    align-items: center;
    background-color: white;
    border-radius: 50px;
    text-decoration: none;
    padding: 5px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-height: 50px;
    width: auto;
}

.btn-daftar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-arrow {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--primary-green);
    transition: transform 0.3s ease;
    border: 2px solid var(--primary-green);
}

.btn-daftar:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-text {
    background-color: var(--primary-green);
    color: white;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.btn-daftar:hover .btn-text {
    background-color: var(--primary-green);
}

/* =========================
   Activities
========================= */
.activity-section {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.activity-header {
    text-align: center;
    color: var(--third-color);
    margin: 40px 0;
}

.activity-title {
    font-size: var(--font-size-title);
    font-weight: 700;
    margin-bottom: 6px;
}

.activity-subtitle {
    font-size: var(--font-size-subtitle);
    opacity: .9;
}

.activity-wrapper {
    padding: 30px 80px;
    background: var(--color-primary);
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.activity-divider {
    border-bottom: 5px solid white;
}

.activity-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
    overflow: hidden;
}

.activity-card-title {
    background: var(--third-color);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 999px;
    text-align: center;
    margin-bottom: 14px;
}

.activity-media {
    border-radius: 16px;
    overflow: hidden;
    /* border: 4px solid #0a1c8f; */
}

.activity-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.activity-arrow {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    background: #0a1c8f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .activity-grid {
        grid-template-columns: 2fr;
    }

    .activity-wrapper {
        padding: 30px 30px;
    }

    .activity-border-buttom {
        padding: 0px 30px;
    }
}

@media (max-width: 768px) {
    .activity-grid {
        grid-template-columns: 1fr;
    }

    .activity-title {
        font-size: var(--font-size-title-mobile);
    }

    .activity-card-title {
        font-size: var(--badge-font-size-mobile);
    }

    .activity-header {
        text-align: left;
        margin: 30px;
    }
}

/* =========================
   Benefit
========================= */
.benefit-section {
    background: var(--color-primary, #081c8c);
    padding: 30px 80px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.benefit-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin: 0 auto;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: var(--font-size-title);
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.3;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    margin-bottom: 14px;
    line-height: 1.5;
}

.benefit-item i {
    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
}

.benefit-image {
    flex: 0 0 360px;
    position: relative;
}

.benefit-image img {
    max-width: 550px;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .benefit-inner {
        flex-direction: column;
        text-align: left;
    }

    .benefit-image {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .benefit-section {
        padding: 30px 30px;
    }

    .benefit-image img {
        width: 100%;
        display: block;
    }

    .benefit-title {
        font-size: var(--font-size-title-mobile);
    }

    .benefit-item {
        font-size: var(--general-font-mobile);
    }
}

/* =========================
   Tutors
========================= */
.tutor-section {
    background: var(--color-primary);
    padding: 30px 80px;
    color: #fff;
}

/* .tutor-header {
    max-width: 900px;
} */

.tutor-title {
    font-size: var(--font-size-title);
    font-weight: 700;
    margin-bottom: 8px;
}

.tutor-subtitle {
    font-size: var(--font-size-subtitle);
    margin-bottom: 20px;
}

.tutor-divider {
    height: 5px;
    width: 100%;
    background: white;
}

.tutor-grid {
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.tutor-card {
    background: #fff;
    color: #1a1a1a;
    border-radius: 16px;
    padding: 16px;
    text-align: left;
    line-height: 1.5rem;
}

.tutor-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.tutor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tutor-name {
    font-size: 20px;
    font-weight: 700;
}

.tutor-prodi {
    font-size: 18px;
    font-weight: 700;
    color: var(--third-color);
}

.tutor-university {
    font-size: 15px;
    color: black;
}

.tutor-footer-text {
    margin-top: 30px;
    font-size: var(--general-font-mobile);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .tutor-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .tutor-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .tutor-section {
        padding: 30px 30px;
    }

    .tutor-title {
        font-size: var(--font-size-title-mobile);
    }

    .tutor-subtitle {
        font-size: var(--font-size-subtitle-mobile);
    }

    .tutor-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tutor-card {
        line-height: 0.8rem;
        padding: 10px;
    }

    .tutor-name {
        font-size: 15px;
    }

    .tutor-prodi {
        font-size: 11px;
    }

    .tutor-university {
        font-size: 10px;
    }
}

/* =========================
   Alumni Success
========================= */
.alumni-success-section {
    background: var(--color-primary);
    padding: 30px 80px;

    display: flex;
    flex-direction: column;
    align-items: center;
}


.alumni-success-section-header {
    text-align: center;
}

.alumni-success-section-header h2 {
    font-size: var(--font-size-title);
    font-weight: 700;
    background-color: white;
    color: var(--third-color);
    border-radius: 40px;
    display: inline-block;
    padding: 5px 40px;
}

.alumni-success-grid {
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.alumni-success-item {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.alumni-success-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 992px) {
    .alumni-success-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 768px) {
    .alumni-success-section {
        padding: 30px 30px;
    }

    .alumni-success-grid {
        margin: 30px 0;
    }

    .alumni-success-section-header h2 {
        font-size: var(--font-size-title-mobile);
    }
}

/* =========================
   Program Detail
========================= */
.program-detail-section {
    background: var(--color-primary);
    padding: 30px 80px;
    color: #fff;
}

#program-detail-section {
    scroll-margin-top: 100px;
}

.program-detail-header {
    text-align: center;
    margin-bottom: 56px;
}

.program-detail-title {
    font-size: var(--font-size-title);
    font-weight: 800;
    margin-bottom: 6px;
}

.program-detail-subtitle {
    font-size: var(--font-size-subtitle);
}

.program-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.program-detail-card {
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--third-color);
    color: white;
}

.program-detail-card:hover {
    background-color: var(--color-secondary);
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
    color: white;
}

.program-detail-header-card {
    display: flex;
    flex-direction: column;
    height: 80px;
}

.program-detail-name {
    font-size: 25px;
    font-weight: 800;
    text-align: center;
}

.program-detail-batch {
    font-size: 13px;
    text-align: center;
    margin-bottom: 18px;
}

.program-detail-info {
    margin-bottom: 15px;
    font-size: var(--general-font-mobile);
    border: 2px solid rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 18px;
}

.program-detail-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.program-detail-info p p,
.program-detail-info p div {
    display: inline;
    margin: 0;
}

.program-detail-info p br {
    display: none;
}

.program-detail-info ul {
    text-align: left;
}

.program-detail-info i {
    margin-top: 2px;
}

.program-detail-info .periode-program {
    padding-left: 25px;
    text-align: left;
}

.program-detail-info .jadwal-program {
    padding-left: 25px;
    text-align: left;
}

.program-detail-info .jadwal-program ul {
    padding-left: 25px;
}

.program-detail-info .jam-belajar-program {
    padding-left: 25px;
}

.program-detail-info .jam-belajar-program ul {
    padding-left: 25px;
}

.program-detail-benefit {
    margin-top: 12px;
    flex-grow: 1;
}

.program-detail-benefit h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.program-detail-benefit ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-detail-benefit li {
    font-size: 13px;
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.program-detail-benefit i {
    color: white;
    font-size: 20px;
}

.program-detail-price {
    text-align: center;
    margin-top: 24px;
}

.program-detail-price .price {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    display: block;
}

.program-detail-price .price-note {
    font-size: 12px;
    opacity: 0.85;
}

.program-detail-btn {
    margin-top: 18px;
    background: #22c55e;
    color: #ffffff;
    text-align: center;
    padding: 14px 0;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.program-detail-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .program-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .program-detail-section {
        padding: 30px 30px;
    }

    .program-detail-header {
        margin-bottom: 25px;
        text-align: left;
    }

    .program-detail-title {
        font-size: var(--font-size-title-mobile);
    }

    .program-detail-subtitle {
        font-size: var(--font-size-subtitle-mobile);
    }

    .program-detail-grid {
        grid-template-columns: 1fr;
    }

    .program-detail-header-card {
        height: 60px;
    }

    .program-detail-name {
        font-size: 20px;
    }
}

/* =========================
   REGISTRATION FLOW
========================= */
.registration-flow {
    color: #fff;
}


.registration-flow-header {
    text-align: center;
    margin: 15px 0;
    color: var(--third-color);
}

.registration-flow-header h2 {
    font-size: var(--font-size-title);
    font-weight: 700;
    margin-bottom: 12px;
}

.registration-flow-header p {
    font-size: var(--font-size-subtitle);
    opacity: 0.9;
}

.flow-container {
    background: var(--color-primary);
    padding: 30px 80px;
}

.alur-pendaftaran-promo {
    background-color: white;
    color: var(--third-color);
    border-radius: 30px;
    margin: 30px 0;
    padding: 30px;
    text-align: center;
}

.alur-pendaftaran-promo h3 {
    font-size: var(--font-size-title);
}

.text-promo-pendaftaran {
    font-size: 25px;
    margin-bottom: 20px;
}

.kuota-info {
    font-size: 16px;
    margin-top: 20px;
}

.cta-alur-pendaftaran {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background-color: var(--primary-green);
    color: #fff;
    text-decoration: none;

    padding: 12px 24px;
    border-radius: 15px;

    font-size: 20px;
    font-weight: 600;

    cursor: pointer;
    overflow: hidden;

    transition: all 0.3s ease;
}

.cta-alur-pendaftaran i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cta-alur-pendaftaran:hover {
    background-color: var(--primary-green-dark);
}

.cta-alur-pendaftaran:hover i {
    transform: translateX(4px);
}

.flow-grid {
    list-style: none;
    padding: 50px 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px 64px;
}

/* card */
.flow-card {
    flex: 0 0 calc(33.333% - 64px);
}

.flow-card {
    background: #0b2aa5;
    border: 3px solid #ffffff;
    border-radius: 26px;
    padding: 56px 28px 32px;
    position: relative;
    color: #fff;
}

.flow-icon-wrapper {
    position: absolute;
    top: -32px;
    left: 28px;
    width: 64px;
    height: 64px;
    background: #0b2aa5;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-icon-wrapper i {
    font-size: 26px;
    color: #fff;
}

.flow-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.flow-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
}

.flow-arrow {
    position: absolute;
    right: -44px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: #fff;
}

.flow-card:nth-child(3) .flow-arrow,
.flow-card:last-child .flow-arrow {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .flow-arrow {
        display: none;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .registration-flow-header {
        text-align: left;
        padding: 15px 30px;
    }

    .registration-flow-header h2 {
        font-size: var(--font-size-title-mobile);
        font-weight: 700;
        margin-bottom: 12px;
    }

    .registration-flow-header p {
        font-size: var(--font-size-subtitle-mobile);
        opacity: 0.9;
    }

    .flow-container {
        padding: 30px 30px;
    }

    .alur-pendaftaran-promo h3 {
        font-size: var(--font-size-title-mobile);
    }

    .text-promo-pendaftaran {
        font-size: var(--font-size-subtitle-mobile);
        margin-bottom: 20px;
    }

    .kuota-info {
        font-size: var(--font-size-subtitle-mobile);
    }

    .cta-alur-pendaftaran {
        font-size: 14px;
    }

    .flow-grid {
        padding: 32px 0;
        gap: 50px;
    }

    .flow-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* =========================
   FAQ
========================= */
.faq-section {
    background: var(--color-primary);
    color: #fff;
    padding: 30px 80px;
    font-family: var(--default-font);
}

#faq-section {
    scroll-margin-top: 100px;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header h2 {
    font-size: var(--font-size-title);
    font-weight: 800;
    margin-bottom: 8px;
}

.faq-subtitle {
    font-size: var(--font-size-subtitle);
}

.faq-list {
    margin: 0 auto 64px;
}

.faq-item {
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    margin-bottom: 16px;
    background: var(--third-color);
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 22px;
    transition: transform 0.25s ease;
    border: 2px solid white;
    border-radius: 50%;
    padding: 0px 10px;
}

details[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 16px 20px 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 20px;
}

.faq-cta {
    text-align: center;
}

.faq-cta h3 {
    font-size: var(--font-size-title);
    font-weight: 700;
    margin-bottom: 8px;
}

.faq-cta p {
    font-size: var(--font-size-subtitle);
}

.btn-whatsapp-faq {
    display: inline-block;
    margin-top: 16px;
    background: var(--primary-green);
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}

.btn-whatsapp-faq:hover {
    background-color: var(--primary-green-dark);
}

.btn-whatsapp-faq i {
    font-size: 20px;
    padding-right: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .faq-section {
        padding: 30px 30px;
    }

    .faq-header h2 {
        font-size: var(--font-size-title-mobile);
        text-align: left;
    }

    .faq-subtitle {
        font-size: var(--font-size-subtitle-mobile);
        text-align: left;
    }

    .faq-item {
        font-size: var(--font-mobile-size);
    }

    .faq-cta h3 {
        font-size: var(--font-size-title-mobile);
        text-align: left;
    }

    .faq-cta p {
        font-size: var(--font-size-subtitle-mobile);
        text-align: left;
    }

    .btn-whatsapp-faq {
        display: block;
    }
}

/* =========================
   Registration
========================= */
.registration-section {
    background: var(--color-primary);
    color: #fff;
    padding: 150px 0 80px 0;
    font-family: var(--default-font);
}

.registration-header {
    text-align: center;
    margin-bottom: 48px;
}

.registration-header h1 {
    font-size: var(--font-size-title);
}

.registration-header p {
    font-size: var(--font-size-subtitle);
}

.registration-form {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.registration-form h2 {
    margin-top: 32px;
    font-size: 1.2rem;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
    padding: 12px 14px;
    border-radius: 10px;
    border: none;
    font-size: 0.95rem;
    font-family: var(--default-font);
}

.registration-form textarea {
    min-height: 90px;
}

.btn-submit-registration {
    margin-top: 24px;
    background: var(--primary-green);
    color: #fff;
    padding: 14px;
    border-radius: 999px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: var(--default-font);
}

.alert-success {
    background: rgba(37, 211, 102, 0.2);
    border: 1px solid var(--primary-green);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .registration-section {
        padding: 110px 30px 50px 30px;
    }

    .registration-header {
        text-align: left;
        margin-bottom: 0px;
    }

    .registration-header h1 {
        font-size: var(--font-size-title-mobile);
    }

    .registration-header p {
        font-size: var(--font-size-subtitle-mobile);
    }
}

/* =========================
   City
========================= */
.coverage-section {
    padding: 30px 80px;
    background: var(--color-primary);
}

.coverage-header {
    text-align: center;
    margin-bottom: 3rem;
}

.coverage-header h2 {
    font-size: var(--font-size-title);
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
}

.coverage-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-secondary);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.coverage-header p {
    font-size: var(--font-size-subtitle);
    color: white;
    font-weight: 500;
}

.coverage-list {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
}

.coverage-item {
    background: linear-gradient(135deg, #003399, #1244b0);
    border-radius: 1rem;
    padding: 10px 5px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid white;
}

.coverage-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: rgba(16, 185, 129, 0.1);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    z-index: 0;
}

.coverage-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.coverage-item a::before {
    font-size: 1.25rem;
}

.coverage-item [itemprop="name"] {
    display: block;
}

.coverage-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.coverage-item:hover::before {
    top: -30%;
    left: -30%;
    background: rgba(16, 185, 129, 0.2);
}

.coverage-item a:hover {
    color: var(--third-color);
}

@media (max-width: 768px) {
    .coverage-section {
        padding: 30px 30px;
    }

    .coverage-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .coverage-header {
        text-align: left;
        margin-bottom: 1rem;
    }

    .coverage-header h2 {
        font-size: var(--font-size-title-mobile);
    }

    .coverage-header h2::after {
        margin: 5px 0;
    }

    .coverage-header p {
        font-size: var(--font-size-subtitle-mobile);
    }

    .coverage-list {
        gap: 12px;
    }

    .coverage-item a {
        font-size: 10px;
    }
}

@media (max-width: 640px) {
    .coverage-list {
        grid-template-columns: repeat(3, 1fr);
    }
}