        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2C3E35;
            /* Earthy Dark Green */
            --accent-color: #D4A373;
            /* Tropical Sand Gold */
            --bg-light: #FAEDCD;
            /* Warm Light Cream */
            --bg-white: #FFFFFF;
            --text-dark: #1F2421;
            --text-muted: #6C757D;
            --font-title: 'Playfair Display', serif;
            --font-body: 'Montserrat', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background-color: var(--bg-white);
            line-height: 1.7;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-title);
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        /* NAVIGATION BAR */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(8px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 24px;
        }

        .logo {
            font-family: var(--font-title);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .nav-links a:hover {
            color: var(--accent-color);
        }

        .btn-reserve {
            background-color: var(--primary-color);
            color: #fff !important;
            padding: 10px 22px;
            border-radius: 30px;
            font-size: 0.8rem !important;
            letter-spacing: 1.5px;
        }

        .btn-reserve:hover {
            background-color: var(--accent-color);
        }

        /* HAMBURGER MENU BUTTON (MOBILE) */
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
            z-index: 1001;
        }

        /* OVERLAY UNTUK MOBILE MENU */
        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(3px);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* HERO SECTION */
        .hero {
            height: 100vh;
            /* Perubahan di sini: Mengubah 0.45 menjadi 0.70 agar overlay hitam lebih pekat */
            background: linear-gradient(rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.50)),
                url('assets/cover.jpg') center/cover no-repeat;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 300;
            margin-bottom: 30px;
            max-width: 600px;
        }

        .btn-outline {
            border: 1px solid #fff;
            color: #fff;
            padding: 12px 30px;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 2px;
            border-radius: 30px;
        }

        .btn-outline:hover {
            background-color: #fff;
            color: var(--text-dark);
        }

        /* ABOUT SECTION */
        .section-padding {
            padding: 100px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .about-text p {
            color: var(--text-muted);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .about-img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 8px;
        }

        /* =========================================================
   ABOUT US SLIDER
   ========================================================= */
        .about-slider-wrapper {
            position: relative;
            width: 100%;
            height: 450px;
            border-radius: 8px;
            overflow: hidden;
            /* Menyembunyikan gambar yang meluap ke samping */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .about-slider {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
            /* Animasi geser yang mulus */
        }

        .slide-img {
            min-width: 100%;
            /* Memastikan setiap gambar memakan lebar penuh container */
            height: 100%;
            object-fit: cover;
        }

        /* Desain Tombol Navigasi Panah */
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            /* Transparan */
            color: #ffffff;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            backdrop-filter: blur(2px);
            /* Efek blur ala desain modern */
        }

        .slider-btn:hover {
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary-color);
        }

        .prev-btn {
            left: 15px;
        }

        .next-btn {
            right: 15px;
        }

        /* Responsif untuk Mobile */
        @media (max-width: 768px) {
            .about-slider-wrapper {
                height: 300px;
            }
        }

        /* MENU SECTION */
        .menu-wrapper {
            /* Menggabungkan overlay hitam transparan (rgba) dan gambar background */
            background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('assets/bg-menu.jpg');

            /* Pengaturan tampilan gambar */
            background-size: cover;
            /* Memastikan gambar menutup seluruh area */
            background-position: center;
            /* Mengatur posisi gambar di tengah */
            background-repeat: no-repeat;
            /* Menghindari gambar terulang/repeat */

            padding: 100px 24px;
            color: #ffffff;
            /* Mengubah warna teks default menjadi putih agar kontras */
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
        }

        .section-menu {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-menu h2 {
            font-size: 2.5rem;
            color: white;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .menu-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            /* Membuat baris terakhir otomatis ke tengah */
            gap: 30px;
        }

        .menu-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            transition: transform 0.3s ease;
            width: 350px;
            /* Berikan lebar tetap untuk item flex */
            max-width: 100%;
        }

        .menu-card:hover {
            transform: translateY(-8px);
        }

        .menu-card img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }

        .menu-card-body {
            padding: 25px;
        }

        .menu-card-title {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 10px;
        }

        .menu-card-title h3 {
            font-size: 1.25rem;
            color: var(--primary-color);
        }

        .price {
            font-weight: 600;
            color: var(--accent-color);
        }

        .menu-card-body p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* MAPS & LOCATION */
        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .info-box {
            margin-bottom: 25px;
        }

        .info-box h4 {
            font-size: 1.1rem;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .info-box p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .map-frame {
            width: 100%;
            height: 380px;
            border: 0;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        /* FOOTER */
        footer {
            background-color: var(--primary-color);
            color: #fff;
            text-align: center;
            padding: 40px 20px;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        footer p {
            opacity: 0.8;
        }

        /* STYLES FOR MOBILE POP-UP MENU */
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
                /* Tampilkan tombol hamburger */
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                /* Sembunyikan ke sebelah kanan layar */
                width: 75%;
                max-width: 300px;
                height: 100vh;
                background-color: #fff;
                flex-direction: column;
                justify-content: center;
                gap: 30px;
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
                transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
                z-index: 999;
                padding: 40px 20px;
            }

            /* Kelas saat menu aktif (slide-in) */
            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                font-size: 1rem;
            }

            .hero h1 {
                font-size: 2.3rem;
            }

            .about-grid,
            .location-grid {
                grid-template-columns: 1fr;
            }

            .about-img {
                height: 300px;
            }
        }

        /* <--- Kurung kurawal penutup media query harus di sini! */

        /* =========================================================
   Pindahkan CSS Toggle Menu ini ke OUTSIDE / LUAR media query
   agar berfungsi baik di desktop maupun mobile
   ========================================================= */

        /* Container & Tombol Selengkapnya */
        .menu-btn-container {
            text-align: center;
            margin-top: 40px;
        }

        .btn-more {
            background-color: var(--primary-color);
            color: #ffffff;
            border: none;
            padding: 12px 28px;
            font-size: 0.9rem;
            font-family: var(--font-body);
            font-weight: 600;
            letter-spacing: 1px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-more:hover {
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }

        .btn-more:hover {
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }

        /* Sembunyikan menu ekstra secara default (Berlaku global) */
        .menu-card.hidden-menu {
            display: none;
        }

        /* Tampilkan kembali saat ditambahkan class 'show' oleh JavaScript */
        .menu-card.hidden-menu.show {
            display: flex;
            /* Menggunakan flex agar ukuran kartu tetap sempurna seperti semula */
            flex-direction: column;
        }

        /* =========================================================
   FOOTER SECTION (3-COLUMN LAYOUT WITH SERVICE LINKS)
   ========================================================= */
        footer {
            background-color: var(--primary-color);
            color: #ffffff;
            padding: 70px 24px 30px 24px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr 1fr;
            gap: 50px;
            align-items: start;
            text-align: center;
        }

        .footer-col h3 {
            font-size: 1.4rem;
            color: #ffffff;
            margin-bottom: 20px;
            font-weight: 500;
        }

        /* Kolom 1: Social Media Icons */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border-radius: 50%;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }

        /* Kolom 2: About Text */
        .footer-about p {
            font-size: 0.9rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Kolom 3: Service Links (Pengganti Newsletter) */
        .footer-service-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-service-links a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            transition: color 0.3s ease, padding-left 0.3s ease;
        }

        .footer-service-links a:hover {
            color: var(--accent-color);
        }

        /* Footer Bottom (Copyright & Address) */
        .footer-bottom {
            max-width: 1200px;
            margin: 50px auto 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
        }

        /* Responsif Mobile untuk Footer */
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        /* =========================================================
   FAQ SECTION (ACCORDION - SELANG SELING)
   ========================================================= */
        .faq-section {
            background-color: #ffffff;
            /* Latar utama section putih */
            padding: 80px 20px;
        }

        .faq-container {
            max-width: 850px;
            margin: 0 auto;
        }

        .faq-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-color, #333);
            margin-bottom: 40px;
            font-weight: 600;
            letter-spacing: 2px;
        }

        /* Accordion Outer Container */
        .faq-accordion {
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            overflow: hidden;
            /* Memastikan sudut border-radius melengkung sempurna */
        }

        .faq-item {
            border-bottom: 1px solid #e2e8f0;
            transition: background-color 0.3s ease;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        /* SELANG-SELING BACKGROUND */
        /* Baris ganjil (1, 3, 5, dst) -> Putih Bersih */
        .faq-item:nth-child(odd) {
            background-color: #ffffff;
        }

        /* Baris genap (2, 4, 6, dst) -> Abu-abu Sangat Muda / Soft Off-White */
        .faq-item:nth-child(even) {
            background-color: #f9f9f9;
        }

        /* Button Pertanyaan */
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 22px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: left;
            font-size: 1.05rem;
            font-family: inherit;
            color: #333333;
            font-weight: 500;
            cursor: pointer;
            transition: color 0.3s ease, background-color 0.3s ease;
        }

        .faq-question:hover {
            color: var(--primary-color, #000);
        }

        /* Icon Plus / Cross */
        .faq-icon {
            font-size: 0.9rem;
            color: #666666;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        /* Area Jawaban */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease-in-out, padding 0.3s ease;
            background-color: transparent;
            /* Ikut warna latar item (ganjil/genap) */
        }

        .faq-answer p {
            padding: 0 25px 22px 25px;
            font-size: 0.95rem;
            line-height: 1.7;
            color: #555555;
            margin: 0;
        }

        /* EFEK SAAT TERBUKA / AKTIF */
        .faq-item.active {
            background-color: #f4f4f4;
            /* Sedikit lebih gelap saat accordion terbuka */
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            color: #000000;
        }

        .faq-item.active .faq-question {
            font-weight: 600;
            color: #000000;
        }

        /* ==========================================
   INSTAGRAM FEED SECTION
   ========================================== */
        .instagram-section {
            background-color: #ffffff;
            /* Sesuaikan dengan latar belakang utama jika beda */
            padding: 60px 20px;
            text-align: center;
        }

        .instagram-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .instagram-header {
            margin-bottom: 30px;
        }

        .instagram-header p {
            color: #c5a880;
            /* Warna aksen/sub-heading websitemu */
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .instagram-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: #1a1a1a;
            margin: 0;
        }

        /* Wrapper Elfsight Widget */
        .elfsight-widget-wrapper {
            margin-top: 20px;
            min-height: 300px;
            /* Mencegah layout shifting saat widget loading */
        }

        /* ==========================================
   INSTAGRAM FEED SECTION (RESPONSIVE)
   ========================================== */
        .instagram-section {
            padding: 60px 20px;
            background-color: #ffffff;
            /* Sesuaikan dengan background tema kamu */
            text-align: center;
            overflow: hidden;
            /* Mencegah overflow horizontal pada HP */
        }

        .instagram-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .instagram-header {
            margin-bottom: 35px;
        }

        .instagram-header p {
            color: #c5a880;
            /* Warna emas/aksen tema */
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .instagram-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: #1a1a1a;
            margin: 0;
            line-height: 1.2;
        }

        /* Wrapper Elfsight Widget */
        .elfsight-widget-wrapper {
            width: 100%;
            margin: 0 auto;
            min-height: 250px;
            /* Menjaga tata letak saat widget dimuat */
        }

        /* Memaksa elemen internal Elfsight agar selalu fleksibel & responsif */
        .elfsight-widget-wrapper div[class*="elfsight-app"] {
            width: 100% !important;
            max-width: 100% !important;
        }

        /* Responsive wrapper for Elfsight chat widget */
        .elfsight-chat-wrapper {
            width: 100%;
            max-width: 500px;
            margin: 0 auto 40px;
            padding: 0 16px;
            display: flex;
            justify-content: center;
        }

        .elfsight-chat-wrapper div[class*="elfsight-app"] {
            width: 100% !important;
            max-width: 100% !important;
        }

        /* Mobile adjustments for chat widget */
        @media screen and (max-width: 768px) {
            .elfsight-chat-wrapper {
                max-width: 100%;
                padding: 0 12px;
                margin-bottom: 30px;
            }
        }

        /* ==========================================
   MEDIA QUERIES (RESPONSIVE BREAKPOINTS)
   ========================================== */

        /* Tablet (Lebar layar di bawah 768px) */
        @media screen and (max-width: 768px) {
            .instagram-section {
                padding: 45px 15px;
            }

            .instagram-header {
                margin-bottom: 25px;
            }

            .instagram-header h2 {
                font-size: 1.8rem;
            }

            .instagram-header p {
                font-size: 0.8rem;
                letter-spacing: 1.5px;
            }
        }

        /* Smartphone / Mobile (Lebar layar di bawah 480px) */
        @media screen and (max-width: 480px) {
            .instagram-section {
                padding: 35px 12px;
            }

            .instagram-header h2 {
                font-size: 1.5rem;
            }

            .instagram-header p {
                font-size: 0.75rem;
                letter-spacing: 1px;
            }

            .elfsight-widget-wrapper {
                min-height: 200px;
            }
        }

        /* ==========================================
   FAQ IMAGE GALLERY
   ========================================== */
        .faq-answer p {
            margin-bottom: 15px;
            /* Memberi jarak antara teks dan gambar */
        }

        .faq-image-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            /* 2 Kolom berdampingan */
            gap: 12px;
            /* Jarak antar gambar */
            margin-top: 15px;
        }

        .faq-img {
            width: 100%;
            height: 180px;
            /* Tinggi gambar rata */
            object-fit: cover;
            /* Agar gambar tidak terdistorsi/gepeng */
            border-radius: 8px;
            /* Sudut melengkung halus */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            /* Efek bayangan tipis */
            transition: transform 0.3s ease;
        }

        .faq-img:hover {
            transform: scale(1.02);
            /* Efek zoom sedikit saat kursor diarahkan */
        }

        /* Responsif untuk Smartphone */
        @media screen and (max-width: 480px) {
            .faq-image-gallery {
                grid-template-columns: 1fr;
                /* Jadi 1 kolom di HP agar gambar cukup besar */
                gap: 10px;
            }

            .faq-img {
                height: 160px;
                /* Penyesuaian tinggi di layar HP */
            }
        }

        /* Styling Galeri Foto dalam FAQ */
        .faq-image-gallery {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            overflow-x: auto;
            /* Memungkinkan scroll ke samping jika gambar melebihi lebar layar */
            padding-bottom: 8px;
            /* Memberi ruang untuk scrollbar */
            scroll-snap-type: x mandatory;
            /* Efek scroll membal rapi (smooth) */
            -webkit-overflow-scrolling: touch;
        }

        /* Kustomisasi scrollbar agar rapi di HP/Browser */
        .faq-image-gallery::-webkit-scrollbar {
            height: 4px;
        }

        .faq-image-gallery {
            display: flex;
            justify-content: center;
            /* Membuat posisi foto persis di tengah */
            align-items: center;
            gap: 15px;
            /* Jarak antar foto */
            margin-top: 15px;
            flex-wrap: wrap;
            /* Biar tetap responsif kalau dibuka di HP/layar kecil */
        }

        .faq-img {
            width: 48%;
            /* Ukuran foto proporsional */
            max-width: 280px;
            /* Batas lebar maksimal foto */
            height: 180px;
            /* Tinggi foto seragam */
            object-fit: cover;
            /* Gambar tidak gepeng/tertarik */
            border-radius: 8px;
            /* Sudut agak membulat rapi */
        }

        /* Pastikan tinggi maksimum accordion cukup lega untuk menampung gambar */
        .faq-item.active .faq-answer {
            max-height: 1000px;
        }

        /* Kursor pointer penanda foto bisa diklik */
        .faq-img {
            cursor: pointer;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .faq-img:hover {
            opacity: 0.9;
            transform: scale(1.02);
        }

        /* Modal Popup Background */
        .image-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            padding-top: 60px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(5px);
        }

        /* Modal Content (Ukuran Foto Pop-up) */
        .modal-content {
            margin: auto;
            display: block;
            max-width: 90%;
            max-height: 80vh;
            border-radius: 8px;
            object-fit: contain;
            animation: zoomIn 0.3s ease;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.7);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Tombol Close (X) */
        .modal-close {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #ffffff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: #bbb;
        }

        /* =========================================================
   EVENTS & SPECIAL PACKAGES SECTION
   ========================================================= */
        .events-section {
            padding: 80px 20px;
            background-color: #F9F8F6;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .event-card {
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .event-header {
            background-color: var(--primary-color, #1a2e26);
            color: #ffffff;
            padding: 25px;
            text-align: center;
        }

        .event-header i {
            font-size: 2rem;
            margin-bottom: 10px;
            color: var(--accent-color, #d35400);
        }

        .event-header h3 {
            font-family: var(--font-title);
            font-size: 1.6rem;
            margin: 0;
        }

        .event-body {
            padding: 25px;
            flex: 1;
        }

        .event-feature h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #222;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .event-feature h4 i {
            color: var(--accent-color, #d35400);
        }

        .event-feature ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 20px;
        }

        .event-feature ul li {
            font-size: 0.9rem;
            color: #555;
            position: relative;
            padding-left: 20px;
            margin-bottom: 6px;
        }

        .event-feature ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-color, #d35400);
            font-weight: bold;
        }

        .menu-pkg-box {
            background: #fdfdfd;
            border: 1px dashed #ddd;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
        }

        .pkg-title-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 6px;
        }

        .pkg-title-price h5 {
            font-size: 1rem;
            font-weight: 700;
            color: #222;
            margin: 0;
        }

        .pkg-title-price .price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--accent-color, #d35400);
        }

        .pkg-title-price .price span {
            font-size: 0.75rem;
            color: #777;
            font-weight: 400;
        }

        .pkg-items {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.4;
            margin: 0;
        }

        .event-footer {
            padding: 20px 25px;
            background-color: #fafafa;
            border-top: 1px solid #eee;
        }

        .btn-event-book {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            width: 100%;
            padding: 12px;
            background-color: #25D366;
            color: #fff;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: background-color 0.3s ease;
        }

        .btn-event-book:hover {
            background-color: #1eb855;
        }

        .event-consult-note {
            text-align: center;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #777;
            font-style: italic;
        }

        /* Container Wrapper Chatbot */
        .elfsight-chat-wrapper {
            position: relative;
            z-index: 9999;
            /* Memastikan icon chat tidak tertutup elemen lain */
        }

        /* Penyesuaian Khusus Tampilan Mobile (HP) */
        @media (max-width: 768px) {
           /* Buat Chatbot Melayang dan Tidak Memakan Ruang Layout */
.elfsight-chat-wrapper {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
    height: 0 !important; /* Mencegah widget menambah tinggi halaman */
    width: 0 !important;
}

            /* Mengatur iframe chatbot Elfsight agar muat sempurna di layar HP */
            .elfsight-chat-wrapper iframe {
                max-width: 90vw !important;
                max-height: 80vh !important;
                border-radius: 12px !important;
            }
        }