/* =========================
   Reset & Body
========================= */
html {
    scroll-behavior: smooth;
}

* {
    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: #f1710b;
    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;
}

.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: #003399;
    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: #f1710b !important;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #f1710b;
    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: #f1710b;
}

.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: #f1710b;
    font-weight: 600;
}

.mobile-dropdown-menu span + span {
    border-top: 1px solid #eee;
}

.mobile-dropdown-menu span:active {
    background: #f1710b;
    color: #fff;
}


/* =========================
   RESPONSIVE
========================= */
@media only screen and (max-width: 767.98px) {

    /* navbar asli tetap tampil */
    .navbar {
        padding: 10px 30px;
    }

    .menu-desktop {
        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: #2c2c2c;
    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: 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;
    padding-top: 60px;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.jumbotron-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 80px;
    gap: 0px;
}

.jumbotron-content {
    flex: 1;
    margin-top: 20px;
}

.jumbotron-logo {
    width: 150px;
    margin-bottom: 10px;
}

.jumbotron-title {
    font-size: 50px;
    letter-spacing: 2px;
    line-height: 4rem;
    font-weight: 600;
    color: #1A3FBB;
    margin-bottom: 10px;
}

.jumbotron-title-kota {
    font-size: 35px;
    line-height: 41px;
    letter-spacing: 0px;
    font-weight: 600;
    color: rgb(26, 63, 187);
    margin-bottom: 10px;
}

.jumbotron-subtitle {
    font-size: 29px;
    font-weight: 600;
    color: #333;
}

.jumbotron-title {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.jumbotron-title::after {
    content: "";
    width: 70px;
    height: 70px;
    background: #FFD54A;
    border-radius: 50%;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    right: -47px;
    z-index: -1;
}

.jumbotron-description p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

.jumbotron-description ul {
    list-style-type: disc;
    padding-left: 20px;
}

.jumbotron-description ul,
.jumbotron-description ol {
    list-style: none;
    padding-left: 1.2rem;
}

.jumbotron-description ul li,
.jumbotron-description ol li {
    position: relative;
    margin-bottom: 8px;
}

.jumbotron-description ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #f1710b;
    border-radius: 50%;
    position: absolute;
    left: -18px;
    top: 6px;
}

.jumbotron-btn {
    display: inline-block;
    background-color: #f1710b;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 20px;
}

.jumbotron-btn:hover {
    background-color: #d35e00;
}

.jumbotron-image {
    flex: 1;
    display: flex;
    justify-content: end;
}

.jumbotron-image img {
    max-width: 80%;
    object-fit: cover;
}

/* mobile */
@media (max-width: 576px) {
    .jumbotron-container {
        flex-direction: column;
        text-align: left;
        padding: 20px;
        gap: 20px;
    }

    .jumbotron-logo {
        width: 120px;
        margin-top: 20px;
    }

    .jumbotron-title {
        font-size: 32px;
        line-height: 3rem;
        letter-spacing: 1px;
        text-align: left;
    }

    .jumbotron-subtitle {
        font-size: 16px;
        text-align: left;
    }

    .jumbotron-description p,
    .jumbotron-description ul li {
        font-size: 0.95rem;
    }

    .jumbotron-image {
        justify-content: flex-end;
        width: 100%;
    }

    .jumbotron-image img {
        max-width: 100%;
    }
}

/* mini tablet */
@media (max-width: 768px) {
    .jumbotron-container {
        text-align: left !important;
        align-items: flex-start !important;
    }

    .jumbotron-container {
        flex-direction: column;
        text-align: center;
        padding: 20px 40px;
        gap: 25px;
    }

    .jumbotron-title {
        font-size: 38px;
    }

    .jumbotron-title-kota {
        font-size: 25px;
        line-height: 31px;
    }

    .jumbotron-subtitle {
        font-size: 16px;
        text-align: left;
    }

    .jumbotron-image img {
        max-width: 100%;
    }
}

/* landscape tablet */
@media (max-width: 992px) {
    .jumbotron-container {
        padding: 20px 30px;
        gap: 30px;
    }

    .jumbotron-title {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 5px;
    }

    .jumbotron-subtitle {
        font-size: 20px;
    }

    .jumbotron-description {
        text-align: left;
    }

    .jumbotron-image img {
        max-width: 100%;
    }
}

/* large desktop */
@media (min-width: 1400px) {
    .jumbotron-title {
        font-size: 60px;
    }

    .jumbotron-subtitle {
        font-size: 32px;
    }

    .jumbotron-image img {
        max-width: 80%;
    }
}

/* =========================
   About LPS
========================= */
.aboutlps-section {
    font-family: 'Poppins', sans-serif;
    padding: 40px 40px;
    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 40px;
}

.aboutlps-bottomtext p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: justify;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .aboutlps-container {
        flex-direction: column-reverse;
        padding: 0 30px;
        text-align: center;
    }

    .aboutlps-bottomtext {
        padding: 0 30px;
    }

    .aboutlps-section {
        padding: 40px 0px;
    }

    .aboutlps-bottomtext {
        text-align: justify;
    }

    .aboutlps-content p,
    .aboutlps-bottomtext p {
        text-align: justify;
    }
}

@media (max-width: 576px) {
    .aboutlps-title {
        font-size: 30px;
    }

    .aboutlps-content p,
    .aboutlps-bottomtext p {
        text-align: justify;
        font-size: 15.2px;
    }
}

/* =========================
   Keunggulan LPS 
========================= */

.keunggulan-section {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 50px 80px;
    background: #ffffff;
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.keunggulan-section::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    top: calc(100% - 200px);
    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: flex;
    gap: 80px;
    justify-content: space-between;
}

.keunggulan-card {
    flex: 1 1 calc(33.33% - 25px);
    background: #fff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: .3s;
    position: relative;
    overflow: hidden;
}

.keunggulan-card:hover {
    transform: translateY(-8px);
}

.keunggulan-icon {
    position: relative;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.keunggulan-icon::after {
    content: '';
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 300px;
    background: #f6f6f6;
    border-radius: 50%;
    z-index: 0;
    opacity: 1;
}

.keunggulan-icon::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    background: #FF7A00;
    border-radius: 50%;
    z-index: 1;
    opacity: 1;
}

.keunggulan-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    z-index: 2;
}

.keunggulan-card-title {
    padding-top: 40px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
    text-align: center;
}

.keunggulan-card-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    text-align: center;
}

.keunggulan-card-desc p {
    padding: 20px 20px 40px 20px;
}

.banner-section {
    font-family: 'Poppins', sans-serif;
    background: #f1710b;
    color: white;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    border-radius: 0;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .keunggulan-wrapper {
        gap: 30px;
    }

    .keunggulan-card {
        flex: 1 1 calc(50% - 30px);
        max-width: 100%;
    }

    .keunggulan-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .keunggulan-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .keunggulan-section {
        padding: 40px 30px;
    }

    .keunggulan-card {
        flex: 1 1 100%;
    }

    .keunggulan-title {
        font-size: 26px;
    }

    .keunggulan-section::after {
        top: calc(100% - 150px);
    }

    .banner-section {
        font-size: 20px;
        padding: 15px 30px;
        text-align: left;
    }

}

@media (max-width: 480px) {
    .keunggulan-title {
        font-size: 24px;
    }

    .keunggulan-section {
        padding: 30px 30px;
    }

    .keunggulan-icon img {
        width: 40px;
        height: 40px;
    }

    .banner-section {
        text-align: left;
        font-size: 16px;
        padding: 15px 30px;
    }
}

/* =========================
   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: 40px 80px;
}

.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(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.program-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-image img {
    width: 100%;
    height: auto;
    display: block;
}

.program-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.program-card {
    position: relative;
}

.program-title-card {
    position: absolute;
    top: 55px;
    left: 10px;
    color: #000000;
    font-weight: 600;
    font-size: 20px;
    width: 50%;
    line-height: 20px;
    padding: 5px 10px;
}

.program-subtitle {
    font-size: 0.95rem;
    color: #333;
    margin: 0;
    height: 60px;
}

.program-desc {
    font-size: 0.85rem;
    color: #666;
}

.program-badges {
    display: flex;
    gap: 5px;
}

.badge {
    font-size: 0.7rem;
    padding: 4px 18px;
    border-radius: 10px;
    font-weight: 500;
}

.badge.online {
    background-color: #003399;
    color: #fff;
}

.badge.offline {
    background-color: #ff6f00;
    color: #fff;
}

.program-link {
    margin-top: 10px;
    text-decoration: none;
    text-align: center;
    padding: 6px 0;
    border: 1px solid #003399;
    border-radius: 20px;
    color: #003399;
    font-weight: 500;
    transition: all 0.3s;
}

.program-link:hover {
    background-color: #003399;
    color: #fff;
}


@media (max-width: 992px) {
    .program-section {
        padding: 40px 30px;
    }

    .program-title-card {
        top: 60px;
        left: 10px;
        font-size: 16px;
        width: 50%;
        line-height: 18px;
        padding: 5px 8px;
    }
}

@media (max-width: 768px) {
    .program-title-card {
        top: 80px;
        left: 10px;
        font-size: 25px;
        width: 60%;
        line-height: 34px;
        padding: 5px 8px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .program-title-card {
        top: 60px;
        left: 10px;
        font-size: 20px;
        width: 50%;
        line-height: 30px;
        padding: 5px 8px;
    }
}

/* =========================
   Sistem Belajar
========================= */
.sb-section {
    padding: 60px 80px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.sb-container {
    margin: 0 auto;
}

.sb-header {
    text-align: center;
    margin-bottom: 40px;
}

.sb-title {
    font-size: 32px;
    font-weight: 700;
    color: #0A3D91;
    margin-bottom: 20px;
    text-align: center;
}

.sb-subtitle {
    font-size: 20px;
    color: #555;
}

.sb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.sb-card {
    padding: 35px;
    background: #fff;
    border-radius: 0 40px 40px 40px;
    min-height: 290px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: .25s ease;
}

.sb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.sb-icon-wrapper {
    background: #ffffff;
    padding: 16px;
    border-radius: 14px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sb-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.sb-card-title {
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    height: 70px;
}

.sb-description {
    font-size: 15px;
    color: #444;
    line-height: 1.55;
}

.sb-card-1 {
    background: #fdeed0;
}

.sb-card-2 {
    background: #e6eefc;
}

.sb-card-3 {
    background: #e5f5ee;
}

.sb-card header {
    display: flex;
    flex-direction: column;
}

@media (max-width: 992px) {
    .sb-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .sb-section {
        padding: 40px 30px;
    }

    .sb-title {
        font-size: 24px;
    }

    .sb-subtitle {
        font-size: 16px;
        color: #555;
    }
}

@media (max-width: 576px) {
    .sb-section {
        padding: 40px 30px;
    }
}

/* =========================
   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: 18px;
    color: #555;
    max-width: 760px;
    margin: 0 auto;
}

/* === Gallery (single image) === */
.gallery {
    display: flex;
    justify-content: center;
}

.gallery-item {
    margin: 0;
    max-width: 1200px;
    width: 100%;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .gb-section {
        padding: 50px 40px;
    }

    .gallery-item {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .gb-section {
        padding: 40px 24px;
    }

    .gb-header h2 {
        font-size: 24px;
    }

    .gb-header p {
        font-size: 16px;
    }

    .gallery-item img {
        border-radius: 14px;
    }
}

/* =========================
   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 #ff6f00;
    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: linear-gradient(135deg, #FF6B00, #FF9E44);
    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: #FF6B00;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.layanan-action-wrapper {
    margin-top: auto;
}

.layanan-action {
    display: block;
    width: 100%;
    background: #003399;
    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: left;
    margin: 0 auto 40px;
    font-size: 20px;
    line-height: 1.6;
}

.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 #ffb27a;
    border-right: 3px solid #ffb27a;
}


table.kurikulum-table thead tr {
    background: #f1710b;
    color: white;
}

table.kurikulum-table th,
table.kurikulum-table td {
    padding: 18px 30px;
    vertical-align: top;
    border-bottom: 1px solid #ffb27a;
}

table.kurikulum-table tbody tr {
    border-bottom: 3px solid #ffb27a;
}


.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: #f1710b;
    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 #ffb27a;
    font-weight: 900;
}

@media (max-width: 768px) {

    .kurikulum-section {
        padding: 0 30px 30px 30px;
    }

    .kurikulum-section h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .kurikulum-section p.subtext {
        font-size: 16px;
        text-align: left;
        margin-bottom: 24px;
    }

    .table-wrapper {
        border-radius: 8px;
        overflow-x: auto;
    }

    table.kurikulum-table {
        min-width: 300px;
        border-left: 2px solid #ffb27a;
        border-right: 2px solid #ffb27a;
    }

    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: 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;
}

.mtlps-grid {
    display: flex;
    gap: 25px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.mtlps-card {
    background: #fff;
    border: 4px solid #ff7a00;
    border-radius: 60px 60px 60px 0;
    padding: 15px;
    transition: transform 0.25s ease;
    position: relative;
    overflow: hidden;
    flex: 0 0 calc((100% - 4 * 25px) / 5);
}

.mtlps-card:hover {
    transform: translateY(-6px);
}

.mtlps-figure {
    margin: 0;
    position: relative;
}

.mtlps-img {
    width: 100%;
    border-radius: 12px;
}

.mtlps-overlay {
    position: absolute;
    bottom: 20px;
    left: 0px;
    right: 20px;
}

.mtlps-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #000;
}

.mtlps-text {
    font-size: 12px;
    color: #000000;
    margin-bottom: 6px;
}

.mtlps-education {
    font-size: 12px;
    font-weight: 600;
    color: black;
}

.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-section {
        padding: 50px 30px;
    }

    .mtlps-title {
        font-size: 26px;
        padding: 8px 70px;
    }

    .mtlps-card {
        flex: 0 0 calc((100% - 2 * 25px) / 2);
    }
}

@media (max-width: 768px) {
    .mtlps-section {
        padding: 40px 30px;
    }

    .mtlps-title {
        font-size: 24px;
        padding: 8px 50px;
    }

    .mtlps-name {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .mtlps-overlay {
        bottom: 30px;
        left: 0px;
        right: 20px;
    }

    .mtlps-text {
        font-size: 13px;
        margin-bottom: 6px;
    }
}

@media (max-width: 576px) {
    .mtlps-section {
        padding: 30px 30px;
    }

    .mtlps-title {
        font-size: 20px;
        padding: 6px 40px;
    }

    .mtlps-name {
        font-size: 24px;
        margin-bottom: 2px;
    }

    .mtlps-overlay {
        bottom: 30px;
        left: 0px;
        right: 20px;
    }

    .mtlps-text {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .mtlps-card {
        flex: 0 0 100%;
    }
}


/* =========================
   Directory List
========================= */
.banner-section-directory {
    font-family: 'Poppins', sans-serif;
    background: #f1710b;
    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: 40px 80px;
}

.city-bg {
    padding: 40px 0px;
    border-radius: 25px;
    border: 4px solid #f2d7a6;
}

.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: #e76f23;
    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: #e76f23;
    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: 40px 80px;
}

.mapel-bg {
    background: #f4faf5;
    padding: 40px 0;
    border-radius: 25px;
    border: 4px solid #d8eadf;
}

.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: #e76f23;
    font-size: 30px;
}

.mapel-link:hover {
    color: #e76f23;
    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: 40px 80px;
    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: #f2f5f9;
    padding: 1rem 1.5rem;
    border-radius: 0px 40px 40px 40px;
    border: 4px solid #ebe1ec;
    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: #ff6600;
    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 {
    color: #f1710b;
    border: 2px solid #f57c00;
    width: fit-content;
    padding: 2px 25px;
    text-align: center;
    border-radius: 5px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.testimonials__grid {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
    transition: transform .5s ease;
}

.testimonial-slide {
    flex: 0 0 340px;
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.4s ease;
}

.testimonial-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 450px;
    position: relative;
}

.testimonial-card__content {
    padding: 2rem 1.8rem 3rem;
    position: relative;
    height: 400px;
}

.testimonial-card__quote {
    font-size: 4rem;
    color: #f57c00;
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}

.testimonial-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
}

.testimonial-card__footer {
    background: #fff7e6;
    padding: 1.5rem 1.8rem;
}

.testimonial-card__profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
}

.testimonial-card__profile img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #f57c00;
}

.testimonial-card__profile strong {
    display: block;
    font-size: 0.95rem;
    color: #f57c00;
}

.testimonial-card__profile span {
    font-size: 0.8rem;
    color: #666;
}

/* =========================
   Slider Navigation (Arrow + Dots)
========================= */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

/* Arrow */
.slider-btn {
    position: static;
    background: #fff;
    border: 1px solid #ddd;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #f57c00;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #f57c00;
    color: #fff;
}

/* Dots */
.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 {
        max-width: 100%;
    }

    .testimonials__grid {
        gap: 10px;
    }

    .testimonial-slide {
        flex: 0 0 100%;
        opacity: 1;
        transform: scale(1);
        display: flex;
        justify-content: center;
    }

    .testimonial-card {
        width: 100%;
        max-width: 350px;
    }

    .testimonial-card__content {
        height: 400px;
        padding: 1.5rem;
    }

    .slider-nav {
        gap: 18px;
        margin-top: 25px;
    }

    .slider-btn {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
}

/* =========================
   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;
    }
}