html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: "Roboto Slab", serif;
    overflow-x: hidden;
}

textarea, input {
    font-family: "Roboto Slab", serif;
}

a {
    text-decoration: none;
}

p {
    margin: 0px;
    padding: 0px;
}

.shadow {
    box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.12), 0px 4px 8px 0px rgba(0, 0, 0, 0.02), 0px 2px 4px 0px rgba(0, 0, 0, 0.01);
}

.btn-primary {
    background-color: #dca141;
    color: #fff;
    padding: 10px 30px;
    border-radius: 10px;
}

.heading-section {
    display: flex;
    justify-content: start;
    align-items: center;
}

    .heading-section .line {
        width: 6px;
        height: 40px;
        background-color: #dca141;
        border-radius: 10px;
    }

    .heading-section .title {
        margin-left: 20px;
        color: #ADB2D4;
        font-size: 20px;
    }

.bold-style {
    color: #dca141;
    font-weight: bold;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 80%;
    height: 40px;
    padding: 5px 15px;
    border: none;
    border-radius: 10px;
    margin-top: 10px;
}

.form-input-2 {
    width: 80%;
    height: 100px;
    padding: 15px;
    border: none;
    border-radius: 10px;
    margin-top: 10px;
}

.swiper {
    padding: 40px 0;
    width: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    height: auto;
    box-sizing: border-box;
}




/* Header */

.header-section {
    width: 100%;
    min-height: 800px;
    background-image: url(../img/bg-occitta.jpg);
    background-size: cover;
}

    .header-section .bg-header {
        width: 100%;
        min-height: 800px;
        background-color: #000;
        opacity: 0.5;
        position: absolute;
        z-index: 2;
    }

    .header-section .header-content {
        position: relative;
        z-index: 2;
        width: 90%;
        margin: auto;
    }

        .header-section .header-content .heading {
            color: #fff;
            padding-top: 220px;
            font-size: 56px;
            font-weight: bold;
        }

        .header-section .header-content .subheading {
            color: #e6e6e6;
            margin-top: 20px;
            margin-bottom: 30px;
        }

@media (max-width: 1024px) {
    .header-section .header-content .heading {
        font-size: 42px;
        padding-top: 180px;
    }

    .header-section .header-content .subheading {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .header-section {
        min-height: 600px;
        background-position: center;
    }

        .header-section .bg-header {
            min-height: 600px;
        }

        .header-section .header-content .heading {
            font-size: 32px;
            padding-top: 150px;
            text-align: center;
        }

        .header-section .header-content .subheading {
            font-size: 14px;
            text-align: center;
        }

        .header-section .header-content {
            text-align: center;
        }

        .header-section .btn-primary {
            font-size: 14px;
            padding: 10px 20px;
        }
}

@media (max-width: 480px) {
    .header-section {
        min-height: 500px;
    }

        .header-section .bg-header {
            min-height: 500px;
        }

        .header-section .header-content .heading {
            font-size: 24px;
            padding-top: 120px;
        }

        .header-section .header-content .subheading {
            font-size: 13px;
        }
}


@media(max-width: 768px) {
    .hamburger {
        display: block;
    }

    .navbar .navbar-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .navbar-content .navbar-menu {
        display: none;
        /* Ganti sesuai kebutuhan */
    }
}
/* End Header */

/* Navbar */
.navbar {
    width: 100%;
    height: 80px;
    background-color: transparent;
    position: fixed;
    top: 0px;
    z-index: 10;
}

    .navbar .navbar-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 90%;
        margin: auto;
        height: 80px;
    }
        .navbar .navbar-content .img-navbar .image-web {
            width: 40% !important;
        }

        .navbar .navbar-content .navbar-menu ul {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .navbar .navbar-content .navbar-menu ul li {
                margin: 20px;
            }

                .navbar .navbar-content .navbar-menu ul li .nav-item {
                    font-size: 16px;
                    /* color: #ADB2D4; */
                    color: #fff;
                    font-weight: normal;
                }

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #ADB2D4;
}

.bg-dark {
    position: fixed;
    z-index: 20;
    background-color: #000;
    width: 100%;
    height: 100vh;
    opacity: 0.5;
    display: none;
}

.navbar-popup {
    position: fixed;
    top: 0px;
    right: -1400px;
    z-index: 400;
    width: 70%;
    margin: auto;
    height: 100%;
    background-color: #fff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 20px;
}


    .navbar-popup .navbar-menu ul {
        list-style: none;
        margin: 0px;
        padding: 0px;
    }

        .navbar-popup .navbar-menu ul li {
            margin: 20px;
        }

            .navbar-popup .navbar-menu ul li .nav-item-popup {
                color: #ADB2D4;
            }


@media(max-width: 768px) {

    

    .hamburger {
        display: block;
    }

    .navbar .navbar-content {
        flex-direction: row;
        justify-content: space-between;
    }

        .navbar .navbar-content .img-navbar .image-web {
            width: 100% !important;
        }

    .navbar-content .navbar-menu {
        display: none;
        /* Ganti sesuai kebutuhan */
    }
}
/* End Navbar */

/* CLient */

.client-section {
    width: 100%;
    min-height: 300px;
}

    .client-section .client-content {
        width: 90%;
        margin: auto;
        min-height: 200px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        text-align: center;
        padding-top: 60px;
    }

        .client-section .client-content .client-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

/* Tablet: 3 kolom */
@media (max-width: 1024px) {
    .client-section .client-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile medium: 2 kolom */
@media (max-width: 768px) {
    .client-section .client-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile small: 1 kolom */
@media (max-width: 480px) {
    .client-section .client-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

        .client-section .client-content .client-item img {
            width: 60% !important; /* Override width untuk konsistensi */
        }
}

/* End Client */

/* About */

.about-section {
    width: 90%;
    margin: auto;
    min-height: 400px;
    display: flex;
    margin-top: 100px;
    padding-top: 120px;
    margin-bottom: 100px;
}

    .about-section .about-content {
        width: 50%;
        min-height: 400px;
        padding: 20px 50px;
    }

    .about-section .about-image {
        width: 50%;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

        .about-section .about-image img {
        }

    .about-section .about-content .title-about {
        margin-top: 30px;
        font-size: 36px;
        font-weight: 500;
        color: #dca141;
    }

    .about-section .about-content .description-about {
        margin-top: 30px;
        line-height: 30px;
    }

/* Responsive untuk tablet */
@media (max-width: 1024px) {
    .about-section {
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
        margin-top: 60px;
    }

        .about-section .about-content {
            width: 100%;
            padding: 20px;
        }

            .about-section .about-content .title-about {
                font-size: 28px;
                text-align: center;
            }

            .about-section .about-content .description-about {
                font-size: 16px;
                text-align: justify;
            }

        .about-section .about-image {
            width: 100%;
            margin-top: 30px;
        }

            .about-section .about-image img {
                width: 100%;
            }
}

/* Responsive untuk mobile (hide image) */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        padding-top: 40px;
        margin-top: 40px;
    }

        .about-section .about-content {
            width: 100%;
            padding: 10px 20px;
        }

            .about-section .about-content .title-about {
                font-size: 24px;
                text-align: center;
            }

            .about-section .about-content .description-about {
                font-size: 14px;
                text-align: justify;
            }

        .about-section .about-image {
            display: none;
        }
}

/* End About */

/* Why */

.why-section {
    width: 90%;
    margin: auto;
    min-height: 600px;
    margin-top: 100px;
    padding-top: 200px;
    display: flex;
}

    .why-section .why-content {
        width: 64%;
        padding: 20px 50px;
    }

        .why-section .why-content .title {
            font-size: 28px;
            font-weight: 500;
            color: #dca141;
        }

        .why-section .why-content .subtitle {
            font-size: 18px;
            font-weight: 400;
            color: #ADB2D4;
            margin-top: 20px;
        }

    .why-section .why-list {
        display: flex;
        transition: transform 0.5s ease;
        width: fit-content;
    }

.why-point {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.card-why {
    width: 300px;
    border-radius: 20px;
    padding: 30px 30px;
    margin: 0px 20px;
}

    .card-why .icon-card {
        width: 60px;
        height: 60px;
        background-color: #f7dfbb;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .card-why .card-title {
        font-weight: 500;
        font-size: 18px;
    }

    .card-why .card-description {
        font-size: 14px;
        margin-top: 10px;
        color: #ADB2D4;
    }

.why-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
}


    .why-indicator .arrow-indicator {
        margin: 20px 10px;
        cursor: pointer;
    }

    .why-indicator .why-indicator-cursor {
        display: flex;
        align-items: center;
        height: 30px;
    }

        .why-indicator .why-indicator-cursor .cursor {
            width: 26px;
            height: 26px;
            background-color: #ADB2D4;
            border-radius: 50%;
            margin: 5px;
        }

            .why-indicator .why-indicator-cursor .cursor.active {
                width: 26px;
                height: 26px;
                background-color: #dca141;
                border-radius: 50%;
                margin: 5px;
            }



/* Tablet (≤1024px) */
@media (max-width: 1024px) {
    .why-section {
        flex-direction: column;
        padding-top: 100px;
    }

        .why-section .why-content,
        .why-section .why-point {
            width: 100%;
            padding: 20px;
        }

            .why-section .why-content .title {
                font-size: 24px;
            }

            .why-section .why-content .subtitle {
                font-size: 16px;
            }

        .why-section .why-list {
            flex-wrap: nowrap !important; /* override supaya tetap 1 row */
            flex-direction: row !important; /* tetap horisontal */
            justify-content: flex-start !important; /* agar card bergeser */
            gap: 0 !important; /* agar gap gak ganggu pergeseran */
        }

    .card-why {
        margin: 20px;
    }

    .why-indicator {
        margin-top: 20px;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .why-section {
        flex-direction: column;
        padding-top: 60px;
        margin-top: 60px;
    }

        .why-section .why-content,
        .why-section .why-point {
            width: 100%;
            padding: 10px 15px;
        }

            .why-section .why-content .title {
                font-size: 20px;
            }

            .why-section .why-content .subtitle {
                font-size: 14px;
            }

        .why-section .why-list {
            flex-wrap: nowrap !important;
            flex-direction: row !important;
            justify-content: flex-start !important;
            gap: 50px;
        }

    .card-why {
        width: 220px; /* jangan 70%, biar tetap satu ukuran fix */
        margin: 0 20px;
    }

        .card-why .card-title {
            font-size: 16px;
        }

        .card-why .card-description {
            font-size: 13px;
        }

    .why-indicator {
        gap: 10px;
    }

        .why-indicator .arrow-indicator {
            margin: 10px 0;
        }

        .why-indicator .why-indicator-cursor {
            justify-content: center;
        }
}
/* End Why */

/* Moduls */

.modul-section {
    width: 90%;
    margin: auto;
    min-height: 700px;
    padding-top: 130px;
}

    .modul-section .title {
        text-align: center;
        font-size: 32px;
        font-weight: 500;
    }

    .modul-section .subtitle {
        width: 50%;
        margin: auto;
        text-align: center;
        margin-top: 20px;
        color: #ADB2D4;
    }

    .modul-section .modul-list {
        /* display: grid;
  grid-template-columns: 32% 32% 32%;
  gap: 30px;
  margin-top: 100px; */

        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 100px;
    }

.modul-card {
    border-radius: 50px;
    padding: 50px 40px;
}

    .modul-card.primary {
        background-color: #dca141;
        color: #fff;
    }

    .modul-card.secondary {
        background-color: #fff;
        color: #000;
    }

    .modul-card .icon-card {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .modul-card .title {
        text-align: left;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .modul-card .description {
        font-weight: 400;
    }

        .modul-card .description .description-point {
            margin: 0px 15px;
            padding: 0px;
            font-size: 18px;
        }

            .modul-card .description .description-point li {
                margin: 10px 0px;
            }


/* Tablet: 2 kolom */
@media (min-width: 600px) {
    .modul-section .modul-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: 3 kolom */
@media (min-width: 1024px) {
    .modul-section .modul-list {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* End Modul */

/* Testimoni */

.testimoni-section {
    width: 100%;
    min-height: 800px;
    background-color: #f7dfbb;
    margin-top: 150px;
    padding-top: 80px;
    padding-bottom: 100px;
}

    .testimoni-section .title {
        text-align: center;
        font-size: 32px;
        font-weight: 500;
        color: #000;
        padding-top: 100px;
    }

    .testimoni-section .subtitle {
        width: 50%;
        margin: auto;
        text-align: center;
        margin-top: 20px;
        color: #000;
    }

    .testimoni-section .testimoni-list {
        position: relative;
        width: 70%;
        margin: auto;
        margin-top: 50px;
        overflow: hidden;
        height: 400px; /* Pastikan tinggi tetap */
    }

.item-parent {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

    .item-parent.active {
        display: block;
        opacity: 1;
    }

.item-testimoni {
    display: flex;
    justify-content: center !important;
    align-items: center;
    width: 85%;
    margin: auto;
}

    .item-testimoni .image-people {
        width: 300px;
        height: 300px;
        background-color: #ADB2D4;
        border-radius: 48%;
        margin-right: 50px;
    }

    .item-testimoni .card-testimoni {
        padding: 30px;
        background-color: #fff;
        width: 500px;
        height: 300px;
        border-radius: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .item-testimoni .card-testimoni .description {
            font-size: 18px;
            font-weight: normal;
            margin-bottom: 30px;
        }

        .item-testimoni .card-testimoni .name {
            font-size: 16px;
            font-weight: 500;
            color: #000;
        }

        .item-testimoni .card-testimoni .subname {
            font-size: 14px;
            margin-top: 10px;
            color: #ADB2D4;
        }

.testimoni-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}


    .testimoni-indicator .arrow-indicator {
        margin: 20px 10px;
        cursor: pointer;
    }

    .testimoni-indicator .testimoni-indicator-cursor {
        display: flex;
        align-items: center;
        height: 30px;
    }

        .testimoni-indicator .testimoni-indicator-cursor .dot {
            width: 26px;
            height: 26px;
            background-color: #fff;
            border-radius: 50%;
            margin: 5px;
        }

            .testimoni-indicator .testimoni-indicator-cursor .dot.active {
                width: 26px;
                height: 26px;
                background-color: #dca141;
                border-radius: 50%;
                margin: 5px;
            }

@media (max-width: 1024px) {
    .testimoni-section .subtitle {
        width: 70%;
    }

    .item-testimoni {
        flex-direction: column;
        width: 100%;
    }

        .item-testimoni .image-people {
            width: 200px;
            height: 200px;
            margin: 0 auto 30px auto;
        }

        .item-testimoni .card-testimoni {
            width: 90%;
            height: auto;
            border-radius: 40px;
            padding: 25px 20px;
        }

            .item-testimoni .card-testimoni .description {
                font-size: 16px;
                margin-bottom: 20px;
            }

            .item-testimoni .card-testimoni .name {
                font-size: 15px;
            }

            .item-testimoni .card-testimoni .subname {
                font-size: 13px;
            }
}

@media (max-width: 600px) {
    .testimoni-section .title {
        font-size: 24px;
        padding-top: 50px;
    }

    .testimoni-section .subtitle {
        width: 90%;
        font-size: 14px;
    }

    .testimoni-section {
        padding-top: 50px;
        min-height: auto;
    }

    .testimoni-list-section {
        padding: 0 15px;
    }

    .item-testimoni .card-testimoni {
        width: 100%;
    }

    .testimoni-indicator .testimoni-indicator-cursor .dot,
    .testimoni-indicator .testimoni-indicator-cursor .dot.active {
        width: 16px;
        height: 16px;
    }
}

/* End Testimoni */

/* FAQ */

.faq-section {
    width: 90%;
    margin: auto;
    min-height: 600px;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 50px;
    margin-top: 100px;
    margin-bottom: 100px;
    padding-top: 140px;
}

    .faq-section .faq-heading .title {
        font-size: 36px;
        font-weight: bold;
    }

    .faq-section .faq-heading .subtitle {
        font-size: 16px;
        color: #ADB2D4;
        margin-top: 20px;
    }

.card-faq {
    padding: 30px;
    width: 85%;
    border-radius: 10px;
    margin-bottom: 20px;
    cursor: pointer;
}

    .card-faq .heading .title {
        font-size: 16px;
        font-weight: bold;
    }

    .card-faq .body .description {
        font-size: 16px;
        color: #000;
    }

@media (max-width: 1024px) {
    .faq-section {
        grid-template-columns: 1fr;
        padding-top: 100px;
        gap: 30px;
    }

        .faq-section .faq-heading {
            text-align: center;
        }

            .faq-section .faq-heading .title {
                font-size: 28px;
            }

            .faq-section .faq-heading .subtitle {
                font-size: 15px;
                width: 90%;
                margin: 20px auto 0 auto;
            }

    .card-faq {
        cursor: pointer;
        width: 95%;
        padding: 25px;
    }

        .card-faq .heading .title {
            font-size: 15px;
        }

        .card-faq .body .description {
            font-size: 15px;
        }
}

@media (max-width: 600px) {
    .faq-section {
        padding-top: 80px;
        margin-top: 50px;
        margin-bottom: 50px;
        gap: 20px;
    }

        .faq-section .faq-heading .title {
            font-size: 22px;
        }

        .faq-section .faq-heading .subtitle {
            font-size: 14px;
        }

    .card-faq {
        cursor: pointer;
        padding: 20px;
        width: 90%;
    }

        .card-faq .heading .title {
            font-size: 14px;
        }

        .card-faq .body .description {
            font-size: 14px;
        }
}

/* End FAQ */

/* Contact */

.contact-section {
    width: 90%;
    margin: auto;
    min-height: 600px;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 50px;
    margin-top: 100px;
    margin-bottom: 100px;
    padding-top: 100px;
}

.contact-content {
    padding-top: 100px;
}

    .contact-content .title {
        font-size: 28px;
        font-weight: 500;
        line-height: 40px;
    }

    .contact-content .subtitle {
        font-size: 18px;
        margin-top: 20px;
        color: #ADB2D4;
        margin-bottom: 30px;
    }

.contact-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .contact-section {
        grid-template-columns: 1fr;
        padding-top: 80px;
        gap: 30px;
    }

    .contact-content {
        padding-top: 0;
    }

        .contact-content .title {
            font-size: 24px;
            line-height: 36px;
        }

        .contact-content .subtitle {
            font-size: 16px;
        }

    .contact-image {
        width: 100%;
    }

        .contact-image img {
            width: 90%;
        }
}

@media (max-width: 768px) {
    .contact-section {
        margin-top: 50px;
        margin-bottom: 50px;
        gap: 20px;
        min-height: 400px;
    }

    .contact-content .title {
        font-size: 20px;
        line-height: 32px;
    }

    .contact-content .subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .contact-image {
        display: none;
    }
}


/* End Contact */

/* Footer */
.footer {
    width: 100%;
    min-height: 550px;
    background-color: #fff;
    margin-top: 133px;
    border-top: 1px#ADB2D4 solid;
}


    .footer .content-footer {
        width: 90%;
        margin: auto;
        padding-top: 100px;
        display: flex;
        justify-content: space-between;
    }

    .footer .footer-2 {
        display: flex;
        justify-content: start;
    }


    .footer .img-footer {
        width: 150px;
    }

    .footer .desc {
        font-weight: 400;
        font-size: 20px;
        line-height: 30px;
        color: #ADB2D4;
        width: 400px;
    }

    .footer .sosial-media ul {
        list-style: none;
        display: flex;
        margin-left: -30px;
        margin-top: 28px;
    }

        .footer .sosial-media ul li {
            margin-right: 12px;
        }

    .footer .footer-2 .title {
        font-weight: 600;
        font-size: 20px;
        line-height: 26px;
        color: #ADB2D4;
    }

    .footer .footer-2 ul {
        list-style: none;
        margin-top: 24px;
        margin-left: -30px;
    }

        .footer .footer-2 ul li {
            margin-bottom: 16px;
        }

            .footer .footer-2 ul li a {
                text-decoration: none;
                font-weight: 400;
                font-size: 16px;
                line-height: 22px;
                color: #ADB2D4;
            }

@media (max-width: 1024px) {
    .footer .content-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
        padding-top: 60px;
    }

    .footer .footer-2 {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .footer .desc {
        width: 100%;
        font-size: 18px;
    }

    .footer .footer-2 .title {
        font-size: 18px;
    }

    .footer .footer-2 ul li a {
        font-size: 15px;
    }

    .footer p {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .footer {
        min-height: auto;
        padding-bottom: 40px;
    }

        .footer .content-footer {
            padding-top: 40px;
        }

        .footer .footer-2 {
            flex-direction: column;
            gap: 40px;
        }

        .footer .desc {
            font-size: 16px;
            line-height: 24px;
        }

        .footer .footer-2 .title {
            font-size: 16px;
        }

        .footer .footer-2 ul li a {
            font-size: 14px;
        }

        .footer p {
            font-size: 14px;
            margin-top: 40px;
        }
}

/* End Footer */

/* float wa */
.float-wa {
    position: fixed;
    z-index: 50;
    bottom: 20px;
    right: 10px;
    display: flex;
    justify-content: end;
    width: 80px;
    height: 80px;
}


/* end float wa */

/* Pricing */
.pricing-section {
    width: 90%;
    margin: auto;
    min-height: 600px;
    overflow: hidden;
}

    .pricing-section .title {
        text-align: center;
        font-size: 32px;
        font-weight: 500;
    }

    .pricing-section .subtitle {
        width: 50%;
        margin: 20px auto 0;
        text-align: center;
        color: #ADB2D4;
    }

    .pricing-section .pricing-list {
        padding: 40px 0;
    }

.swiper {
    padding: 40px 0;
    width: 100%;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    height: auto;
}


.card-product {
    width: 360px;
    min-height: 400px;
    background-color: #fff;
    border-radius: 30px;
    margin: 0 10px;
    box-sizing: border-box;
    padding: 10px;
}

    .card-product .image-card {
        margin: 40px 30px 0;
        display: flex;
        justify-content: center;
    }

    .card-product .label {
        background-color: #dca141;
        padding: 5px 20px;
        color: #fff;
        font-weight: 500;
        border-radius: 30px;
    }

    .card-product .card-body {
        margin: 30px;
    }

        .card-product .card-body .point-list {
            margin-bottom: 40px;
        }

        .card-product .card-body .point-product {
            margin-bottom: 20px;
        }

            .card-product .card-body .point-product .point-item {
                display: flex;
                justify-content: flex-start;
                align-items: center;
            }

                .card-product .card-body .point-product .point-item .desc {
                    font-size: 16px;
                    margin-left: 15px;
                    font-weight: 400;
                }

        .card-product .card-body .price {
            font-weight: bold;
            font-size: 32px;
            margin: 10px 0 20px;
        }

/* ---------- BANNER ---------- */
.pricing-section .product-banner {
    width: 95%;
    margin: 100px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f2dcba;
    border-radius: 50px;
}

    .pricing-section .product-banner .description {
        margin: 100px;
        text-align: center;
        color: #000;
        font-weight: 400;
        font-size: 28px;
    }

/* ---------- SWIPER NAVIGATION ---------- */
.swiper-button-next,
.swiper-button-prev {
    color: #dca141 !important;
}

.swiper-pagination-bullet {
    background: #dca141 !important;
}


/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    .card-product {
        width: 80%;
    }

    .pricing-section .product-banner .description {
        margin: 60px 30px;
        font-size: 24px;
    }

    .pricing-section .subtitle {
        width: 80%;
    }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .pricing-section .title {
        font-size: 24px;
    }

    .card-product {
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
    }

        .card-product .card-body .price {
            font-size: 24px;
        }

        .card-product .card-body .point-product .point-item .desc {
            font-size: 14px;
        }

        .card-product .image-card {
            margin-top: 20px;
        }

    .pricing-section .product-banner {
        border-radius: 30px;
    }

        .pricing-section .product-banner .description {
            font-size: 18px;
            margin: 40px 20px;
        }

    .pricing-section .subtitle {
        font-size: 14px;
        width: 100%;
    }

    .swiper {
        padding: 20px 0;
    }

    .swiper-slide {
        padding: 0 10px;
    }
}


@media (min-width: 992px) {
    .pricing-list {
        max-width: 800px;
        margin: 0 auto;
    }
}

.pricing-static {
    display: none;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 0;
}

/* Tampilkan di desktop, sembunyikan swiper */
@media (min-width: 992px) {
    .swiper.pricing-list {
        display: none !important;
    }

    .pricing-static {
        display: flex !important;
    }
}

.product-banner {
    width: 95%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f2dcba;
    /* border: 5px #dca141 solid; */
    margin-top: 100px;
    border-radius: 50px;
}

    .product-banner .description {
        margin: 100px;
        text-align: center;
        color: #000;
        font-weight: 400;
        font-size: 28px;
    }


/*#region Loading Panel*/
#loadingPanel {
    display: none;
}

    #loadingPanel .divBlanket {
        background-color: #EEE;
        opacity: 0.65;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
        -moz-opacity: 0.65;
        -khtml-opacity: 0.65;
        position: fixed;
        z-index: 29001;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }

    #loadingPanel .divLoading {
        position: fixed;
        top: 50%;
        left: 50%;
        width: 200px;
        height: 50px;
        margin-top: -15px;
        margin-left: -100px;
        z-index: 29002;
        text-align: center;
        vertical-align: middle;
    }

    #loadingPanel .imgLoading {
        float: left;
        margin-top: 3px;
    }
/*#endregion Loading Panel*/
