
:root {
            --gold: #e08700;
            --gold-light: #e0be75;
            --black: #050505;
            --dark-gray: #0f1014;
            --text-white: #e8e6e3;
            --text-muted: #a0a0a0;
            --font-heading: 'Cinzel', serif;
            --font-body: 'Lato', sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body);
            background-color: var(--black);
            color: var(--text-white);
            overflow-x: hidden;
            text-rendering: optimizeLegibility;
        }
        a { text-decoration: none; color: var(--gold); transition: 0.3s; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
        section { padding: 6rem 0; }
        
        /* --- UTILITIES --- */
        .text-center { text-align: center; }
        .flex-center { display: flex; justify-content: center; align-items: center; }
        
        /* --- PRELOADER --- */
        #preloader {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: var(--black); z-index: 9999;
            display: flex; justify-content: center; align-items: center;
            transition: opacity 1s ease-out;
        }
        .preloader-content img {
            width: 120px; border-radius: 50%;
            animation: pulse 2s infinite;
            border: 2px solid var(--gold);
        }
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 20px rgba(224, 135, 0, 0.4); }
            100% { transform: scale(1); opacity: 0.8; }
        }

        /* --- TYPOGRAPHY & HEADER --- */
        h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--gold); line-height: 1.3; }
        h1 { font-size: 3.5rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.8); margin-bottom: 1rem; }
        h2 { font-size: 2.5rem; text-align: center; margin-bottom: 1rem; position: relative; display: inline-block; }
        p { color: var(--text-muted); line-height: 1.8; font-size: 1.05rem; }
        
        .section-header { text-align: center; margin-bottom: 4rem; width: 100%; }
        .section-header h2::after {
            content: ''; display: block; width: 60px; height: 3px; 
            background: var(--gold); margin: 15px auto 0;
        }

        /* --- BUTTONS --- */
        .btn-gold {
            display: inline-block; padding: 12px 35px; border: 1px solid var(--gold);
            color: var(--gold); text-transform: uppercase; font-weight: 700;
            letter-spacing: 2px; transition: all 0.4s ease; position: relative;
            overflow: hidden; background: transparent; z-index: 1; margin-top: 20px;
        }
        .btn-gold::before {
            content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
            background: var(--gold); z-index: -1; transition: all 0.4s ease;
        }
        .btn-gold:hover::before { width: 100%; }
        .btn-gold:hover { color: var(--black); box-shadow: 0 0 20px rgba(197, 160, 89, 0.4); }

        /* --- NAVBAR --- */
        .navbar {
            position: fixed; top: 0; width: 100%; padding: 1.5rem 5%;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 1000; transition: all 0.4s ease;
        }
        .navbar.scrolled {
            background: rgba(15, 16, 20, 0.95); backdrop-filter: blur(10px);
            padding: 1rem 5%; border-bottom: 1px solid rgba(197, 160, 89, 0.2);
        }
        .brand { display: flex; align-items: center; gap: 15px; }
        .logo { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
        .brand-text { display: flex; flex-direction: column; line-height: 1.2; }
        .brand-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--gold); letter-spacing: 1px; }
        .brand-subtitle { font-family: var(--font-body); font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }

        .nav-links { display: flex; gap: 2.5rem; }
        .nav-links a {
            text-transform: uppercase; font-size: 0.85rem; letter-spacing: 2px;
            font-weight: 700; color: var(--text-white); position: relative;
        }
        .nav-links a::after {
            content: ''; position: absolute; bottom: -5px; left: 0; width: 0%; height: 2px;
            background: var(--gold); transition: 0.3s;
        }
        .nav-links a:hover::after { width: 100%; }
        
        .hamburger { display: none; color: var(--gold); font-size: 1.8rem; cursor: pointer; transition: 0.3s; }
        .hamburger:hover { color: var(--text-white); }

        /* --- MOBILE NAV MENU --- */
        .mobile-menu {
            position: fixed; top: 0; right: -75%; height: 100vh; width: 75%;
            background: #1a1a1a; z-index: 999;
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            box-shadow: -5px 0 30px rgba(0,0,0,0.8);
            border-left: 1px solid var(--gold);
        }
        .mobile-menu.active { right: 0; }
        .mobile-menu a {
            color: var(--text-white); font-size: 1.5rem; margin: 20px 0;
            text-transform: uppercase; font-weight: 700; font-family: var(--font-heading);
            letter-spacing: 2px;
        }
        .mobile-menu a:hover { color: var(--gold); }
        
        /* Overlay for mobile menu click-out */
        .menu-overlay-bg {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.7); z-index: 998;
            opacity: 0; visibility: hidden; transition: 0.3s;
            backdrop-filter: blur(2px);
        }
        .menu-overlay-bg.active { opacity: 1; visibility: visible; }

        /* --- HERO --- */
        .hero {
            height: 100vh; position: relative;
            display: flex; justify-content: center; align-items: center; text-align: center;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('https://warna-cloudinary.b-cdn.net/biru/b804d7a0f503aab44feb11cbbe098ed1-1.jpg');
            background-size: cover; background-position: center;
            animation: zoomSlow 20s infinite alternate; z-index: -1;
        }
        @keyframes zoomSlow { from { transform: scale(1); } to { transform: scale(1.15); } }
        .hero-content { padding: 0 5%; max-width: 900px; }
        .hero-content p { font-size: 1.3rem; color: var(--gold-light); margin-bottom: 2rem; }

        /* --- ABOUT --- */
        .about-section {
            background: var(--dark-gray);
            display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
            text-align: left;
        }
        .about-text { padding-right: 2rem; }
        .about-text h3 { margin-bottom: 1.5rem; color: var(--text-white); font-size: 1.8rem; }
        .about-text p { margin-bottom: 1.2rem; text-align: justify; }
        
        .highlight-list { list-style: none; margin-top: 1.5rem; }
        .highlight-list li { margin-bottom: 12px; color: var(--text-white); font-weight: 700; display: flex; align-items: center; }
        .highlight-list i { color: var(--gold); margin-right: 12px; font-size: 1.2rem; }

        .about-img-group {
            display: grid; grid-template-columns: 1fr 1fr; gap: 15px;
        }
        .about-img-group img {
            width: 100%; height: 280px; object-fit: cover; border-radius: 4px;
            filter: grayscale(40%); transition: 0.5s;
            border: 1px solid rgba(224, 135, 0, 0.1);
        }
        .about-img-group img:hover { filter: grayscale(0%); transform: scale(1.03); border-color: var(--gold); }

        /* --- MENU GALLERY --- */
        .menu-section { background: var(--black); }
        .menu-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem; margin-top: 2rem;
        }
        .menu-item {
            position: relative; overflow: hidden; border-radius: 8px; cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border: 1px solid rgba(197, 160, 89, 0.1);
        }
        .menu-item img {
            width: 100%; height: 350px; object-fit: cover;
            transition: transform 0.6s ease; display: block;
        }
        .menu-overlay {
            position: absolute; bottom: 0; left: 0; width: 100%; height: auto;
            background: linear-gradient(to top, rgba(0,0,0,0.95) 10%, rgba(0,0,0,0.7) 60%, transparent 100%);
            display: flex; flex-direction: column; justify-content: flex-end;
            padding: 2rem 1.5rem; opacity: 1; transition: 0.4s;
        }
        .menu-item:hover img { transform: scale(1.1); }
        .menu-overlay h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--gold); }
        .menu-desc { font-size: 0.95rem; color: #ccc; }

        /* --- PRICE LIST TABLE --- */
        .price-section {
            background: linear-gradient(to bottom, var(--black), var(--dark-gray));
            border-top: 1px solid rgba(255,255,255,.06);
        }
        .price-wrap { max-width: 900px; margin: 0 auto; }
        .price-table {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(224,190,117,.2); border-radius: 12px;
            overflow: hidden; backdrop-filter: blur(10px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        }
        .price-category {
            background: rgba(224, 190, 117, 0.1); padding: 15px;
            text-align: center; color: var(--gold); font-family: var(--font-heading);
            font-size: 1.5rem; font-weight: 700; border-bottom: 1px solid rgba(224,190,117,.2);
        }
        .price-row {
            display: grid; grid-template-columns: 1fr auto 100px; gap: 15px;
            padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.06);
            align-items: center; transition: 0.2s;
        }
        .price-row:hover { background: rgba(255,255,255,0.03); }
        .price-row:last-child { border-bottom: 0; }
        .price-name { font-weight: 700; color: var(--text-white); font-size: 1.1rem; }
        .price-detail { font-size: 0.85rem; color: var(--text-muted); font-style: italic; text-align: right; }
        .price-val { font-weight: 800; color: var(--gold); text-align: right; }

        /* --- REVIEWS --- */
        .reviews-section { background: var(--dark-gray); }
        .reviews-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem; margin-top: 3rem;
        }
        .review-card {
            background: #151515; padding: 2rem; border-radius: 8px;
            border-left: 4px solid var(--gold);
            text-align: left; box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }
        .review-card:hover { transform: translateY(-5px); }
        .review-card p { font-style: italic; margin-bottom: 1.5rem; color: #ddd; }
        .reviewer-info { display: flex; align-items: center; gap: 15px; }
        .reviewer-avatar {
            width: 50px; height: 50px; background: #333; border-radius: 50%;
            display: flex; justify-content: center; align-items: center; color: var(--gold); font-weight: bold;
        }
        .reviewer-meta h4 { font-size: 1rem; margin-bottom: 2px; color: var(--gold); }
        .rating i { color: gold; font-size: 0.8rem; }

        /* --- FAQ --- */
        .faq-section { background: var(--black); }
        .faq-wrapper { max-width: 800px; margin: 0 auto; }
        .faq-item {
            border: 1px solid #333; margin-bottom: 1rem; border-radius: 6px;
            overflow: hidden; background: #0f1014;
        }
        .faq-question {
            padding: 1.2rem 1.5rem; cursor: pointer;
            display: flex; justify-content: space-between; align-items: center;
            color: var(--text-white); font-weight: 700; transition: background 0.3s;
        }
        .faq-question:hover { background: #1a1a1a; }
        .faq-answer {
            max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out;
            padding: 0 1.5rem; background: #0a0a0a; border-top: 1px solid transparent;
        }
        .faq-answer p { padding: 1.5rem 0; color: var(--text-muted); }
        
        .faq-item.active .faq-answer { max-height: 300px; border-top-color: #333; }
        .faq-item.active .faq-question i { transform: rotate(180deg); color: var(--gold); }

        /* --- LOCATION & INFO --- */
        .info-section {
            position: relative;
            background: url('https://warna-cloudinary.b-cdn.net/biru/2145510246.jpg') no-repeat center center/cover;
            background-attachment: fixed;
        }
        .info-overlay {
            position: absolute; top:0; left:0; width:100%; height:100%;
            background: rgba(0,0,0,0.9); z-index: 0;
        }
        .info-content {
            position: relative; z-index: 1; 
            display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
        }
        .contact-box {
            padding: 2.5rem; border: 1px solid rgba(197, 160, 89, 0.3);
            background: rgba(20, 20, 20, 0.8); backdrop-filter: blur(10px);
            border-radius: 12px; text-align: center;
        }
        .contact-row {
            display: flex; flex-direction: column; align-items: center;
            margin-bottom: 2rem;
        }
        .contact-row i {
            color: var(--gold); font-size: 2rem; margin-bottom: 10px;
        }
        .contact-row h4 { margin-bottom: 5px; color: var(--text-white); }
        .contact-row p, .contact-row a { color: var(--text-muted); text-align: center; }
        .contact-row a:hover { color: var(--gold); }

        .map-wrapper {
            position: relative; width: 100%; height: 100%; min-height: 450px;
            border: 1px solid var(--gold); border-radius: 12px;
            overflow: hidden; box-shadow: 0 0 30px rgba(197, 160, 89, 0.1);
        }
        .map-wrapper iframe {
            position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
            filter: invert(90%) hue-rotate(180deg) contrast(90%); /* Dark Map Effect */
        }
        
        .map-infocard {
            position: absolute; top: 15px; left: 15px; z-index: 10;
            background: #fff; color: #000; width: 220px;
            padding: 12px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .map-infocard__title { font-weight: bold; font-size: 14px; margin-bottom: 5px; color: #000; }
        .map-infocard__link { font-size: 12px; color: #1a73e8; }

        /* --- FOOTER --- */
        footer {
            padding: 4rem 5% 2rem; text-align: center;
            background: #020202; border-top: 1px solid #222;
        }
        .footer-logo img { width: 80px; border-radius: 50%; margin-bottom: 1rem; border: 2px solid var(--gold); }
        .footer-socials { margin: 2rem 0; display: flex; justify-content: center; gap: 1.5rem; }
        .footer-socials a {
            width: 50px; height: 50px; border: 1px solid #333; border-radius: 50%;
            display: flex; justify-content: center; align-items: center;
            font-size: 1.2rem; transition: all 0.3s ease; color: var(--text-muted);
            background: #111;
        }
        .footer-socials a:hover {
            border-color: var(--gold); color: var(--black); background: var(--gold);
            transform: translateY(-5px); box-shadow: 0 0 15px rgba(197, 160, 89, 0.6);
        }
        .footer-copyright { font-size: 0.9rem; color: #666; margin-top: 2rem; border-top: 1px solid #111; padding-top: 2rem; }

        /* --- RESPONSIVE ADJUSTMENTS --- */
        @media (max-width: 860px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .about-section, .info-content { grid-template-columns: 1fr; text-align: center; }
            .about-text { padding-right: 0; margin-bottom: 2rem; }
            .about-text p { text-align: center; }
            .highlight-list li { justify-content: center; }
            .nav-links { display: none; }
            .hamburger { display: block; }
            
            .price-row { grid-template-columns: 1fr; gap: 5px; text-align: left; }
            .price-detail, .price-val { text-align: left; }
            .price-val { margin-top: 5px; font-size: 1.1rem; }
            
            .map-wrapper { min-height: 350px; }
        }

/* =========================
   WHATSAPP POPUP WIDGET
========================= */
.wa-float-btn{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #000;
  box-shadow: 0 10px 25px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer;
  transition: transform .2s ease;
}
.wa-float-btn:hover{ transform: translateY(-2px); }
.wa-float-btn i{ color: #0b0b0b; font-size: 26px; }

.wa-popup-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(2px);
  z-index: 1250;
  opacity: 0;
  visibility: hidden;
  transition: .25s;
}
.wa-popup-overlay.active{
  opacity: 1;
  visibility: visible;
}

.wa-popup{
  position: fixed;
  right: 18px;
  bottom: 86px;
  width: min(360px, calc(100% - 36px));
  background: rgba(20,20,20,.92);
  border: 1px solid rgba(224,190,117,.28);
  border-radius: 14px;
  overflow: hidden;
  z-index: 1300;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: .25s;
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
}
.wa-popup.active{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.wa-popup__head{
  padding: 14px 16px;
  background: rgba(224,190,117,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.wa-popup__title{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wa-popup__title strong{
  color: var(--text-white);
  letter-spacing: .5px;
}
.wa-popup__title span{
  color: var(--text-muted);
  font-size: 12px;
}
.wa-popup__close{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: var(--text-white);
  cursor: pointer;
}

.wa-popup__body{
  padding: 14px 16px 16px;
}
.wa-quick{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.wa-chip{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(224,190,117,.25);
  background: rgba(255,255,255,.03);
  color: var(--text-white);
  font-size: 12px;
  cursor: pointer;
}
.wa-chip:hover{
  border-color: rgba(224,190,117,.55);
}

.wa-popup textarea{
  width: 100%;
  min-height: 92px;
  resize: none;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color: var(--text-white);
  outline: none;
  font-family: var(--font-body);
}
.wa-popup textarea::placeholder{ color: rgba(255,255,255,.35); }

.wa-popup__actions{
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.wa-btn{
  flex: 1;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(224,190,117,.25);
  background: rgba(255,255,255,.03);
  color: var(--text-white);
  cursor: pointer;
  font-weight: 700;
}
.wa-btn--primary{
  background: var(--gold);
  color: #0b0b0b;
  border-color: rgba(224,190,117,.55);
}
.wa-btn:hover{ filter: brightness(1.05); }

.brand { text-decoration: none; }
.brand:visited { color: inherit; }

.brand{
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand:hover .brand-title{
  color: var(--gold-light);
}

/* FIX: Navbar selalu bisa diklik */
.navbar{
  z-index: 9999 !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.brand, .brand *{
  pointer-events: auto;
}

/* Pastikan layer hero tidak menutupi navbar */
.hero, .hero-bg{
  z-index: 0;
}

/* Overlay hanya bisa diklik saat active */
.menu-overlay-bg{
  pointer-events: none;
}
.menu-overlay-bg.active{
  pointer-events: auto;
}

.hero-bg{
  pointer-events: none;
}

/* Hero buttons rapih (biar ga cuma tombol yang kelihatan) */
.hero-content h1, .hero-content p { position: relative; z-index: 2; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Pastikan hero-bg tidak ganggu klik */
.hero-bg { pointer-events: none; }

/* Brand klik rapi */
.brand { text-decoration: none; color: inherit; }
.brand * { pointer-events: none; }
.brand { pointer-events: auto; }

/* Preloader jangan pernah mengunci klik */
#preloader { pointer-events: none; }

/* Overlay menu hanya aktif saat dibuka */
.menu-overlay-bg { pointer-events: none; }
.menu-overlay-bg.active { pointer-events: auto; }

/* Extra spacing helper untuk page menu */
.price-section .section-header p { max-width: 880px; margin: 0 auto; }
.menu-section .section-header p { max-width: 880px; margin: 0 auto; }