:root {
    --green: #00a39d;
    --gold: #ffd700;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.bg-green {
    background-color: var(--green) !important;
}

.ig-wrapper {
    max-height: 500px;
    /* 🔥 atur tinggi di sini */
    overflow: hidden;
    border-radius: 12px;
}

/* paksa iframe IG ikut container */
.ig-wrapper iframe {
    max-height: 500px !important;
}

/* ================= TOPBAR ================= */
.topbar {
    position: fixed;
    top: 0;
    width: 100%;
    /* height: 42px; */
    height: 80px;
    background: #fff;
    z-index: 20;
    border-bottom: 1px solid #eee;
}

.topbar .container {
    height: 100%;
}

.topbar-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 20px;
    /* gap: 24px; */
}

/* ---- Grup Info (kiri) ---- */
.topbar-info {
    display: flex;
    align-items: center;
    /* flex: 1; */
}

.top-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    border-right: 1px solid #e2e2e2;
}

.top-item:first-child {
    padding-left: 0;
}

.top-item:last-child {
    border-right: none;
}

.top-item .icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e8f8f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a39d;
    font-size: 13px;
}

.top-text strong {
    display: block;
    font-size: 13px;
    line-height: 1.3;
    color: #333;
}

.top-text small {
    display: block;
    font-size: 10.5px;
    line-height: 1.3;
    color: #888;
}

/* ---- Grup Link (kanan) ---- */
.topbar-links {
    display: flex;
    align-items: center;
    gap: 20px;
    /* flex-shrink: 0; */
}

.top-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #00a39d;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.top-link i {
    font-size: 13px;
}

.top-link:hover {
    color: #F8AD3C;
}

.top-link-wa {
    color: #00a39d;
}

.top-link-wa:hover {
    color: #F8AD3C;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .topbar-info .top-item:nth-child(3) {
        display: none;
        /* sembunyikan jam operasional dulu di tablet */
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
        /* topbar disembunyikan di mobile, biasanya digantikan navbar utama */
    }
}

/* =================================================
        SIDEBAR
        ================================================= */
.sidebar {
    position: fixed;
    font-weight: 600;
    right: 5px;
    top: 55%;
    transform: translateY(-50%);
    width: 95px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
    z-index: 10;
    padding: 20px 0;
}

.logo-sidebar {
    text-align: center;
    padding-bottom: 20px;
}

.logo-sidebar img {
    width: 60px;
}

.menu-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.menu-sidebar a {
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #555;
    border-radius: 20px;
    font-size: 11px;
    transition: 0.3s;
}

.menu-sidebar i {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--green);
}

.menu-sidebar a:hover {
    background: var(--green);
    color: white;
    transform: translateY(-5px);
}

.menu-sidebar a:hover i {
    color: white;
}

/* ================= SIDE DROPDOWN ================= */
.side-dropdown {
    position: relative;
}

.side-submenu {
    position: absolute;
    z-index: 3;
    right: 90px;
    top: 0;
    /* width: 220px; */
    /* FIX LEBAR MENU */
    background: white;
    border-radius: 15px;
    padding: 8px 0;
    /* padding: 15px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: .3s;
    white-space: nowrap;
    /* FIX TEKS TIDAK TURUN */
}

.side-dropdown:hover .side-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.side-submenu a {
    width: 100%;
    height: auto !important;
    display: block;
    padding: 8px 15px;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    text-align: left;
    line-height: 1.2;
}

.side-submenu a:hover {
    background: white;
    color: var(--green);
}

/* MENU UTAMA AKTIF */
.side-dropdown.active>a {
    background: var(--green);
    color: #fff;
}

.side-dropdown.active>a i {
    color: #fff;
}

/* SUBMENU AKTIF */
.side-submenu a.active {
    color: var(--green);
    font-weight: 600;
}

/* ================= SIDEBAR HIDE SHOW ================= */
.sidebar {
    transition: .4s ease;
}

/* posisi saat disembunyikan */
.sidebar.hide {
    transform: translate(120%, -50%);
}

/* tombol buka tutup */
.sidebar-toggle {
    position: fixed;
    right: 105px;
    top: 55%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: var(--green);
    color: white;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
    transition: .4s ease;
}

/* ketika sidebar terbuka */
.sidebar-toggle.active {
    right: 5px;
}

.sidebar-toggle i {
    transition: .3s;
}

/* rotate icon */
.sidebar-toggle.active i {
    transform: rotate(180deg);
}

/* END SIDEBAR */
/* ================= HERO SLIDER ================= */
.hero-slider {
    /*height: 80vh;*/
    aspect-ratio: 885 / 339;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    cursor: pointer;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    /* menyesuaikan berbagai ukuran gambar */
    background-size: 100% 100%;
    margin-top: 80px;
}

.hero-bg.active {
    opacity: 1;
    z-index: 1;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(46, 191, 99, .25),
            rgba(0, 0, 0, .15));
}

/* PANAH */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    color: var(--gold);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.hero-nav:hover {
    background: rgba(255, 255, 255, .45);
}

.hero-nav.prev {
    left: 20px;
}

.hero-nav.next {
    right: 20px;
}

/* DOT */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
}

.hero-dots button {
    width: 12px;
    height: 12px;
    aspect-ratio: 1 / 1;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    border: 2px solid #F8AD3C;
    background: transparent;
    display: block;
    cursor: pointer;
    box-sizing: border-box;
}

.hero-dots button.active {
    background: #fff;
    border-color: #fff;
}

/* MOBILE */
@media(max-width:768px) {
    .hero-slider {
        height: 70vh;
        min-height: 400px;
    }

    .hero-bg {
        background-position: center;
    }
}

.section-title {
    text-align: center;
    color: var(--green);
    font-weight: bold;
}

.jumbotron {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .25)),
        url('/images/kantor-kospin.webp') center/cover no-repeat;
}

.jumbotron-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    color: white;
    padding: 80px 0;
}

.jumbotron-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.berita-img {
    width: 130px;
    /* di tengah-tengah */
    height: 95px;
    object-fit: cover;
    border-radius: 12px;
}

.kantor-jumbotron {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
    /*background:*/
    /*    linear-gradient(90deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .25)),*/
    /*    url('/images/kantor-kospin.webp') center/cover no-repeat;*/
}

.kantor-jumbotron-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    color: white;
    padding: 0px 0px 80px 0px;
    margin-top: 20px;
}

.kantor-jumbotron h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.kantor-jumbotron h1 span {
    color: var(--gold);
}

.kantor-jumbotron p {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 30px;
}

.btn-jumbotron {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.btn-jumbotron:hover {
    background: #fff;
    color: var(--green);
    transform: translateY(-3px);
}

.btn-promo {
    display: inline-block;
    background: var(--green);
    color: white;
    /*font-weight: 600;*/
    text-decoration: none;
    transition: .3s;
}

.btn-promo:hover {
    background: #fff;
    color: var(--green);
    border: 1px solid var(--green);
    transform: translateY(-3px);
}

.btn-promo-secc {
    display: inline-block;
    background: #6c757d;
    color: white;
    /*font-weight: 600;*/
    text-decoration: none;
    transition: .3s;
}

.btn-promo-secc:hover {
    background: #fff;
    color: #6c757d;
    border: 1px solid #6c757d;
    transform: translateY(-3px);
}

@media(max-width:768px) {
    .kantor-jumbotron {
        min-height: 350px;
    }

    .kantor-jumbotron-content {
        padding: 60px 0;
    }

    .kantor-jumbotron h1 {
        font-size: 34px;
    }

    .kantor-jumbotron p {
        font-size: 15px;
    }
}

.kantor-search {
    position: relative;
    margin-top: -45px;
    margin-bottom: 50px;
    z-index: 1;
}

.kantor-search-box {
    background: #fff;
    padding: 25px;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.kantor-section {
    background: #fff;
}

.map-indonesia {
    position: relative;
}

.map-indonesia img {
    width: 100%;
}

.marker {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #10b981;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 rgba(16, 185, 129, .6);
}

.marker span {
    position: absolute;
    left: 18px;
    top: -6px;
    white-space: nowrap;
    background: #fff;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

.marker:hover span {
    display: block;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, .6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.search-input {
    position: relative;
}

.search-input i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
}

.search-input .form-control-kantor,
.kantor-search .form-select-kantor {
    height: 56px;
    border-radius: 15px;
    border: 1px solid #e5e5e5;
    box-shadow: none;
    transition: .3s;
}

.search-input .form-control-kantor {
    padding-left: 48px;
}

.search-input .form-control-kantor:focus,
.kantor-search .form-select-kantor:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 .2rem rgba(46, 191, 99, .15);
}

.btn-search {
    height: 56px;
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--green), #28a85a);
    color: #fff;
    font-weight: 600;
    transition: .3s;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(46, 191, 99, .25);
    background: linear-gradient(135deg, var(--gold), #d8ad00);
    color: #222;
}

/* ================= PROFIL CARD ================= */
.card-profile {
    color: rgb(17, 17, 17);
    border: none;
    border-left: 6px solid var(--gold);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    position: relative;
    overflow: hidden;
    transition: .35s;
}

.card-profile::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--gold);
    opacity: .15;
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.card-profile p {
    position: relative;
    z-index: 2;
    line-height: 1.8;
    font-size: 16px;
}

.card-profile span {
    color: var(--gold);
    font-weight: bold;
}

.card-profile:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .25);
}

/* ===========================
        KANTOR
        =========================== */
.kantor-card {
    background: #fff;
    border: 1px solid rgba(227, 191, 0, .25);
    border-radius: 18px;
    cursor: pointer;
    transition: .35s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.kantor-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

.kantor-card .card-body {
    padding: 25px 20px;
}

.kantor-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green);
    color: var(--gold);
    font-size: 26px;
    transition: .3s;
}

.kantor-card:hover .kantor-icon {
    background: var(--gold);
    color: #222;
    transform: scale(1.1);
}

.kantor-card h5 {
    color: #222;
    font-size: 17px;
    font-weight: 700;
    margin-top: 15px;
}

.kantor-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

/* BUTTON */
.kantor-card .btn {
    background: var(--green);
    color: white;
    border: none;
    font-size: 14px;
    padding: 8px 22px;
    border-radius: 30px;
    transition: .3s;
}

.kantor-card .btn:hover {
    background: var(--gold);
    color: #222;
}

.kantor-modal {
    border: none;
    overflow: hidden;
    border-radius: 25px;
}

.kantor-modal .modal-header {
    background: linear-gradient(135deg, var(--green), #0b8d62);
    color: white;
    padding: 25px 30px;
}

.kantor-modal .modal-body {
    background: #fffdf3;
    padding: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--green);
    font-size: 22px;
    flex-shrink: 0;
}

.info-item h6 {
    font-weight: bold;
    color: var(--green);
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
    color: #555;
}

.card-modern {
    border: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.card-modern h5 {
    font-size: 1.15rem;
}

.card-modern p {
    font-size: .95rem;
    line-height: 1.6;
}

.wave-bottom {
    display: block;
    width: 100%;
    line-height: 0;
    margin: 0;
    padding: 0;
    transform: translateY(1px);
    /* 🔥 nutup celah 1px */
}

.wave-up {
    display: block;
    width: 100%;
    line-height: 0;
    margin-top: -60px;
    /* profil naik */
    padding: 0;
}

/* ================= ANIMASI FIX (INI KUNCI) ================= */
.gsap-text {
    opacity: 0;
    transform: translateY(40px);
}

/* ================= PRODUK ================= */
.product-card {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    transition: all .35s ease;
    cursor: pointer;
}

.product-card .card-body {
    transition: .35s;
}

.product-card i {
    transition: .35s;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .18);
}

.product-card:hover i {
    color: #ffd700 !important;
    transform: scale(1.15) rotate(-8deg);
}

.produk-hero {
    padding: 140px 0 40px;
    background: #fff;
}

.produk-hero-content {
    max-width: 620px;
}

.hero-label {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 20px;
    border-radius: 50px;
    background: #eefaf2;
    color: #00a39d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.produk-hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #222;
    margin-bottom: 22px;
}

.produk-hero h1 span {
    color: #00a39d;
}

.produk-hero p {
    font-size: 18px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

.hero-image {
    width: 100%;
    max-width: 560px;
    animation: floatHero 4s ease-in-out infinite;
}

@media(max-width:991px) {
    .produk-hero {
        padding: 120px 0 70px;
        text-align: center;
    }

    .produk-hero-content {
        max-width: 100%;
    }

    .produk-hero h1 {
        font-size: 42px;
    }

    .hero-image {
        margin-top: 40px;
        max-width: 420px;
    }
}

.btn-produk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    border-radius: 50px;
    background: #00a39d;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-produk:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(46, 191, 99, .35);
}

@keyframes floatHero {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

.produk-section {
    padding: 75px 0;
    background: #fff;
}

.produk-wrapper {
    background: #fff;
    border-radius: 30px;
    padding: 55px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.produk-tabs {
    background: #eef1f4;
    padding: 6px;
    border-radius: 16px;
    gap: 4px;
}

.produk-tabs .nav-link {
    border: none;
    border-radius: 12px;
    padding: 12px 28px;
    background: transparent;
    color: #666;
    font-weight: 600;
    transition: .25s;
}

.produk-tabs .nav-link:hover {
    color: #00a39d;
}

.produk-tabs .nav-link.active {
    background: #fff;
    color: #00a39d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

.carousel-inner {
    overflow: hidden;
    border-radius: 24px;
}

.carousel-item {
    padding: 10px;
}

.produk-image {
    width: 100%;
    height: 420px;
    object-fit: contain;
    border-radius: 20px;
    background: #fff;
}

.produk-label {
    display: inline-block;
    background: #fff6d8;
    color: #b88a00;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.produk-content h2 {
    font-size: 38px;
    font-weight: 800;
}

.produk-content p {
    color: #666;
    line-height: 1.8;
}

.produk-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.produk-content li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #444;
    line-height: 1.6;
}

.produk-content li i {
    color: #00a39d;
    font-size: 18px;
    flex-shrink: 0;
}

.produk-content li span {
    flex: 1;
}

.btn-produk-detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 13px 28px;
    border-radius: 50px;
    background: #e3bf00;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-produk-detail:hover {
    color: #fff;
    background: #cfae00;
    transform: translateY(-2px);
}

.carousel-control-prev,
.carousel-control-next {
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.carousel-control-prev {
    left: -26px;
}

.carousel-control-next {
    right: -26px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(35%);
}

@media (max-width:991px) {
    .produk-wrapper {
        padding: 35px;
    }

    .produk-content {
        padding: 30px 0 0;
    }

    .produk-image {
        height: 320px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width:768px) {
    .produk-hero {
        padding: 120px 0 70px;
    }

    .produk-hero h1 {
        font-size: 38px;
    }

    .produk-hero p {
        font-size: 16px;
    }

    .produk-wrapper {
        padding: 25px;
        border-radius: 22px;
    }

    .produk-tabs {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
    }

    .produk-tabs .nav-link {
        font-size: 14px;
    }

    .produk-content h2 {
        font-size: 30px;
    }

    .produk-image {
        height: 240px;
        padding: 20px;
    }
}

.produk-section .tab-content-produk {
    min-height: 650px;
}

.produk-section .tab-pane-produk {
    height: calc(100vh - 350px);
    min-height: 600px;
}

.tab-content {
    min-height: 650px;
}

.tab-pane {
    /*height: calc(100vh - 350px);*/
    min-height: 600px;
}

.produk-section .carousel {
    position: sticky;
    top: 120px;
}

.produk-image {
    height: 450px;
    object-fit: contain;
}

.produk-content {
    max-height: 550px;
    overflow-y: auto;
    padding: 20px 20px 20px 25px;
}

.produk-content::-webkit-scrollbar {
    width: 6px;
}

.produk-content::-webkit-scrollbar-thumb {
    background: #2ebf63;
    border-radius: 20px;
}

/* END PRODUK */
/* MENU */
.menu-section {
    /* padding: 45px 0; */
    margin-top: 50px;
    background: #fff;
}

.menu-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
}

.menu-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.menu-content h2::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    margin-top: 8px;
    background: #00a39d;
    border-radius: 10px;
}

.visi-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.misi-box ul {
    padding-left: 20px;
    margin: 0;
}

.misi-box li {
    color: #555;
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 6px;
}

.misi-box li::marker {
    color: #00a39d;
}

.nilai-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 8px;
    background: #f8faf9;
    border-radius: 10px;
    border-left: 4px solid #00a39d;
}

.nilai-item span {
    width: 150px;
    font-weight: 700;
    color: #00a39d;
}

.nilai-item b {
    font-weight: 500;
    color: #555;
}

.section-label {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #00a39d;
    margin-bottom: 10px;
}

.menu-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1f2937;
}

.menu-content h2 span {
    color: #2ebf63;
}

.menu-content p {
    color: #555;
    font-size: .9rem;
    line-height: 1.75;
    margin-bottom: 12px;
    text-align: justify;
    text-indent: 30px;
}

.menu-content strong {
    color: #2ebf63;
}

/* IMAGE */
.menu-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    transition: .3s ease;
}

.menu-image img:hover {
    transform: translateY(-5px);
}

/* MOBILE */
@media(max-width:991px) {
    .menu-section {
        padding: 30px 0;
    }

    .menu-content {
        padding: 22px;
    }

    .menu-content h2 {
        font-size: 1.5rem;
    }

    .menu-image img {
        height: 280px;
    }
}

/* END MENU */
/* Struktur */
/* .struktur-wrapper {
    padding: 40px 0;
} */
.struktur-level {
    position: relative;
}

.struktur-line {
    width: 2px;
    height: 50px;
    background: #00a39d;
    margin: auto;
}

.judul-struktur {
    color: #00a39d;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 25px;
}

.pengurus-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    text-align: center;
    transition: .3s;
    margin-bottom: 25px;
    border-top: 5px solid #00a39d;
}

.pengurus-card:hover {
    transform: translateY(-8px);
}

.pengurus-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 25px;
    border: 5px solid #F8AD3C;
}

.pengurus-info {
    padding: 20px;
}

.pengurus-info h4 {
    color: #00a39d;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pengurus-info p {
    margin: 0;
    color: #555;
    font-weight: 600;
}

.pengurus-card.utama {
    width: 280px;
    margin: auto;
    border-top-color: #00a39d;
}

.pengurus-card.utama img {
    width: 180px;
    height: 180px;
}

/* End Struktur */
/* ANGGOTA */
.anggota-banner {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.anggota-banner h2 {
    color: #00a39d;
    font-weight: 700;
}

.judul-section {
    color: #00a39d;
    font-weight: 700;
}

.anggota-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    border-top: 5px solid #00a39d;
}

.anggota-card .icon {
    font-size: 45px;
    color: #F8AD3C;
    margin-bottom: 20px;
}

.anggota-card h4 {
    color: #00a39d;
    font-weight: 700;
}

.step-card {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.step-card span {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    background: #00a39d;
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.anggota-cta {
    background: #00a39d;
    color: white;
    text-align: center;
    padding: 50px 20px;
    border-radius: 25px;
}

.anggota-cta h2 {
    font-weight: 700;
}

.anggota-cta .btn {
    margin-top: 20px;
}

/* END ANGGOTA */
/* GALERI */
.galeri-title {
    color: #00a39d;
    font-weight: 700;
    margin-bottom: 25px;
}

.galeri-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.galeri-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    cursor: pointer;
    transition: .4s;
}

.galeri-card:hover img {
    transform: scale(1.08);
}

.galeri-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background:
        linear-gradient(transparent,
            rgba(0, 0, 0, .8));
    color: white;
}

.galeri-overlay h5 {
    margin: 0;
    font-weight: 700;
}

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, .08);
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
    display: block;
}

.galeri-modal .modal-body {
    text-align: center;
}

.galeri-modal-img {
    display: block;
    margin: 0 auto 20px;
    max-height: 500px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 15px;
}

/* END GALERI */
/* BERITA */
.judul-section {
    color: #F8AD3C;
    font-weight: 700;
}

.berita-feature {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.berita-feature img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.berita-feature-content {
    padding: 30px;
}

.kategori {
    background: #00a39d;
    color: white;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 13px;
}

.berita-feature h2 {
    margin-top: 20px;
    color: #00a39d;
    font-weight: 700;
}

.tanggal {
    color: #888;
    font-size: 14px;
    margin: 10px 0;
}

.sidebar-berita {
    background: #fff;
    /* padding: 25px; */
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.sidebar-berita h3 {
    color: #00a39d;
}

.sidebar-berita {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.sidebar-berita h3 {
    color: #00a39d;
    font-weight: 700;
    margin-bottom: 25px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.sidebar-info h5 {
    color: #333;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px;
}

.sidebar-info small {
    color: #888;
    font-size: 13px;
}

.berita-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    margin-bottom: 30px;
}

.berita-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.berita-body {
    padding: 25px;
}

.berita-body h4 {
    margin-top: 15px;
    color: #00a39d;
    font-weight: 700;
}

.berita-body a {
    color: #00a39d;
    font-weight: 700;
    text-decoration: none;
}

/* END BERITA */
/* DETAIL BERITA */
.detail-berita-wrapper {
    max-width: 900px;
    margin: auto;
}

.detail-header {
    text-align: center;
    margin-bottom: 30px;
}

.detail-header h1 {
    color: #00a39d;
    font-weight: 700;
    margin-top: 20px;
    font-size: 38px;
}

.detail-meta {
    color: #777;
    margin-top: 15px;
}

.detail-image {
    width: 100%;
    margin-bottom: 30px;
}

.detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.detail-content {
    margin-top: 40px;
    font-size: 17px;
    line-height: 1.9;
    color: #444;
}

.detail-content h3 {
    color: #00a39d;
    font-weight: 700;
    margin-top: 35px;
}

.detail-content p {
    margin-bottom: 20px;
}

.kategori {
    background: #00a39d;
    color: white;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 14px;
}

/* END DETAIL BERITA */
/* ===========================
   SEJARAH COMPACT
=========================== */
.sejarah-section {
    /* padding: 45px 0; */
    margin-top: 50px;
    background: #fff;
}

.sejarah-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
}

.section-label {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #00a39d;
    margin-bottom: 10px;
}

.sejarah-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1f2937;
}

.sejarah-content h2 span {
    color: #00a39d;
}

.sejarah-content p {
    color: #555;
    font-size: .9rem;
    line-height: 1.75;
    margin-bottom: 12px;
    text-align: justify;
    text-indent: 30px;
}

.sejarah-content strong {
    color: #00a39d;
}

/* IMAGE */
.sejarah-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    transition: .3s ease;
}

.sejarah-image img:hover {
    transform: translateY(-5px);
}

/* MOBILE */
@media(max-width:991px) {
    .sejarah-section {
        padding: 30px 0;
    }

    .sejarah-content {
        padding: 22px;
    }

    .sejarah-content h2 {
        font-size: 1.5rem;
    }

    .sejarah-image img {
        height: 280px;
    }
}

/* END SEJARAH */
/* CTA */
.btn-simulasi {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.btn-simulasi:hover {
   background: #fff;
    color: var(--gold);
    border: 2px solid var(--gold);
    transform: translateY(-3px);
}

/* =================================================
        MODERN WHITE FOOTER
        ================================================= */
footer {
    background: #ffffff;
    color: #555;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, .08);
    margin-top: 100px;
}

/* aksen atas */
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--green),
            var(--gold));
}

.footer-title {
    color: #1d252b;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .8px;
    margin-bottom: 25px;
}

.footer-title::after {
    content: "";
    display: block;
    width: 35px;
    height: 3px;
    margin-top: 10px;
    background: var(--gold);
    border-radius: 20px;
}

footer p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* =============================
        SOCIAL ICON
        ============================= */
.social-media {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #f5f7f6;
    color: var(--green);
    text-decoration: none;
    transition: .35s;
}

.social-link i {
    font-size: 20px;
}

.social-link:hover {
    background: var(--green);
    color: white;
    transform: translateY(-5px);
    box-shadow:
        0 8px 20px rgba(46, 191, 99, .25);
}

/* =============================
        CONTACT ITEM
        ============================= */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #555;
}

.footer-contact-item i {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: rgba(227, 191, 0, .15);
    color: #c49d00;
}

/* =============================
        FOOTER BOTTOM
        ============================= */
.footer-bottom {
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, .08);
    padding: 18px 0;
    color: #777;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
    .sidebar {
        right: 10px;
        width: 75px;
    }

    .menu-sidebar a {
        width: 55px;
        height: 55px;
    }

    .menu-sidebar i {
        font-size: 18px;
    }

    .hero-slider {
        min-height: 600px;
    }
}

/* LAPORAN */
.laporan-rat-box {
    background: #fff;
    /* padding: 40px; */
    border-radius: 20px;
}

.laporan-rat-box h2 {
    color: #2ebf63;
    font-weight: 700;
}

.rat-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
}

.rat-year i {
    font-size: 45px;
    color: #e3bf00;
}

.rat-year h1 {
    /* margin-top: 15px; */
    font-weight: 700;
}

.rat-card p {
    color: #666;
    line-height: 1.7;
}

.laporan-section {
    /* padding: 75px 0; */
    background: #fff;
}

.laporan-wrapper {
    background: #fff;
    border-radius: 30px;
    /* padding: 55px; */
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.laporan-tabs {
    background: #eef1f4;
    padding: 6px;
    border-radius: 16px;
    gap: 4px;
}

.laporan-tabs .nav-link {
    border: none;
    border-radius: 12px;
    /* padding: 12px 28px; */
    background: transparent;
    color: #666;
    font-weight: 600;
    transition: .25s;
}

.laporan-tabs .nav-link:hover {
    color: #00a39d;
}

.laporan-tabs .nav-link.active {
    background: #fff;
    color: #00a39d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}
/* END LAPORAN */
/* LAYANAN */
.mjasa-tab-wrapper {
    background: #f1f3f5;
    padding: 8px 8px 0;
    border-radius: 12px 12px 0 0;
    overflow-x: auto;
    cursor: grab;
    scrollbar-width: none;
}

.mjasa-tab-wrapper::-webkit-scrollbar {
    display: none;
}

.mjasa-tab-wrapper.active {
    cursor: grabbing;
}

.mjasa-tabs {
    display: flex;
    gap: 6px;
    border-bottom: 0;
    flex-wrap: nowrap;
    width: max-content;
}

/* item */
.mjasa-tabs .nav-item {
    flex-shrink: 0;
}

/* tombol tab */
.mjasa-tabs .nav-link {
    display: flex;
    align-items: center;
    white-space: nowrap;
    border: none;
    border-radius: 10px 10px 0 0;
    padding: 12px 20px;
    background: transparent;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    transition: all .25s ease;
}

/* icon */
.mjasa-tabs .nav-link i {
    color: #2ebf63;
}

/* hover */
.mjasa-tabs .nav-link:hover {
    background: #ffffff;
    color: #2ebf63;
}

.mjasa-tabs .nav-link.active {
    background: #ffffff;
    color: #2ebf63;
    box-shadow:
        0 -2px 8px rgba(0, 0, 0, .05),
        0 2px 8px rgba(0, 0, 0, .08);
    position: relative;
    z-index: 1;
}

.mjasa-tab-content {
    background: white;
    border-radius: 0 12px 12px 12px;
    padding: 35px;
    box-shadow:
        0 5px 20px rgba(0, 0, 0, .08);
    border: 1px solid #eee;
}

.mjasa-tab-wrapper::-webkit-scrollbar {
    height: 5px;
}

.mjasa-tab-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/*END LAYANAN*/
