html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #333;
    overflow-x: hidden;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #16181B;
    padding: 15px 40px;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 3px solid #e6c288; /* Garis emas di bawah header */
}
.logo img {
    height: 35px; /* Mengatur tinggi logo */
}
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #128C7E;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.whatsapp-btn:hover {
    background: #e6f3ff;
    color: #29A399;
    transform: scale(1.05);
}
.whatsapp-btn-icon {
    height: 18px;
}

/* HERO */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 50px 40px;
    background: linear-gradient(-45deg, #FDF67A, #7ECDFF, #FDF67A, #7ECDFF);
    background-size: 400% 400%;
    animation: gradientFlow 10s ease infinite;
    overflow: hidden;
}
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-content {
    max-width: 500px;
}
.hero-content h1 {
    font-size: 2.5em;
    color: #333333;
}
.hero-content p {
    color: #555;
    line-height: 1.6;
    margin: 15px 0;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #128C7E;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #29A399;
    box-shadow: 0 4px 12px rgba(85,170,255,0.4);
}

.cta-btn.small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.cta-btn-icon {
    height: 20px;
}

.hero img {
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.hero-slider {
    position: relative;
    max-width: 420px;
    width: 100%;
    aspect-ratio: 1 / 0.7; /* Menjaga rasio gambar */
    border-radius: 20px;
    overflow: hidden; /* Memastikan gambar tetap di dalam border radius */
    margin-right: 100px;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Membuat gambar mengisi kontainer */
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
}

/* Efek kilau */
.shine {
    position: relative;
    overflow: hidden;
}
.shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
    transition: 0.6s;
}
.shine:hover::after {
    left: 120%;
}

/* Spark effect */
.spark::before, .spark::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: sparkle 3s infinite;
}
.spark::after {
    animation-delay: 1.5s;
}
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    50% { opacity: 1; transform: translateY(-10px) scale(1); }
}

/* PRODUCTS */
.products {
    text-align: center;
    padding: 30px 20px;
}
.products h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: #333333;
}
.card-container {
    display: grid;
    /* Menggunakan repeat(3, 1fr) untuk 3 kolom, dan auto-fit untuk responsif di mobile */
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 40px; /* Menambahkan padding kanan-kiri agar konsisten */
}
.card {
    background: #c9d1da;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    padding-bottom: 30px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.card p {
    padding: 0 20px; /* Menambahkan padding kiri dan kanan 30px */
    margin-bottom: 0; /* Menghilangkan margin bawah agar jarak ke footer konsisten */
}
.card img {
    width: 85%; /* Mengubah lebar gambar menjadi 85% dari kartu */
    height: auto; /* Menjaga rasio aspek gambar */
    border-radius: 12px;
    margin-top: 30px;
    margin-bottom: 10px;
    background-color: #fdf9f6;
    align-self: center; /* Menengahkan gambar di dalam kartu */
}
.card-footer {
    display: flex;
    flex-direction: column; /* Menyusun item secara vertikal */
    align-items: center;
    margin-top: auto; /* Mendorong footer ke bawah */
    padding-top: 15px; /* Memberi jarak dari konten di atasnya */
    gap: 10px; /* Menambah jarak antara harga dan tombol */
}

h3.card-title {
    font-size: 1.5em;
    padding: 0 20px;
    margin-bottom: 0px;
}

.card-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1.1em;
    color: #212529;
    font-weight: 700;
}

.transition {
    transition: all 0.3s ease;
}

.buy-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #128C7E;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
}
.buy-btn:hover {
    background: #29A399;
}
.price {
    color: #128C7E;
    font-weight: bold;
    font-size: 1.1em;
}

/* CTA SECTION */
.cta-section {
    background: #CDDCB9;
    padding: 1px 20px 50px 20px;
    text-align: center;
    margin-top: 50px;
}
.cta-section .cta-content {
    max-width: 700px;
    margin: 0 auto;
}
.cta-section h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 15px;
}
.cta-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ADVANTAGES SECTION */
.advantages {
    padding: 1px 20px 40px 20px;
    text-align: center;
    background-color: #c9d1da; /* Warna latar coklat muda yang lembut */
}
.advantages h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: #333333;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.advantage-item {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex; /* Mengubah item menjadi flex container */
    flex-direction: column; /* Menyusun konten secara vertikal */
    align-items: center; /* Menengahkan konten horizontal */
}
.advantage-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.advantage-icon {
    height: 45px; /* Atur tinggi ikon */
    margin-bottom: 15px;
}
.advantage-item h3 {
    margin-top: 0;
    color: #5C6873;
    text-align: center; /* Memastikan judul rata tengah */
}
.advantage-item p {
    font-size: 0.9em;
    color: #5C6873;
    flex-grow: 1; /* Memungkinkan paragraf untuk mengisi ruang vertikal yang tersedia */
    display: flex; /* Mengubah paragraf menjadi flex container */
    align-items: center; /* Menengahkan teks secara vertikal dalam paragraf */
    justify-content: center; /* Menengahkan teks secara horizontal dalam paragraf */
    text-align: center; /* Memastikan teks rata tengah */
    min-height: 60px; /* Memberikan tinggi minimum agar ada ruang yang cukup */
}

/* LEGALITY SECTION */
.legality-section {
    padding: 1px 20px 40px 20px;
    text-align: center;
    background-color: #f9fafb;
}

.legality-section h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333333;
}

.legality-subtitle {
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.legality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.legality-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* AGENT MAP SECTION */
.agent-map-section {
    padding: 1px 20px 40px 20px;
    text-align: center;
    background-color: #fff;
}

.agent-map-section h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333333;
}

.agent-map-subtitle {
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.agent-map-image {
    max-width: 1000px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* ENDORSEMENT SECTION */
.endorsement-section {
    padding: 1px 20px 40px 20px;
    text-align: center;
    background-color: #c9d1da;
}

.endorsement-section h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: #333333;
}

.endorsement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.endorsement-card {
    display: flex;
    gap: 20px;
    background-color: #f9fafb;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    border: 1px solid #e5e7eb;
    align-items: flex-start;
}

.endorsement-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.endorsement-content blockquote {
    margin: 0;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #128C7E;
}

.endorsement-content cite {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #333;
    font-style: normal;
}

/* EQUIPMENT SECTION */
.equipment-section {
    padding: 1px 20px 40px 20px;
    text-align: center;
    background-color: #fff; /* Warna latar yang sama dengan form */
}

.equipment-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.equipment-section h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: #333333;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.equipment-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.equipment-item h3 {
    text-align: center;
    margin-top: 0;
    font-size: 1.4em;
    color: #333;
    margin-bottom: 15px; /* Menambah jarak antara judul dan daftar */
}

.equipment-icon {
    height: 30px;
}

.equipment-item ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    line-height: 2;
    color: #555;
}

/* REGISTRATION FLOW SECTION */
.registration-flow-section {
    padding: 10px 20px 50px 20px;
    text-align: center;
    background-color: #c9d1da; /* Warna yang sama dengan section "Mengapa Memilih Kami?" */
}

.registration-flow-section h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: #333333;
}

.registration-flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.flow-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.flow-item-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.flow-number {
    font-weight: 700;
    font-size: 3em;
    color: rgba(85, 170, 255, 0.7);
    line-height: 1;
}

.flow-item h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.4em;
    color: #333;
}

.flow-item p {
    margin: 0;
}

.bank-info-container {
    max-width: 1000px;
    margin: 40px auto 0 auto;
    padding: 25px;
    background-color: #fff;
    border-radius: 12px;
    border: 2px dashed #128C7E;
    text-align: center;
}

.bank-info-container h4 {
    margin-top: 0;
    font-size: 1.5em;
    color: #333;
}

.bank-info-container p {
    max-width: 600px;
    margin: 15px auto 25px auto;
    color: #555;
    line-height: 1.6;
}

.bank-details {
    display: inline-grid; /* Mengubah ke grid agar bisa diatur kolomnya */
    grid-template-columns: repeat(2, auto); /* Membuat 2 kolom di desktop */
    gap: 20px;
    background-color: #f9fafb;
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.bank-logo {
    height: 40px;
}

.bank-details div {
    display: flex;
    flex-direction: column;
}

/* VOUCHER SECTION */
.voucher {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(to right, #128C7E, #1ABC9C, #5881B6); /* Warna gradient baru */
    color: white;
    border-radius: 10px;
    position: relative;
    text-align: left;
}

.voucher-main {
    padding: 20px 30px;
    flex-grow: 1;
    text-align: center;
}

.voucher-main h3 {
    font-size: 1.2em;
    font-weight: 400;
    margin: 0 0 5px 0;
}

.voucher-amount {
    font-size: 1.5em;
    font-weight: 700;
}

.voucher-rip {
    padding: 20px;
    width: 200px; /* Menggunakan lebar eksplisit */
    flex-shrink: 0; /* Mencegah elemen menyusut */
    box-sizing: border-box; /* Memastikan padding tidak menambah lebar */
    border-left: 2px dashed rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9em;
}

.voucher::before, .voucher::after {
    content: '';
    position: absolute;
    width: 30px; height: 30px;
    background-color: #F9FAFB; /* Warna bulatan atas .voucher-section */
    border-radius: 50%;
    right: calc(200px - 15px); /* Posisi dihitung dari kanan agar responsif */
}
.voucher::before { top: -15px; }
.voucher::after { 
    bottom: -15px;
    background-color: #F9FAFB; /* Warna bulatan bawh .voucher-section */
}

.voucher-section {
    padding: 50px 20px 0 20px;
    background-color: #F9FAFB; /* Mengubah warna background agar konsisten dengan cta-section */
    scroll-margin-top: 40px; /* Menambah jarak saat scroll ke ID ini */
}
.purchase-form-container {
    max-width: 600px;
    margin: 0 auto; /* Menghapus margin atas, karena diatur oleh section */
    background-color: #CDDCB9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.purchase-form-container h2 {
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
    color: #5C6873;
}
.purchase-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.purchase-form input,
.purchase-form textarea,
.purchase-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box; /* Penting agar padding tidak menambah lebar */
    font-size: 1em;
    background-color: #fff;
}
.purchase-form select {
    color: #333;
}
.purchase-form select:invalid {
    color: #757575; /* Warna untuk placeholder */
}
.form-consent-group {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Jarak antar item persetujuan */
    margin-top: 5px;
}
.form-consent-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-consent-item input[type="checkbox"] {
    width: auto; /* Mengembalikan lebar default checkbox */
}
.form-consent-item label {
    font-size: 0.85em;
    color: #555;
}
.purchase-form .cta-btn {
    justify-content: center; /* Menengahkan ikon dan teks di dalam tombol */
    border: none; /* Menghapus border default pada button */
    cursor: pointer;
    align-self: center; /* Membuat tombol berada di tengah */
    margin-top: 10px;
    font-size: 17px;
    font-weight: 400;
}
.package-price-display {
    background-color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.2em;
    font-weight: 600;
    color: #128C7E;
    border: 1px solid #ddd;
}
.package-price-display .package-name {
    display: block;
    font-size: 0.8em;
    font-weight: 400;
    color: #128C7E;
    margin-bottom: 4px;
}
.package-price-display .package-price {
    display: block;
    font-size: 1.1em;
}
.purchase-form .cta-btn {
    justify-content: center; /* Menengahkan ikon dan teks di dalam tombol */
    border: none; /* Menghapus border default pada button */
    cursor: pointer;
    align-self: center; /* Membuat tombol berada di tengah */
    margin-top: 10px;
    font-size: 17px;
    font-weight: 400;
}
.form-submit-note {
    text-align: center;
    font-size: 0.9em;
    color: #555;
    margin-bottom: 0;
    margin-top: 15px;
}
.form-section {
    padding: 50px 20px;
    background-color: #f9fafb; /* Memberi warna latar agar form terlihat seperti box */
}

.mobile-title {
    display: none; /* Sembunyikan judul mobile di desktop */
}

.advantages-cta {
    margin-top: 20px;
    font-size: 0.9em;
}

/* POPUP PROMO */
.promo-popup {
    position: fixed;
    bottom: -200px;
    right: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    transition: bottom 0.6s ease, opacity 0.6s ease, visibility 0.6s;
    z-index: 2000;
}
.promo-popup.show {
    bottom: 20px;
    opacity: 1;
    visibility: visible;
}
.promo-popup button {
    background: none;
    border: none;
    color: #55AAFF;
    margin-top: 8px;
    cursor: pointer;
}

/* FOOTER */
footer {
    background: #16181B;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
    font-size: 1em;
    font-weight: 300;
    border-top: 3px solid #e6c288; /* Garis emas di bawah header */
}
footer a{
    text-decoration: none;
    color: #fff;
}

p.credits{
    margin-top: -20px;
    font-size: 0.9em;
    color: #fff;
    font-weight: 300;
    text-decoration: none;
}

.wa-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}
.wa-floating:hover {
    transform: scale(1.1);
}
.wa-floating img {
    width: 45px;
    height: 45px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .hero {
        padding: 30px 20px;
        justify-content: center;
        text-align: center;
        padding-bottom: 50px; /* Menambah ruang di bawah section hero */
    }

    .hero-content h1 {
        font-size: 2.2em;
        margin-top: 0; /* Mengurangi jarak atas */
    }

    .hero img {
        margin-top: 30px;
    }

    .hero-slider {
        margin-top: 0px;
        margin-right: 0px;
    }

    .desktop-title {
        display: none; /* Sembunyikan judul desktop di mobile */
    }

    .mobile-title {
        display: block; /* Tampilkan judul mobile */
    }

    .package-banner {
        padding: 20px; /* Tambahkan padding di mobile */
    }

    .package-banner img {
        width: 100%; /* Sesuaikan lebar gambar dengan padding baru */
        object-fit: contain; /* Pastikan seluruh gambar terlihat */
        border-radius: 15px; /* Kembalikan sudut membulat */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Kembalikan bayangan */
    }

    .bank-details {
        display: flex; /* Mengubah menjadi flex agar bisa diatur arahnya */
        flex-direction: column; /* Menyusun item secara vertikal */
        align-items: flex-start; /* Meratakan item ke kiri */
    }

    .card-container {
        grid-template-columns: 1fr; /* Ubah menjadi 1 kolom di mobile */
        padding: 0 20px;
    }
}

@media (min-width: 769px) {
    .package-banner img {
        cursor: zoom-in; /* Kursor zoom-in hanya di desktop */
    }
}

/* PACKAGE BANNER SECTION */
.package-banner {
    padding: 20px 20px;
    background-color: #fff; /* Warna latar yang lembut */
    text-align: center;
}
.package-banner img {
    max-width: 100%;
    max-height: 70vh; /* Batasi tinggi maksimum agar tidak terlalu besar di layar besar */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* PACKAGE DETAILS SECTION */
.package-details {
    padding: 0px 20px;
    background-color: #fff;
}

.package-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.package-container h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 10px;
}

.package-subtitle {
    color: #555;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.package-date {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8em;
    color: #128C7E; /* Warna hijau agar serasi dengan tema */
    margin-top: -10px;
}

.package-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
    justify-content: center;
}

.package-column {
    flex: 1;
    min-width: 300px;
    background-color: #f9fafb;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.package-column h3 {
    margin-top: 0;
    font-size: 1.5em;
    color: #333;
    border-bottom: 2px solid #55AAFF;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.package-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2;
}

.package-column.info ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px; /* Jarak antara ikon dan teks */
}

.info-icon {
    display: inline-block;
    width: 25px; /* Memberi lebar tetap agar teks lurus */
    flex-shrink: 0; /* Mencegah ikon menyusut */
}

/* LIGHTBOX (MODAL) STYLES */
.lightbox {
    display: none; /* Sembunyi secara default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.8);}
    to {transform: scale(1);}
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

/* LIGHTBOX (MODAL) STYLES */
.lightbox {
    display: none; /* Sembunyi secara default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.8);}
    to {transform: scale(1);}
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}
