    /* --- PENGATURAN GLOBAL --- */
:root {
    --primary-color: #1a2b5e;
    /* Biru Tua - Warna Utama Header/Hero */
    --accent-color: #5542f6;
    /* Ungu/Biru Cerah - Warna Tombol Utama */
    --accent-hover: #4030c0;
    /* Warna tombol saat disorot mouse */
    --text-dark: #333333;
    /* Warna Teks Utama */
    --text-light: #666666;
    /* Warna Teks Sekunder (abu-abu) */
    --white: #ffffff;
    --light-bg: #f8f9fa;
    /* Latar belakang abu-abu sangat muda */
    --success: #25d366;
    /* Hijau WhatsApp */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Agar padding tidak menambah lebar elemen */
    font-family: 'Poppins', sans-serif;
    /* Menggunakan font Poppins */
    scroll-behavior: smooth;
    /* Efek scroll halus saat klik menu */
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    /* Lebar maksimal konten rata tengah */
    margin: 0 auto;
    padding: 0 20px;
}

/* --- NAVIGATION BAR --- */
.navbar {
    background: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Bayangan tipis di bawah navbar */
    position: sticky;
    /* Navbar tetap menempel di atas */
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    /* Teks tebal */
    color: #000;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    /* Hilangkan titik bullet */
    gap: 2rem;
    /* Jarak antar menu */
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--accent-color);
    /* Berubah warna saat mouse diatasnya */
}

.hamburger {
    display: none;
    /* Sembunyikan tombol menu di layar laptop */
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION (BANNER UTAMA) --- */
.hero {
    background-color: var(--primary-color);
    /* Latar biru tua */
    color: var(--white);
    padding: 5rem 0;
    min-height: 80vh;
    /* Tinggi minimal 80% layar */
    display: flex;
    align-items: center;
}



.hero-content {
    max-width: 600px;
    text-align: left !important;
    margin-right: auto;
    margin-left: 0;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero h1 .highlight {
    color: #8c9eff;
    /* Warna aksen teks di dalam judul */
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Styling Tombol Umum */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    /* Sudut melengkung */
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* --- SERVICES (LAYANAN) --- */
.services {
    padding: 4rem 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #222;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Responsif grid */
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Efek bayangan */
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    /* Efek naik sedikit saat hover */
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #e8eaf6;
    border-radius: 50%;
    /* Membuat lingkaran */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- PRODUCTS (PRODUK / SLIDER) --- */
.products {
    padding: 4rem 0;
    background-color: var(--white);
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    /* Bisa digeser horizontal */
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;

    /* Sembunyikan scrollbar agar rapi */
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
}

.product-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.product-card {
    min-width: 250px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    scroll-snap-align: center;
    position: relative;
    background-color: #f0f0f0;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Gambar mengisi penuh kotak tanpa gepeng */
}

.slider-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

.slider-btn:hover {
    color: var(--accent-color);
}

/* --- WHY US --- */
.why-us {
    padding: 4rem 0;
    background-color: var(--white);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Membagi 2 kolom: Gambar & Teks */
    gap: 4rem;
    align-items: center;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.features-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: #e8eaf6;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.features-list h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.features-list p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

/* .testimonials-grid removed as we are switching to slider */

.testimonial-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.testimonial-card {
    min-width: 320px;
    width: 320px;
    /* Fixed width */
    height: 320px;
    /* Fixed height to make it square */
    flex: 0 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    scroll-snap-align: center;

    /* Flex layout to distribute content evenly in the square */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.user-profile {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: #e8eaf6;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.user-info h4 {
    font-size: 1rem;
    margin-bottom: 0px;
}

.user-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.quote {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.stars {
    color: #ffc107;
    /* Warna Kuning Emas */
    font-size: 0.9rem;
}

/* --- CTA SECTION (CALL TO ACTION) --- */
.cta {
    background: linear-gradient(135deg, #7b61ff 0%, #5542f6 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- FOOTER --- */
footer {
    background-color: var(--white);
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* --- WHATSAPP FLOAT BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--success);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.3s;
    z-index: 9999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    /* Efek membesar saat hover */
}

/* --- RESPONSIVE / TAMPILAN HP --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Menu disembunyikan di HP */
    }

    .hamburger {
        display: block;
        /* Tombol hamburger muncul di HP */
    }

    .hero h1 {
        font-size: 2rem;
        /* Ukuran font judul mengecil di HP */
    }

    .why-us-content {
        grid-template-columns: 1fr;
        /* Layout menjadi 1 kolom vertical */
    }


}

/* --- CONTACT SECTION & MAP --- */
.contact-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Map section slightly wider */
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.icon-box-contact {
    width: 50px;
    height: 50px;
    background-color: #e8eaf6;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.text-muted {
    font-size: 0.9rem;
    opacity: 0.8;
}

.direction-link {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.direction-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.contact-map {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0;
}

/* Responsive adjustments for Contact Section */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 350px;
        order: -1;
        /* Show map first on mobile (optional, or remove to show after text) */
    }
}

/* --- MODAL POPUP STYLES --- */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    /* Sit on top of everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.6);
    /* Black w/ opacity */
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--accent-color);
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.modal-header h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.tenda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tenda-item {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s box-shadow 0.3s;
}

.tenda-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tenda-img {
    height: 200px;
    position: relative;
}

.tenda-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tenda-info {
    padding: 1.2rem;
}

.tenda-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.tenda-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.btn-sm {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--success);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-sm:hover {
    background-color: #1ebc57;
}

/* --- LIGHTBOX MODAL STYLES --- */
.lightbox {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2001;
    /* Above everything else */
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    /* Black background */
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

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

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-color);
    text-decoration: none;
    cursor: pointer;
}

/* Add pointer to product images to indicate clickable */
.product-img {
    cursor: pointer;
    transition: transform 0.3s;
}

.product-img:hover {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

/* Responsiveness for Lightbox */
@media only screen and (max-width: 700px) {
    .lightbox-content {
        width: 95%;
    }
}

/* Lightbox Navigation Buttons */
.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
    /* Semi-transparent background for visibility */
}

/* Position the "next button" to the right */
.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* Position the "prev button" to the left */
.lightbox-prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

/* On hover, add a black background color with a little bit see-through */
/* On hover, add a black background color with a little bit see-through */
.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* --- PRICE LIST TABLE --- */
.table-responsive {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.price-table th,
.price-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.price-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
}

.price-table tbody tr:nth-of-type(even) {
    background-color: #f8f9fa;
}

.price-table tbody tr:hover {
    background-color: #f1f1f1;
}

.price-table td:nth-child(3) {
    font-weight: bold;
    color: var(--text-dark);
}

@media (max-width: 600px) {
    .price-table {
        font-size: 0.85rem;
    }

    .price-table th,
    .price-table td {
        padding: 8px 10px;
    }
}