/* =========================
   Reset & Body
========================= */
:root {
    --color-primary: #0C60FF;
    --color-darker: #00559F;
    --secondary-blue: #3077ff;
    --third--blue: #E4EDFF;
    --primary-yellow: #FFF0E4;
    --primary-orange: #FF6E00;
    --primary-green: #22c55e;
    --white-custom: #F6F7FC;
    --font-size-title: 28px;
    --font-size-subtitle: 16px;
    --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: 15px;
    --general-font-desktop: 20px;
    --font-mobile-size: 14px;
    --default-font: 'Poppins', sans-serif;
    --dark-black: black;
    --mobile-padding: 30px 30px;
    --desktop-padding: 30px 80px;
    --navbar-height: 80px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 220px;
}

* {
    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-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    font-family: 'Poppins', sans-serif;
}

.topbar {
    background: var(--secondary-blue);
    color: white;
    font-size: 13px;
    padding: 15px 80px;
}

.topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 20px;
}

.topbar-left i {
    margin-right: 6px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar-right a {
    color: white;
    font-size: 14px;
    text-decoration: none;
}

.divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.5);
}

.btn-topbar {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-primary);
    padding: 12px 80px;
}

.container-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.text-navbar {
    width: 130px;
}

.text-navbar img {
    width: 75px;
}

.menu-desktop {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    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;
}

.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;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.hamburger {
    display: none;
    font-size: 22px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.35s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 12px 14px;
    border-radius: 10px;
    transition: 0.2s;
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu a i {
    width: 20px;
    text-align: center;
    font-size: 16px;
    color: var(--color-primary);
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.mobile-menu.active a:nth-child(1) {
    transition-delay: 0.05s;
}

.mobile-menu.active a:nth-child(2) {
    transition-delay: 0.1s;
}

.mobile-menu.active a:nth-child(3) {
    transition-delay: 0.15s;
}

.mobile-menu.active a:nth-child(4) {
    transition-delay: 0.2s;
}

.mobile-menu.active a:nth-child(5) {
    transition-delay: 0.25s;
}

.mobile-menu.active a:nth-child(6) {
    transition-delay: 0.3s;
}

.mobile-menu a:active {
    background: var(--color-primary);
    color: white;
}

.mobile-menu a:active i {
    color: white;
}

.mobile-submenu {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.mobile-submenu span {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-submenu a {
    margin-top: 6px;
}

.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: var(--color-primary);
}

.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: center;
    color: var(--color-primary);
    font-weight: 600;
}

.mobile-dropdown-menu span+span {
    border-top: 1px solid #eee;
}

.mobile-dropdown-menu span:active {
    background: var(--color-primary);
    color: #fff;
}

body {
    padding-top: 110px;
}

html,
body {
    overflow-x: hidden;
}

@media only screen and (max-width: 767.98px) {
    .topbar {
        padding: 10px 30px;
        font-size: 10px;
    }

    .topbar-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .topbar-left,
    .topbar-right {
        flex-wrap: wrap;
        gap: 10px;
    }

    .navbar {
        padding: 10px 30px;
    }

    .menu-desktop {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .container-navbar {
        justify-content: space-between;
    }

    .text-navbar {
        width: auto;
    }

    .text-navbar img {
        width: 60px;
    }

    .bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }
}

/* =========================
   Footer
========================= */
.lps-footer {
    background-color: var(--color-primary);
    width: 100%;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.lps-footer-wrap {
    padding: var(--desktop-padding);
}

.lps-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap !important;
    gap: 40px;
}

.lps-footer-col {
    flex: 1;
    /* max-width: 100%; */
    margin-bottom: 40px;
}

.lps-footer-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
}

.lps-footer-subtitle {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.lps-footer-text {
    max-width: 380px;
    font-size: 15px;
    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: 0;
    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 {
    line-height: 1.8rem;
    list-style: none;
}

.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;
    }
}

/* =========================
   Jumbotron
========================= */
.jumbotron-section {
    font-family: 'Poppins', sans-serif;
    background: var(--color-primary);
    padding: 30px 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jumbotron-container {
    margin: auto;
}

.jumbotron-content {
    color: white;
    max-width: 800px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.jumbotron-content-kota {
    color: white;
    max-width: 1200px;
    margin: auto;
}

.jumbotron-title, .jumbotron-title-pt-2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.jumbotron-title-kota {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.jumbotron-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 10px;
}

.jumbotron-description {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.jumbotron-description p {
    margin-bottom: 10px;
}

.jumbotron-description ul,
.jumbotron-description ol {
    list-style: none;
    padding-left: 0;
}

.jumbotron-description ul li {
    position: relative;
    margin-bottom: 6px;
}

.jumbotron-description ul li::before {
    content: "•";
    color: #ff7a00;
    margin-right: 6px;
}

.jumbotron-btn {
    display: inline-block;
    background: #ff7a00;
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin: 30px;
    transition: 0.3s;
}

.jumbotron-btn:hover {
    background: #e96b00;
}

.jumbotron-image {
    margin-top: 40px;
    position: relative;
    text-align: center;
}

.jumbotron-image img {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
}

.jumbotron-section::after {
    content: "";
    position: absolute;
    bottom: -250px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 768px) {
    .jumbotron-title {
        font-size: var(--font-size-title-mobile);
        text-align: left;
    }

    .jumbotron-title-pt-2 {
        font-size: var(--font-size-title-mobile);
    }

    .jumbotron-subtitle {
        font-size: var(--font-size-subtitle-mobile);
        text-align: justify;
    }

    .jumbotron-description {
        font-size: var(--font-size-subtitle-mobile);
        text-align: justify;
    }

    .jumbotron-image img {
        max-width: 100%;
    }

    .jumbotron-title-kota {
        font-size: 18px;
        text-align: left;
    }
}


/* =========================
   About LPS
========================= */
.aboutlps-section {
    font-family: 'Poppins', sans-serif;
    padding: var(--desktop-padding);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aboutlps-container {
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.aboutlps-image-wrapper {
    position: relative;
    flex: 1;
}

.aboutlps-main-image {
    width: 100%;
    max-width: 550px;
    position: relative;
    z-index: 2;
}

.aboutlps-content {
    flex: 1;
}

.aboutlps-content header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aboutlps-logo {
    width: 220px;
    /* margin-bottom: 10px; */
}

.aboutlps-title {
    font-size: 25px;
    font-weight: 600;
    color: #00038d;
}

.aboutlps-subtitle {
    font-size: 20px;
    color: #00038d;
    font-weight: 500;
}

.aboutlps-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    margin-top: 10px;
    line-height: 1.7;
    text-align: justify;
}

.aboutlps-bottomtext {
    width: 100%;
    margin-top: 25px;
    padding: 0 0px;
}

.aboutlps-bottomtext p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: justify;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .aboutlps-container {
        flex-direction: column-reverse;
        padding: 0 0px;
        text-align: center;
    }

    .aboutlps-bottomtext {
        padding: 0 0px;
    }

    .aboutlps-section {
        padding: var(--mobile-padding);
    }

    .aboutlps-bottomtext {
        text-align: justify;
    }

    .aboutlps-content p,
    .aboutlps-bottomtext p {
        text-align: justify;
    }
}

@media (max-width: 576px) {
    .aboutlps-title {
        font-size: var(--font-size-title-mobile);
    }

    .aboutlps-content p,
    .aboutlps-bottomtext p {
        text-align: justify;
        font-size: var(--general-font-mobile);
    }
}

/* =========================
   Keunggulan LPS 
========================= */
.keunggulan-section {
    font-family: 'Poppins', sans-serif;
    padding: 60px 80px;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

/* .keunggulan-section::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    top: 55%;
    bottom: 0;
    background: #F9E28A;
    z-index: -1;
} */

.keunggulan-title {
    font-size: 32px;
    font-weight: 700;
    color: #0A3D91;
    margin-bottom: 40px;
    text-align: center;
}

.keunggulan-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.keunggulan-card {
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.keunggulan-card:hover {
    transform: translateY(-6px);
}

.keunggulan-card:nth-child(1),
.keunggulan-card:nth-child(2),
.keunggulan-card:nth-child(5),
.keunggulan-card:nth-child(6),
.keunggulan-card:nth-child(9),
.keunggulan-card:nth-child(10) {
    background: var(--third--blue);
}

.keunggulan-card:nth-child(3),
.keunggulan-card:nth-child(4),
.keunggulan-card:nth-child(7),
.keunggulan-card:nth-child(8),
.keunggulan-card:nth-child(11),
.keunggulan-card:nth-child(12) {
    background: var(--primary-yellow);
}

.keunggulan-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
}

/* .keunggulan-card:nth-child(1) .keunggulan-icon {
    background: #2F6BFF;
}

.keunggulan-card:nth-child(2) .keunggulan-icon {
    background: #00A3FF;
}

.keunggulan-card:nth-child(3) .keunggulan-icon {
    background: #FF7A00;
}

.keunggulan-card:nth-child(4) .keunggulan-icon {
    background: #FF5C00;
} */

.keunggulan-icon img {
    width: 100%;
    height: 100%;
}

.keunggulan-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f1f1f;
    text-align: left;
}

.keunggulan-card-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    text-align: left;
}

.keunggulan-card-desc p {
    margin: 0;
}

@media (max-width: 768px) {
    .keunggulan-wrapper {
        grid-template-columns: 1fr;
    }

    .keunggulan-section {
        padding: var(--mobile-padding);
    }

    .keunggulan-title {
        font-size: 28px;
    }
}

/* BANNER */
.banner-wrapper {
    width: 100%;
    background: var(--color-primary);
}

.banner-section {
    font-family: 'Poppins', sans-serif;
    background: var(--color-primary);
    color: #ffffff;

    width: 100%;
    display: block;

    padding: 20px 20px;
    text-align: center;

    margin: 0;
    position: relative;
    z-index: 1;
}

.banner-section h2 {
    font-size: var(--font-size-title);
    font-weight: 600;
}

.banner-section p {
    font-size: var(--font-size-subtitle);
    padding: 0 20%;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-section {
        padding: 15px 20px;
        text-align: center;
    }

    .banner-section h2 {
        font-size: var(--font-size-title-mobile);
        font-weight: 600;
    }

    .banner-section p {
        font-size: var(--font-size-subtitle-mobile);
        padding: 0 0%;
    }
}

/* =========================
   2nd Keunggulan
========================= */
.second-keunggulan-section {
    font-family: 'Poppins', sans-serif;
    padding: 50px 80px;
}

.second-keunggulan-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.second-keunggulan-content {
    flex: 1 1 500px;
}

.second-keunggulan-title {
    font-size: 32px;
    font-weight: 700;
    color: #0A3D91;
}

.second-keunggulan-subtitle {
    font-size: 30px;
    font-weight: 500;
    color: #0A3D91;
    margin-bottom: 20px;
}

.second-keunggulan-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.second-keunggulan-image {
    flex: 0 1 400px;
    text-align: center;
}

.second-keunggulan-image img {
    max-width: 100%;
}

@media (max-width: 768px) {
    .second-keunggulan-section {
        padding: 30px 30px;
    }

    .second-keunggulan-container {
        flex-direction: column;
        gap: 20px;
    }

    .second-keunggulan-title {
        font-size: 22px;
    }

    .second-keunggulan-subtitle {
        font-size: 1rem;
        padding-top: 10px;
    }

    .second-keunggulan-content {
        flex: 1 1 0px;
    }

    .second-keunggulan-image {
        flex: 0 1 20px;
        text-align: center;
    }
}

/* =========================
   Fitur Program
========================= */
.program-section {
    font-family: 'Poppins', sans-serif;
    padding: var(--desktop-padding);
}

.program-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.program-description {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.program-card {
    background: linear-gradient(135deg, #0b5cff, #1a73ff);
    border-radius: 24px;
    padding: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.program-badge-top {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.badge {
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
}

.badge.online {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(6px);
}

.badge.offline {
    background: rgba(255, 140, 0, 0.9);
    color: #fff;
}

.program-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.program-left {
    flex: 1;
}

.program-title-card {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.program-subtitle {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.program-desc {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 20px;
}

.program-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff7a00;
    color: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    width: fit-content;
    font-size: 12px;
}

.program-link:hover {
    background: #ff5f00;
}

.program-right {
    flex: 0 0 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.program-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:768px) {
    .program-section {
        padding: var(--mobile-padding);
    }

    .program-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    /* .program-wrapper {
        flex-direction: column;
        text-align: center;
    } */

    .program-right {
        margin-top: 15px;
    }

    .program-link {
        margin: 0 auto;
    }

    .program-wrapper> :first-child {
        flex: 3;
    }

    .program-wrapper> :last-child {
        flex: 1;
    }
}

/* =========================
   Sistem Belajar
========================= */
.sb-section {
    padding: var(--desktop-padding);
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.sb-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.sb-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.sb-row.reverse {
    flex-direction: row-reverse;
}

.sb-image-box {
    flex: 1;
    display: flex;
    justify-content: center;
}

.sb-image {
    width: 400px;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.sb-badge {
    position: absolute;
    top: -14px;
    left: 14px;
    background: #ff7a00;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 8px;
    letter-spacing: .5px;
}

.sb-text-box {
    flex: 1;
}

.sb-title {
    font-size: var(--font-size-title);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.sb-description {
    font-size: 20px;
    line-height: 1.7;
    color: #444;
    font-weight: 500;
    text-align: justify;
}

.sb-row:nth-child(2) .sb-title {
    color: var(--color-primary);
}

@media(max-width:992px) {
    .sb-section {
        padding: var(--mobile-padding);
    }

    .sb-title {
        font-size: var(--font-size-title-mobile);
    }

    .sb-description {
        font-size: var(--general-font-mobile);
    }

    .sb-row {
        flex-direction: column;
        text-align: left;
    }

    .sb-row.reverse {
        flex-direction: column;
    }

    .sb-image-frame {
        max-width: 100%;
    }
}

/* =========================
   Galeri Belajar
========================= */
.gb-section {
    padding: 60px 80px;
    font-family: 'Poppins', sans-serif;
}

.gb-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.gb-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0A3D91;
    margin-bottom: 16px;
}

.gb-header p {
    font-size: var(--general-font-desktop);
    color: #555;
    max-width: 760px;
    margin: 0 auto;
}

/* === Gallery (single image) === */
.gb-section {
    padding: 60px 80px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.gb-header p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 18px;
    color: #444;
}

.gb-slider {
    overflow: hidden;
}

.gb-track {
    display: flex;
    gap: 25px;
    transition: transform 0.4s ease;
}

.gb-slide {
    flex: 0 0 calc((100% - 3 * 25px) / 4);
}

.gb-card {
    margin: 0;
    text-align: left;
}

.gb-card img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.gb-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

.gb-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.gb-btn {
    background: #fff;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.gb-dots {
    display: flex;
    gap: 8px;
}

.gb-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
}

.gb-dots button.active {
    background: #ff7a00;
}

@media (max-width: 1024px) {
    .gb-section {
        padding: 50px 40px;
    }

    .gb-slide {
        flex: 0 0 calc((100% - 25px) / 2);
    }
}

@media (max-width: 768px) {
    .gb-section {
        padding: 40px 24px;
    }

    .gb-slide {
        flex: 0 0 100%;
    }

    .gb-header p {
        font-size: var(--general-font-mobile);
    }
}

/* =========================
   Layanan
========================= */
.layanan-container {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 0 auto;
    padding: 100px 80px 50px 80px;
    font-family: 'Poppins', sans-serif;
}

.layanan-card {
    background: white;
    border: 3px solid var(--color-primary);
    border-radius: 20px;
    padding: 1.5rem;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.layanan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.layanan-header {
    position: absolute;
    top: -30px;
    left: 50%;
    width: 230px;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 15px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.layanan-description {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.layanan-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
    line-height: 14px;
}

.layanan-list li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
}

.layanan-list li::before {
    content: "•";
    color: var(--color-primary);
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.layanan-action-wrapper {
    margin-top: auto;
}

.layanan-action {
    display: block;
    width: 100%;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    padding: 10px;
    text-align: center;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.layanan-action:hover {
    background: white;
    color: black;
}

@media (max-width: 768px) {
    .layanan-container {
        flex-direction: column;
        align-items: stretch;
    }

    .layanan-card {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .layanan-container {
        padding: 80px 30px 50px 30px;
    }
}

/* =========================
   Kurikulum
========================= */

.kurikulum-section {
    padding: 20px 80px;
    font-family: 'Poppins', sans-serif;
    margin: auto;
}

.kurikulum-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0A3D91;
    margin-bottom: 20px;
    text-align: center;
}

.kurikulum-section p.subtext {
    text-align: center;
    font-size: var(--general-font-desktop);
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 20px;
}

.table-wrapper {
    overflow-x: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: white;
}

table.kurikulum-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    border-left: 3px solid var(--secondary-blue);
    border-right: 3px solid var(--secondary-blue);
}


table.kurikulum-table thead tr {
    background: var(--secondary-blue);
    color: white;
}

table.kurikulum-table th,
table.kurikulum-table td {
    padding: 18px 30px;
    vertical-align: top;
    border-bottom: 1px solid var(--secondary-blue);
}

table.kurikulum-table tbody tr {
    border-bottom: 3px solid var(--secondary-blue);
}


.program-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.program-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 6px;
    font-size: 1rem;
}

.program-list li::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--secondary-blue);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6px;
}

table.kurikulum-table td:first-child,
table.kurikulum-table th:first-child {
    border-right: 2px solid var(--secondary-blue);
    font-weight: 900;
}

@media (max-width: 768px) {

    .kurikulum-section {
        padding: var(--mobile-padding);
    }

    .kurikulum-section h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .kurikulum-section p.subtext {
        font-size: var(--general-font-mobile);
        text-align: left;
        margin-bottom: 24px;
    }

    .table-wrapper {
        border-radius: 8px;
        overflow-x: auto;
    }

    table.kurikulum-table {
        min-width: 300px;
        border-left: 2px solid var(--secondary-blue);
        border-right: 2px solid var(--secondary-blue);
    }

    table.kurikulum-table th,
    table.kurikulum-table td {
        padding: 12px 16px;
        font-size: 12px;
    }

    table.kurikulum-table td:first-child,
    table.kurikulum-table th:first-child {
        font-size: 12px;
        font-weight: 800;
    }

    .program-list li {
        padding-left: 22px;
        font-size: 12px;
    }

    .program-list li::before {
        width: 10px;
        height: 10px;
        top: 5px;
    }
}

/* =========================
   Tutor Profile
========================= */
.tutor-profile-section {
    font-family: 'Poppins', sans-serif;
    padding: 10px 80px;
    display: flex;
    justify-content: center;
}

.tutor-profile-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.tutor-profile-illustration img,
.tutor-profile-logos img {
    width: 100%;
    height: auto;
}

.tutor-profile-logos {
    margin-top: 40px;
}

.tutor-profile-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0B3D91;
}

.tutor-profile-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

@media (max-width: 768px) {

    .tutor-profile-section {
        padding: 20px 30px;
        text-align: center;
    }

    .tutor-profile-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tutor-profile-illustration {
        order: 1;
    }

    .tutor-profile-illustration img {
        max-width: 300px;
        margin: 0 auto;
    }

    .tutor-profile-content {
        order: 2;
    }

    .tutor-profile-content h2 {
        font-size: 24px;
        text-align: left;
    }

    .tutor-profile-content p {
        font-size: 15px;
        line-height: 1.6;
        text-align: left;
    }

    .tutor-profile-logos {
        order: 3;
        margin-top: 20px;
    }

    .tutor-profile-logos img {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {

    .tutor-profile-content h2 {
        font-size: 20px;
    }

    .tutor-profile-content p {
        font-size: 14px;
    }

    .tutor-profile-logos img {
        max-width: 100%;
    }

    .tutor-profile-illustration img {
        max-width: 250px;
    }
}

/* =========================
    Master Teacher
========================= */
.mtlps-section {
    padding: 0px 80px 60px 80px;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
}

.mtlps-title {
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    color: white;
    background-color: #f1710b;
    padding: 10px 100px;
    margin: 0 auto 40px;
    width: fit-content;
    border-radius: 35px;
}

.mtlps-container {
    margin: 0 auto;
}

.mtlps-slider-container {
    position: relative;
}

.master-teacher-desc-section {
    font-size: var(--general-font-desktop);
    margin: 30px 0;
    text-align: center;
    font-weight: 500;
}

.master-teacher-desc-section p {
    padding: 20px 0;
}

.mtlps-grid {
    display: flex;
    gap: 25px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.mtlps-card {
    /* background: #fff; */
    /* border-radius: 30px; */
    overflow: hidden;
    transition: transform 0.25s ease;
    flex: 0 0 calc((100% - 4 * 25px) / 5);
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);  */
}

.mtlps-card:hover {
    transform: translateY(-6px);
}

.mtlps-figure {
    margin: 0;
}

.mtlps-img {
    width: 100%;
    display: block;
    border-radius: 30px;
}

.mtlps-content {
    padding: 0px 0px 0px;
}

.mtlps-name {
    background: #ff7a00;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 0 20px 0 20px;
    display: inline-block;
    margin-top: -35px;
    top: -10px;
    position: relative;
}

.mtlps-text {
    font-size: 13px;
    color: #333;
    margin-top: 5px;
    padding: 0 5px 0 0px;
    line-height: 1.4;
}

.slider-btn-mt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: 1px solid rgba(241, 113, 11, 0.9);
    color: rgba(241, 113, 11, 0.9);
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    font-size: 18px;
}

.slider-btn-mt:hover {
    background-color: rgba(241, 113, 11, 0.9);
    color: #fff;
}

.slider-btn-mt.prev {
    left: -25px;
}

.slider-btn-mt.next {
    right: -25px;
}

@media (max-width: 900px) {

    .mtlps-card {
        flex: 0 0 calc((100% - 2 * 25px) / 2);
    }
}

@media (max-width: 768px) {
    .mtlps-section {
        padding: var(--mobile-padding);
    }

    .mtlps-title {
        font-size: 24px;
        padding: 8px 50px;
    }

    .mtlps-name {
        font-size: 15px;
    }

    .mtlps-text {
        font-size: 13px;
    }

    .master-teacher-desc-section {
        font-size: var(--general-font-mobile);
        margin: 0px 0;
    }

    .master-teacher-desc-section p {
        padding: 0 0 20px 0;
    }
}

@media (max-width: 576px) {

    .mtlps-title {
        font-size: 20px;
        padding: 6px 40px;
    }

    .mtlps-card {
        flex: 0 0 100%;
    }

    .mtlps-name {
        font-size: 14px;
    }

    .mtlps-text {
        font-size: 12px;
    }
}

/* =========================
   Directory List
========================= */
.banner-section-directory {
    font-family: 'Poppins', sans-serif;
    background: var(--color-primary);
    color: white;
    padding: 15px 80px;
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    border-radius: 0;
    text-align: left;
    width: 100%;
    margin: 0 auto;
}

.city-section {
    font-family: 'Poppins', sans-serif;
    padding: var(--desktop-padding);
}

.city-bg {
    padding: 40px 0px;
    border-radius: 25px;
    background-color: var(--third--blue);
    border: 4px solid var(--color-primary);
}

.city-container {
    width: 100%;
    margin: 0 auto;
}

.city-grid {
    display: grid;
    column-gap: 40px;
    justify-items: center;
}

.city-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: max-content;
    text-align: left;
}

.city-item {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 14px;
}

.city-item::before {
    content: "•";
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 30px;
    line-height: 1;
}

.city-link {
    text-decoration: none;
    color: #444;
    transition: .2s ease;
}

.city-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.city-desktop {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.city-tablet {
    display: none;
    grid-template-columns: repeat(3, 1fr);
}

.city-mobile {
    display: none;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 991px) {
    .city-section {
        padding: 30px 30px;
    }

    .city-bg {
        padding: 30px 20px;
    }

    .city-desktop {
        display: none;
    }

    .city-tablet {
        display: grid;
    }

    .city-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .city-section {
        padding: 25px 30px;
    }

    .city-bg {
        padding: 25px 20px;
    }

    .city-desktop {
        display: none;
    }

    .city-tablet {
        display: none;
    }

    .city-mobile {
        display: grid;
    }

    .city-item::before {
        font-size: 25px;
        top: -6px;
    }

    .banner-section-directory {
        font-size: 20px;
        padding: 15px 30px;
        text-align: left;
    }
}

@media (max-width: 420px) {

    .city-item {
        position: relative;
        padding-left: 15px;
        font-size: 10px;
        margin-bottom: 10px;
    }

    .banner-section-directory {
        text-align: left;
        font-size: 16px;
        padding: 15px 30px;
    }
}

/* MAPELS */
.mapel-section {
    font-family: 'Poppins', sans-serif;
    padding: var(--desktop-padding);
}

.mapel-bg {
    background: var(--third--blue);
    padding: 40px 0;
    border-radius: 25px;
    border: 4px solid var(--color-primary);
}

.mapel-container {
    width: 100%;
    margin: 0 auto;
}

.mapel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px 20px;
    padding: 0 0 0 30px;
    line-height: 25px;
    list-style: none;
    margin: 0;
}

.mapel-item {
    text-align: left;
    font-size: 14px;
}

.mapel-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #444;
    padding-left: 10px;
}

.mapel-link::before {
    content: "•";
    color: var(--color-primary);
    font-size: 30px;
}

.mapel-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

@media (max-width: 991px) {
    .mapel-section {
        padding: 30px 30px;
    }

    .mapel-bg {
        padding: 30px 0px;
    }

    .mapel-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 4px 0px;
        padding: 0 0 0 0px;
        line-height: 13px;
    }
}

@media (max-width: 768px) {
    .mapel-section {
        padding: 25px 30px;
    }

    .mapel-bg {
        padding: 25px 0px;
    }

    .mapel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mapel-item::before {
        font-size: 25px;
        top: 0;
    }
}

@media (max-width: 420px) {
    .mapel-item {
        padding-left: 15px;
        font-size: 10px;
        margin-bottom: 10px;
    }
}

/* PROGRAMS */
.program-list-section {
    font-family: 'Poppins', sans-serif;
    padding: var(--desktop-padding);
    background-color: #f9f9fc;
}

.desktop-version {
    display: block;
}

.mobile-version {
    display: none;
}

.program-list-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.program-list-column {
    flex: 1 1 200px;
    background: var(--third--blue);
    padding: 1rem 1.5rem;
    border-radius: 0px 40px 40px 40px;
    border: 4px solid var(--color-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.program-list-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-list-column ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
    font-size: 14px;
    color: #333;
}

.program-list-column ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--color-primary);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .desktop-version {
        display: none;
    }

    .mobile-version {
        display: block;
    }

    .mobile-version .program-list-section {
        padding: 20px 30px;
    }

    .program-list-section {
        padding: 40px 30px;
        background-color: #f9f9fc;
    }

    .mobile-version .program-list-column ul {
        column-count: 2;
        column-gap: 1.5rem;
    }

    .mobile-version .program-list-column ul li {
        break-inside: avoid;
        font-size: 10px;
    }
}

/* =========================
   LIST SEKOLAH
========================= */
/* --- BASE STYLE (punyamu tetap sama) --- */

.daftar-sekolah {
    font-family: 'Poppins', sans-serif;
    padding: 60px 80px;
    background: #f9f9f9;
}

.daftar-sekolah .container {
    margin: 0 auto;
}

.school-category {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.school-list-header {
    font-size: 24px;
    font-weight: 700;
    color: #1a237e;
    position: relative;
    padding-left: 20px;
    flex: 1;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.school-list-header h3 {
    padding: 10px;
}

.school-list-header::before {
    content: "";
    width: 5px;
    height: 100%;
    background-color: #ff6f00;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 3px;
}

.school-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 3;
}

.school-logos img {
    width: 120px;
    height: auto;
    object-fit: contain;
    transition: 0.3s ease;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.school-logos img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {

    .daftar-sekolah {
        padding: 30px 30px;
    }

    .school-category {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .school-list-header {
        width: 100%;
        font-size: 20px;
    }

    .school-logos {
        justify-content: flex-start;
        gap: 12px;
    }

    .school-logos img {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .school-list-header {
        font-size: 12px;
    }

    .school-logos img {
        width: 40px;
    }
}

/* =========================
   Siswa Lolos
========================= */
.success-story-lolos-ptn-lps {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    padding: 50px 80px;
}

.ss-lps-container {
    display: flex;
    gap: 25px;
    margin: auto;
    flex-wrap: wrap;
    width: 100%;
}

.ss-lps-card-1,
.ss-lps-card-2 {
    background: #fff;
    border: 4px solid #ff7a00;
    padding: 0 35px 30px;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.ss-lps-card-1 {
    flex: 1;
    min-width: 320px;
}

.ss-lps-card-2 {
    flex: 2;
    min-width: 320px;
}

.ss-lps-card-1 header,
.ss-lps-card-2 header {
    background: #fce9b1;
    padding: 25px 35px;
    margin: 0 -35px 25px;
}

.ss-lps-card-1 header h2,
.ss-lps-card-2 header h2 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.ss-lps-card-1 header h2 span,
.ss-lps-card-2 header h2 span {
    color: #c77c35;
    font-weight: 700;
}

.ss-lps-card-1 ul,
.ss-lps-card-2 ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.ss-lps-card-1 ul li,
.ss-lps-card-2 ul li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
    position: relative;
    padding-left: 20px;
    white-space: normal;
    display: block;
}

.ss-lps-card-1 ul li::before,
.ss-lps-card-2 ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #f1710b;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
}

.list-2-col {
    display: flex;
    gap: 40px;
}

.list-2-col ul {
    flex: 1;
}

@media (max-width: 768px) {

    .success-story-lolos-ptn-lps {
        padding: 30px 30px;
    }

    .ss-lps-container {
        flex-direction: column;
    }

    .ss-lps-card-1 {
        margin-bottom: 20px;
    }

    .list-2-col {
        flex-direction: column;
        gap: 0px;
    }
}

/* =========================
   Alumni section
========================= */

.alumni-section {
    padding: 50px 80px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.alumni-title {
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    color: white;
    background-color: #f1710b;
    padding: 10px 100px;
    margin: 0 auto 40px;
    width: fit-content;
    border-radius: 35px;
}

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
}

.alumni-card {
    overflow: hidden;
    border-radius: 14px;
    position: relative;
}

.alumni-figure {
    position: relative;
    margin: 0;
}

.alumni-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.alumni-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border-radius: 0 0 14px 14px;
}

.alumni-name {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px;
}

.alumni-univ,
.alumni-major {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .alumni-section {
        padding: 30px 30px;
    }

    .alumni-grid {
        grid-template-columns: 1fr;
    }

    .alumni-img {
        height: 100%;
    }

    .alumni-title {
        font-size: 16px;
        padding: 10px 10px;
    }
}

/* =========================
   Footer CTA
========================= */
.footer-cta-contact-section {
    padding: 50px 80px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.footer-cta-contact-container {
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT */
.footer-cta-contact-header h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0B3D91;
}

.footer-cta-btn-primary {
    display: inline-block;
    background: #ff7a00;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 25px;
}

.footer-cta-contact-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

/* CONTACT LIST */
.footer-cta-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: grid;
    gap: 15px;
}

.contact-item {
    width: 60%;
}

.footer-cta-contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #0b2c6d;
    padding: 14px 18px;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.footer-cta-contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.footer-cta-wa-icon {
    width: 36px;
    height: 36px;
    background: #25d366;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
}

.footer-cta-contact-text {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.footer-cta-contact-text small {
    opacity: .85;
    font-size: 12px;
}

/* FOOTER */
.footer-cta-contact-footer {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* RIGHT VISUAL */
.footer-cta-contact-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.footer-cta-contact-visual img {
    position: relative;
    z-index: 2;
}

.footer-cta-visual-shape {
    position: absolute;
    width: 360px;
    height: 360px;
    background: #ff7a00;
    border-radius: 50% 50% 50% 0;
    right: 20px;
    top: 40px;
    z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-cta-contact-section {
        padding: 30px 30px;
        background: #ffffff;
    }

    .footer-cta-contact-container {
        grid-template-columns: 1fr;
    }

    .footer-cta-contact-link {
        justify-content: left;
    }

    .footer-cta-contact-visual {
        margin-top: 40px;
    }

    .contact-item {
        width: 100%;
    }
}

/* =========================
   Testimonials
========================= */
.testimonials {
    padding: 30px 80px;
    background: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials__header h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0B3D91;
    margin-top: 20px;
}

.testimonials__header p {
    width: fit-content;
    font-weight: 500;
    font-size: var(--general-font-desktop);
    padding: 2px 25px;
    border-radius: 5px;
    margin: 0 auto;
}

.testimonial-slider {
    overflow: hidden;
}

.testimonials__grid {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    transition: transform .5s ease;
}

.testimonial-slide {
    flex: 0 0 300px;
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.4s ease;
}

.testimonial-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card {
    border-radius: 22px;
    overflow: hidden;
    border: 4px solid #ff7a00;
}

.testimonial-card img {
    width: 100%;
    display: block;
    border-radius: 18px;
}

.testimonial-gap {
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon {
    width: 45px;
    height: 45px;
    background: #2f80ed;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.slider-btn {
    background: #fff;
    border: 1px solid #ddd;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    color: #f57c00;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #f57c00;
    color: #fff;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
}

.slider-dots button.active {
    background: #f57c00;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 30px 16px;
    }

    .testimonial-slider {
        overflow: hidden;
    }

    .testimonials__header p {
        font-size: var(--general-font-mobile);
    }

    .testimonials__grid {
        gap: 0;
        justify-content: center;
    }

    .testimonial-slide {
        flex: 0 0 100%;
        opacity: 1;
        transform: scale(1);
        display: flex;
        justify-content: center;
    }

    .testimonial-gap {
        display: none;
    }

    .testimonial-card {
        max-width: 320px;
        width: 100%;
    }
}

/* =========================
   Success Stories
========================= */
.success-story {
    background: #f6f7fb;
    padding: 50px 60px;
    font-family: 'Poppins', sans-serif;
}

.ss-slider-container {
    position: relative;
    overflow: hidden;
}

.ss-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.ss-grid::-webkit-scrollbar {
    display: none;
}

.ss-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.ss-card {
    background: #eeeeee;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex: 0 0 calc((100% - 2rem*2)/3);
    scroll-snap-align: start;
}

.ss-card-top {
    background: #ff7a00;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    padding: 1.25rem 1rem;
}

.ss-card-body {
    position: relative;
    padding: 40px 50px;
}

.ss-avatar {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 140px;
    height: 140px;
}

.ss-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ss-content {
    background: #ffffff;
    border: 2px solid #ff7a00;
    border-radius: 0 0 100px 0;
    padding: 18px;
    height: 480px;
}

.ss-header-content {
    margin: 0 0 20px 100px;
}

.ss-content h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.ss-school {
    font-size: 8px;
    color: #6b7280;
}

.ss-stars {
    color: #ffb703;
    font-size: 20px;
}

.ss-badge {
    display: inline-block;
    background: #ff7a00;
    color: #fff;
    font-size: 8px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 999px;
    margin-top: 5px;
}

.ss-story {
    font-size: .85rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

.slider-btn-ss {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: 1px solid rgba(241, 113, 11, 0.9);
    color: rgba(241, 113, 11, 0.9);
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    font-size: 18px;
}

.slider-btn-ss:hover {
    background-color: rgba(241, 113, 11, 0.9);
    color: #fff;
}

.slider-btn-ss.prev {
    left: 0;
}

.slider-btn-ss.next {
    right: 0;
}

@media (max-width: 1024px) {
    .ss-card {
        flex: 0 0 calc((100% - 2rem)/2);
    }
}

@media (max-width: 768px) {
    .success-story {
        padding: 30px 20px;
    }

    .ss-card {
        flex: 0 0 100%;
    }

    .ss-card-top {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .ss-card-body {
        padding: 40px 40px 40px 40px;
    }

    .ss-avatar {
        width: 110px;
        height: 110px;
    }

    .ss-header-content {
        margin: 0px 0px 15px 85px;
        text-align: left;
    }

    .ss-stars {
        font-size: 18px;
    }

    .ss-content {
        height: auto;
        min-height: unset;
        border-radius: 0 0 60px 0;
        padding: 20px;
    }

    .ss-story {
        font-size: 0.8rem;
        text-align: justify;
    }
}

/* ============================= */
/* 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: #25D366;
    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;
    }
}

/* =========================
   REGISTRASI FORM STYLE
========================= */
.reg-section {
    background: #fafafa;
    padding: 60px 20px;
}

.reg-container {
    max-width: 760px;
    margin: auto;
}

.reg-header {
    background: #f1710b;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px 8px 0 0;
}

.reg-header h1 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.reg-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 50px;
}

.reg-card {
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.reg-card h2 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.reg-card label {
    font-size: 13px;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
    color: #444;
}

.reg-card input,
.reg-card select,
.reg-card textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 13px;
    margin-bottom: 12px;
}

.reg-card textarea {
    min-height: 80px;
    resize: vertical;
}

.reg-card input:focus,
.reg-card select:focus,
.reg-card textarea:focus {
    outline: none;
    border-color: #f1710b;
}

.reg-footer {
    margin-top: 10px;
}

.reg-footer button {
    width: 100%;
    background: #f1710b;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}

.reg-footer button:hover {
    background: #d86208;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .reg-section {
        padding: 40px 14px;
    }

    .reg-card {
        padding: 18px;
    }

    .reg-form {
        padding-top: 50px;
    }
}