* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: linear-gradient(160deg, #fff0fb 0%, #f0f4ff 50%, #f0fff8 100%); color: #1a1a1a; overflow-x: hidden; }

/* PARTICLES */
.particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; }
.particle { position: absolute; font-size: 1.2rem; animation: floatUp linear infinite; opacity: 0.1; }
@keyframes floatUp { 0% { transform: translateY(100vh) rotate(0deg); opacity: 0.1; } 100% { transform: translateY(-100px) rotate(360deg); opacity: 0; } }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: transparent; transition: all 0.3s; padding: 1rem 0; }
.navbar.scrolled { background: rgba(255,240,251,0.97); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(194,24,91,0.12); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 0.8rem; font-size: 1.3rem; font-weight: 800; color: #fff; }
.navbar.scrolled .nav-brand { color: #c2185b; }
.nav-logo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,0.9); font-weight: 600; font-size: 0.95rem; transition: all 0.2s; }
.navbar.scrolled .nav-links a { color: #7c3aed; }
.nav-links a:hover { color: #f9ca24; }
.nav-cta { background: #f9ca24; color: #1a1a1a !important; padding: 0.6rem 1.2rem; border-radius: 50px; font-weight: 700; }
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 4px 15px rgba(249,202,36,0.4); }

/* HERO */
.hero { position: relative; min-height: 100vh; background: linear-gradient(135deg, #1a7a3c 0%, #2ecc71 50%, #f9ca24 100%); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem; padding: 8rem 2rem 6rem; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.1) 0%, transparent 60%); animation: bgPulse 6s ease-in-out infinite alternate; }
@keyframes bgPulse { 0% { transform: scale(1); } 100% { transform: scale(1.05); } }
.hero-left, .hero-right { position: relative; z-index: 2; }
.hero-badge { display: inline-block; background: rgba(249,202,36,0.2); border: 1px solid rgba(249,202,36,0.5); color: #f9ca24; padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 1.5rem; }
.hero-title { font-size: 3.5rem; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 1rem; }
.hero-title span { color: #f9ca24; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.9); line-height: 1.6; margin-bottom: 2rem; max-width: 500px; }
.hero-harga { display: flex; gap: 1rem; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; }
.harga-normal, .harga-promo-box { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border-radius: 12px; padding: 0.8rem 1.2rem; border: 1px solid rgba(255,255,255,0.3); }
.harga-normal .label, .harga-promo-box .label { display: block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 2px; }
.angka-coret { font-size: 1.2rem; font-weight: 700; color: rgba(255,255,255,0.5); text-decoration: line-through; }
.harga-arrow { font-size: 1.5rem; color: #f9ca24; font-weight: 900; }
.harga-promo-box { background: rgba(249,202,36,0.25); border-color: #f9ca24; animation: pulsePrimo 2s ease-in-out infinite; }
@keyframes pulsePrimo { 0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249,202,36,0.4); } 50% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(249,202,36,0); } }
.angka-promo { font-size: 1.8rem; font-weight: 900; color: #f9ca24; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary-hero, .btn-outline-hero { display: inline-block; padding: 1rem 2rem; border-radius: 50px; font-weight: 800; font-size: 1rem; text-decoration: none; transition: all 0.3s; }
.btn-primary-hero { background: #f9ca24; color: #1a1a1a; box-shadow: 0 8px 30px rgba(249,202,36,0.5); }
.btn-primary-hero:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(249,202,36,0.7); }
.btn-outline-hero { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline-hero:hover { background: #fff; color: #1a7a3c; }
.hero-img-wrap { position: relative; }
.hero-img-placeholder { width: 100%; aspect-ratio: 1; border-radius: 30px; overflow: hidden; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 2px dashed rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; }
.img-placeholder-inner { text-align: center; color: rgba(255,255,255,0.7); }
.placeholder-icon { font-size: 4rem; display: block; margin-bottom: 0.5rem; }
.img-placeholder-inner p { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.img-placeholder-inner small { font-size: 0.8rem; opacity: 0.7; }
.hero-badge-float { position: absolute; background: rgba(255,255,255,0.95); padding: 0.6rem 1.2rem; border-radius: 50px; font-size: 0.85rem; font-weight: 700; color: #1a7a3c; box-shadow: 0 4px 20px rgba(0,0,0,0.15); animation: floatBadge 3s ease-in-out infinite; }
.badge-float-1 { top: 10%; right: -10px; animation-delay: 0s; }
.badge-float-2 { bottom: 15%; left: -10px; animation-delay: 1.5s; }
@keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.wave-bottom { position: absolute; bottom: 0; left: 0; width: 100%; line-height: 0; }
.wave-bottom svg { width: 100%; height: 60px; }

/* STATS BAR */
.stats-bar { background: linear-gradient(90deg, #ffe4f0, #f0e4ff, #e4f0ff, #e4fff0); background-size: 300% auto; animation: gradientShift 8s ease infinite; padding: 2rem 1rem; box-shadow: 0 4px 20px rgba(200,100,255,0.12); }
@keyframes gradientShift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
.stats-inner { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; justify-content: space-around; gap: 2rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 2rem; font-weight: 900; color: #c2185b; margin-bottom: 0.3rem; }
.stat-label { font-size: 0.85rem; color: #666; font-weight: 600; }
.stat-divider { width: 1px; height: 40px; background: #e5e7eb; }

/* SECTION COMMON */
.section-center { text-align: center; margin-bottom: 3rem; }
.section-tag, .section-tag-center { display: inline-block; background: linear-gradient(135deg, #fce4ff, #e4e4ff); color: #7c3aed; padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 700; border: 2px solid #c4b5fd; margin-bottom: 1rem; box-shadow: 0 2px 8px rgba(124,58,237,0.15); }
.section-title-center, .section-title-left { font-size: 2.5rem; font-weight: 900; background: linear-gradient(135deg, #c2185b, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; margin-bottom: 1rem; }
.section-sub { font-size: 1rem; color: #666; max-width: 600px; margin: 0 auto; }

/* TENTANG */
.tentang { padding: 5rem 2rem; background: linear-gradient(135deg, #fff0fb 0%, #fce4ff 100%); }
.tentang-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.tentang-img-wrap { position: relative; }
.tentang-placeholder { width: 100%; aspect-ratio: 4/3; border-radius: 20px; background: #e5e7eb; border: 2px dashed #9ca3af; display: flex; align-items: center; justify-content: center; }
.img-placeholder { text-align: center; color: #9ca3af; }
.tentang-badge { position: absolute; bottom: -15px; right: -15px; background: #1a7a3c; color: #fff; padding: 0.8rem 1.5rem; border-radius: 50px; font-weight: 700; box-shadow: 0 4px 20px rgba(26,122,60,0.3); }
.tentang-desc { font-size: 1rem; color: #555; line-height: 1.7; margin-bottom: 2rem; }
.tentang-points { display: grid; gap: 1rem; }
.point { display: flex; align-items: start; gap: 0.8rem; }
.point span { font-size: 1.3rem; }
.point p { font-size: 0.95rem; color: #444; font-weight: 500; }

/* KEUNGGULAN */
.keunggulan { padding: 5rem 2rem; background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%); }
.keunggulan-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.keunggulan-card { background: linear-gradient(135deg, #fff8ff, #f8f0ff); border: 2px solid #d8b4fe; border-radius: 24px; padding: 2rem; text-align: center; transition: all 0.3s; position: relative; box-shadow: 0 4px 15px rgba(167,139,250,0.15); }
.keunggulan-card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: 0 16px 35px rgba(167,139,250,0.3); border-color: #a855f7; }
.keunggulan-card.featured { border-color: #f9ca24; background: linear-gradient(135deg, #fffbeb, #fef3c7); }
.k-icon-wrap { width: 80px; height: 80px; border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.k-icon-wrap span { font-size: 2.5rem; }
.keunggulan-card h3 { font-size: 1.2rem; font-weight: 800; color: #1a1a1a; margin-bottom: 0.8rem; }
.keunggulan-card p { font-size: 0.9rem; color: #666; line-height: 1.6; }
.featured-badge { position: absolute; top: -12px; right: 20px; background: #f9ca24; color: #1a1a1a; padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 800; box-shadow: 0 4px 15px rgba(249,202,36,0.4); }

/* MENU */
.menu-section { padding: 5rem 2rem; background: linear-gradient(135deg, #fff9e6 0%, #fff0fb 100%); }
.products-grid { max-width: 1000px; margin: 0 auto 3rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.product-card { background: linear-gradient(135deg, #f0fdf4, #dcfce7); border: 2px solid #86efac; border-radius: 16px; padding: 2rem 1.5rem; text-align: center; transition: all 0.3s; }
.product-card:hover { transform: scale(1.05); box-shadow: 0 8px 20px rgba(26,122,60,0.2); }
.product-emoji { font-size: 3rem; margin-bottom: 1rem; }
.product-name { font-size: 1rem; font-weight: 700; color: #1a7a3c; margin-bottom: 0.5rem; }
.product-price { font-size: 1.3rem; font-weight: 900; color: #16a34a; }
.product-skeleton, .outlet-skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: skeleton 1.5s infinite; border-radius: 16px; height: 150px; }
@keyframes skeleton { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.menu-foto-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.menu-foto-placeholder { aspect-ratio: 4/3; border-radius: 16px; background: #e5e7eb; border: 2px dashed #9ca3af; display: flex; flex-direction: column; align-items: center; justify-content: center; }

/* OUTLET */
.outlet-section { padding: 5rem 2rem; background: linear-gradient(135deg, #e4f0ff 0%, #f0fff8 100%); }
.outlets-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.outlet-card { background: linear-gradient(135deg, #f0fff8, #e4f9ff); border: 2px solid #6ee7b7; border-radius: 24px; overflow: hidden; transition: all 0.3s; box-shadow: 0 4px 15px rgba(52,211,153,0.15); }
.outlet-card:hover { transform: translateY(-6px); box-shadow: 0 16px 35px rgba(52,211,153,0.3); border-color: #10b981; }
.outlet-map-wrap { width: 100%; height: 180px; overflow: hidden; position: relative; }
.outlet-map-iframe { width: 100%; height: 100%; border: none; display: block; }
.outlet-card-body { padding: 1.2rem; }
.outlet-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.outlet-name { font-size: 1.3rem; font-weight: 800; color: #1a7a3c; margin-bottom: 0.8rem; }
.outlet-address { font-size: 0.9rem; color: #666; margin-bottom: 0.8rem; line-height: 1.5; }
.outlet-hours { font-size: 0.85rem; color: #888; margin-bottom: 1rem; }
.outlet-maps { display: inline-block; font-size: 0.9rem; font-weight: 700; color: #2563eb; text-decoration: none; padding: 0.6rem 1.2rem; background: #eff6ff; border-radius: 10px; transition: all 0.2s; }
.outlet-maps:hover { background: #2563eb; color: white; }

/* PROMO SECTION */
.promo-section { padding: 5rem 2rem; background: linear-gradient(135deg, #1a7a3c, #2ecc71); }
.promo-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.promo-info { color: #fff; }
.promo-title { font-size: 3rem; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 1.5rem; }
.promo-desc { font-size: 1.1rem; color: rgba(255,255,255,0.9); line-height: 1.7; margin-bottom: 2rem; }
.promo-steps { display: grid; gap: 1rem; margin-bottom: 2rem; }
.promo-step { display: flex; gap: 1rem; align-items: start; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 1rem; border-radius: 12px; }
.ps-num { width: 40px; height: 40px; border-radius: 50%; background: #f9ca24; color: #1a1a1a; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.2rem; flex-shrink: 0; }
.promo-step strong { display: block; font-size: 1rem; margin-bottom: 0.3rem; }
.promo-step p { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.promo-syarat { background: rgba(249,202,36,0.2); border: 1px solid rgba(249,202,36,0.5); border-radius: 12px; padding: 1rem; }
.promo-syarat p { font-size: 0.85rem; color: rgba(255,255,255,0.9); }

/* FORM & QR CARD */
.promo-form-wrap { position: relative; }
.stiker-selfie { position: absolute; top: -40px; right: -30px; width: 120px; transform: rotate(15deg); pointer-events: none; z-index: 10; filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.2)); }
.stiker-excited { position: absolute; bottom: 80px; right: 20px; width: 130px; transform: rotate(-12deg); pointer-events: none; z-index: 5; filter: drop-shadow(3px 5px 10px rgba(0,0,0,0.25)); animation: floatBadge 3s ease-in-out infinite; }
.stiker-hemat { display: block; width: 130px; margin: 0 auto 1rem; pointer-events: none; filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.15)); }
.stiker-ngiler { position: absolute; right: -20px; top: -20px; width: 100px; transform: rotate(-10deg); pointer-events: none; z-index: 10; filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.2)); animation: floatBadge 3.5s ease-in-out infinite 0.3s; }
.stiker-dadah { width: 70px; filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.2)); pointer-events: none; }
.form-card { background: linear-gradient(160deg, #ffe4f0 0%, #ffd6e8 50%, #ffcce4 100%); border-radius: 28px; padding: 2rem; box-shadow: 0 20px 60px rgba(255,105,180,0.25), 0 0 0 4px #ffb3d9, 0 0 0 8px rgba(255,179,217,0.3); border: 3px solid #ff85c0; position: relative; overflow: hidden; }
.form-card::before { content: ''; position: absolute; top: -30px; right: -30px; width: 120px; height: 120px; background: radial-gradient(circle, rgba(255,182,193,0.6), transparent 70%); border-radius: 50%; pointer-events: none; }
.form-card::after { content: ''; position: absolute; bottom: -20px; left: -20px; width: 90px; height: 90px; background: radial-gradient(circle, rgba(255,105,180,0.3), transparent 70%); border-radius: 50%; pointer-events: none; }
.form-card h3 { font-size: 1.5rem; font-weight: 800; color: #c2185b; margin-bottom: 0.5rem; text-shadow: 1px 1px 0 rgba(255,255,255,0.8); }
.form-card .form-sub { color: #e91e8c; }
.qr-card { background: linear-gradient(160deg, #fff9e6 0%, #fff3cc 50%, #ffedb3 100%); border-radius: 28px; padding: 2rem; box-shadow: 0 20px 60px rgba(255,200,0,0.25), 0 0 0 4px #ffd54f, 0 0 0 8px rgba(255,213,79,0.3); border: 3px solid #ffca28; position: relative; overflow: hidden; }
.qr-card::before { content: '⭐'; position: absolute; top: 12px; left: 16px; font-size: 1.4rem; opacity: 0.5; pointer-events: none; }
.qr-card::after { content: '✨'; position: absolute; bottom: 16px; right: 16px; font-size: 1.2rem; opacity: 0.5; pointer-events: none; }
.qr-card h3 { font-size: 1.5rem; font-weight: 800; color: #e65100; margin-bottom: 0.5rem; text-shadow: 1px 1px 0 rgba(255,255,255,0.8); }
.form-sub { font-size: 0.85rem; color: #888; margin-bottom: 1.5rem; }
.preview-wrap { width: 100%; height: 200px; border: 3px dashed #ff85c0; border-radius: 20px; cursor: pointer; overflow: hidden; position: relative; background: linear-gradient(135deg, #fff0f7, #ffe4f0); transition: all 0.3s; margin-bottom: 1.2rem; display: flex; align-items: center; justify-content: center; }
.preview-wrap:hover { border-color: #c2185b; background: linear-gradient(135deg, #ffe4f0, #ffd6e8); transform: scale(1.01); }
.preview-placeholder { text-align: center; color: #888; }
.preview-placeholder span { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.preview-placeholder p { font-size: 0.9rem; font-weight: 600; }
.preview-placeholder small { font-size: 0.72rem; color: #aaa; }
#previewImg { width: 100%; height: 100%; object-fit: cover; }
.preview-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.9rem; opacity: 0; transition: opacity 0.3s; }
.preview-wrap:hover .preview-overlay { opacity: 1; }
.input-group { margin-bottom: 1.2rem; }
.input-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #444; margin-bottom: 0.4rem; }
.input-group input { width: 100%; padding: 0.8rem 1rem; border: 2px solid #ffb3d9; border-radius: 12px; font-size: 1rem; font-family: 'Poppins', sans-serif; outline: none; transition: border-color 0.3s; background: rgba(255,255,255,0.7); }
.input-group input:focus { border-color: #c2185b; box-shadow: 0 0 0 3px rgba(255,133,192,0.2); }
.btn-upload { width: 100%; padding: 1rem; background: linear-gradient(135deg, #ff4da6, #ff85c0, #ff4da6); background-size: 200% auto; color: #fff; font-size: 1rem; font-weight: 800; border: none; border-radius: 50px; cursor: pointer; box-shadow: 0 8px 25px rgba(255,77,166,0.45), 0 0 0 3px rgba(255,179,217,0.4); transition: all 0.3s; letter-spacing: 0.5px; }
.btn-upload:hover { background-position: right center; transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 35px rgba(255,77,166,0.6); }
.btn-upload:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* QR CARD */
.qr-card { position: relative; overflow: hidden; }
.qr-header { text-align: center; margin-bottom: 2rem; }
.qr-icon { font-size: 3rem; margin-bottom: 0.5rem; }
.qr-header p { font-size: 0.9rem; color: #666; }
.qr-box { background: linear-gradient(135deg, #fffde7, #fff9c4); border: 3px solid #ffd54f; border-radius: 20px; padding: 2rem; text-align: center; margin-bottom: 1.5rem; box-shadow: inset 0 2px 8px rgba(255,200,0,0.15); }
.qr-img { width: 200px; height: 200px; margin: 0 auto 1rem; border-radius: 12px; background: #fff; padding: 0.5rem; }
.qr-kode { font-size: 1rem; font-weight: 900; color: #1a7a3c; letter-spacing: 2px; font-family: monospace; }
.qr-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.qr-info-item { border-radius: 12px; padding: 1rem; text-align: center; }
.qr-info-item.green { background: linear-gradient(135deg, #f0fdf4, #dcfce7); border: 2px solid #86efac; border-radius: 16px; }
.qr-info-item.yellow { background: #fffbeb; border: 1px solid #fde68a; }
.qr-info-item span { display: block; font-size: 0.75rem; color: #888; margin-bottom: 0.3rem; }
.qr-info-item strong { font-size: 1.1rem; color: #1a1a1a; font-weight: 800; }
.qr-instruksi { background: linear-gradient(135deg, #fff9e6, #fff3cc); border: 2px dashed #ffd54f; border-radius: 16px; padding: 1.5rem; margin-bottom: 1.5rem; }
.instruksi-step { display: flex; gap: 1rem; align-items: start; margin-bottom: 1rem; }
.instruksi-step:last-child { margin-bottom: 0; }
.instruksi-step span { font-size: 1.5rem; }
.instruksi-step p { font-size: 0.9rem; color: #555; }
.qr-warning { background: #fef3c7; border: 1px solid #fde68a; border-radius: 10px; padding: 0.8rem; font-size: 0.85rem; color: #92400e; text-align: center; margin-bottom: 1rem; }
.btn-download { width: 100%; padding: 1rem; background: linear-gradient(135deg, #ff4da6, #ff85c0); color: #fff; font-size: 1rem; font-weight: 800; border: none; border-radius: 50px; cursor: pointer; box-shadow: 0 8px 25px rgba(255,77,166,0.4), 0 0 0 3px rgba(255,179,217,0.4); transition: all 0.3s; margin-bottom: 0.75rem; letter-spacing: 0.5px; display: block; }
.btn-download:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 35px rgba(255,77,166,0.6); }
.btn-tiktok { width: 100%; padding: 1rem; background: linear-gradient(135deg, #010101, #2d2d2d); color: #fff; font-size: 1rem; font-weight: 800; border: 2px solid #69c9d0; border-radius: 50px; cursor: pointer; box-shadow: 0 8px 25px rgba(0,0,0,0.3); transition: all 0.3s; margin-bottom: 0.75rem; letter-spacing: 0.5px; justify-content: center; align-items: center; gap: 8px; }
.btn-tiktok:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(105,201,208,0.4); border-color: #ee1d52; }
 color: #e65100; padding: 0.8rem; border-radius: 50px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.btn-lagi:hover { background: linear-gradient(135deg, #ffca28, #ffd54f); color: #fff; border-color: transparent; }

/* CONFETTI */
.confetti-wrap { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; overflow: hidden; }
.confetti-piece { position: absolute; width: 8px; height: 8px; border-radius: 2px; animation: confettiFall 1.5s ease-out forwards; }
@keyframes confettiFall { 0% { transform: translateY(-20px) rotate(0deg); opacity: 1; } 100% { transform: translateY(300px) rotate(720deg); opacity: 0; } }

/* FOOTER */
.footer { background: #1a1a1a; color: rgba(255,255,255,0.7); padding: 3rem 2rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.footer-brand h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 0.2rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #f9ca24; }
.wa-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.5rem; background: #25d366; color: white; font-weight: 700; border-radius: 50px; text-decoration: none; transition: all 0.3s; }
.wa-btn:hover { background: #128c7e; transform: scale(1.05); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

.nav-hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #fff; padding: 0.3rem; line-height: 1; }
.navbar.scrolled .nav-hamburger { color: #1a7a3c; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-hamburger { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); padding: 1rem 2rem 1.5rem; gap: 1rem; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .nav-links a { color: #555 !important; font-size: 1rem; padding: 0.5rem 0; border-bottom: 1px solid #f3f4f6; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { background: #f9ca24; color: #1a1a1a !important; padding: 0.8rem 1.2rem !important; border-radius: 50px; text-align: center; border-bottom: none !important; }
  .hero { grid-template-columns: 1fr; padding: 6rem 1.5rem 4rem; }
  .hero-title { font-size: 2.5rem; }
  .hero-right { order: -1; }
  .stats-inner { flex-direction: column; gap: 1.5rem; }
  .stat-divider { display: none; }
  .tentang-inner, .promo-inner { grid-template-columns: 1fr; gap: 2rem; }
  .menu-foto-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* COUNTDOWN TIMER */
.countdown-wrap { margin-bottom: 1.5rem; }
.countdown-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-weight: 600; margin-bottom: 0.6rem; }
.countdown-timer { display: flex; align-items: center; gap: 0.5rem; }
.countdown-box { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3); border-radius: 10px; padding: 0.6rem 1rem; text-align: center; min-width: 60px; }
.countdown-box span { display: block; font-size: 1.8rem; font-weight: 900; color: #f9ca24; line-height: 1; }
.countdown-box small { font-size: 0.65rem; color: rgba(255,255,255,0.7); font-weight: 600; text-transform: uppercase; }
.countdown-sep { font-size: 1.8rem; font-weight: 900; color: #f9ca24; line-height: 1; }

/* OUTLET STATUS BADGE */
.outlet-header-row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.8rem; flex-wrap: wrap; }
.outlet-header-row .outlet-name { margin-bottom: 0; }
.outlet-status { font-size: 0.75rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 50px; white-space: nowrap; }
.outlet-status.buka { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.outlet-status.tutup { background: #fee2e2; color: #dc2626; border: 1px solid #fca5a5; }

/* TESTIMONI */
.testimoni-section { padding: 5rem 2rem; background: linear-gradient(135deg, #fff9e6 0%, #fce4ff 100%); }
.testimoni-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimoni-card { background: linear-gradient(135deg, #fffbeb, #fff0fb); border-radius: 24px; padding: 2rem; box-shadow: 0 4px 20px rgba(251,191,36,0.15); border: 2px solid #fde68a; transition: all 0.3s; }
.testimoni-card:hover { transform: translateY(-5px) rotate(-1deg); box-shadow: 0 12px 30px rgba(251,191,36,0.25); border-color: #f59e0b; }
.testimoni-bintang { font-size: 1.2rem; margin-bottom: 1rem; }
.testimoni-pesan { font-size: 0.95rem; color: #444; line-height: 1.7; font-style: italic; margin-bottom: 1.2rem; }
.testimoni-nama { font-size: 0.85rem; font-weight: 700; color: #1a7a3c; }
.testimoni-skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: skeleton 1.5s infinite; border-radius: 20px; height: 160px; }

/* GALERI SELFIE */
.galeri-section { padding: 5rem 2rem; background: linear-gradient(135deg, #fce4ff 0%, #e4f0ff 100%); }
.galeri-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.galeri-item { position: relative; aspect-ratio: 1; border-radius: 16px; overflow: hidden; cursor: pointer; }
.galeri-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.galeri-item:hover img { transform: scale(1.08); }
.galeri-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.6)); color: #fff; font-size: 0.7rem; font-weight: 600; padding: 0.5rem; text-align: center; opacity: 0; transition: opacity 0.3s; }
.galeri-item:hover .galeri-overlay { opacity: 1; }

/* SHARE BUTTONS */
.share-wrap { margin-bottom: 1rem; }
.share-label { font-size: 0.8rem; color: #888; font-weight: 600; margin-bottom: 0.6rem; text-align: center; }
.share-btns { display: flex; gap: 0.8rem; }
.btn-share-wa { flex: 1; padding: 0.7rem; background: #25d366; color: #fff; border: none; border-radius: 12px; font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: all 0.2s; }
.btn-share-wa:hover { background: #128c7e; transform: translateY(-2px); }
.btn-share-copy { flex: 1; padding: 0.7rem; background: #f3f4f6; color: #374151; border: none; border-radius: 12px; font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: all 0.2s; }
.btn-share-copy:hover { background: #e5e7eb; }

/* QR KODE WRAP */
.qr-kode-wrap { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-top: 0.5rem; }
.btn-copy { background: #f0fdf4; border: 1px solid #86efac; border-radius: 8px; padding: 0.4rem 0.8rem; cursor: pointer; font-size: 1rem; transition: all 0.2s; }
.btn-copy:hover { background: #dcfce7; }

/* SCROLL TO TOP */
.scroll-top { position: fixed; bottom: 2rem; right: 2rem; width: 48px; height: 48px; background: linear-gradient(135deg, #ff4da6, #a855f7); color: #fff; border: none; border-radius: 50%; font-size: 1.3rem; font-weight: 900; cursor: pointer; box-shadow: 0 4px 20px rgba(168,85,247,0.5); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s; z-index: 99; }
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 8px 25px rgba(168,85,247,0.6); }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ERROR STATE */
.error-state { text-align: center; padding: 2rem; color: #ef4444; font-weight: 600; background: #fee2e2; border-radius: 12px; }

/* RESPONSIVE TAMBAHAN */
@media (max-width: 768px) {
  .countdown-timer { gap: 0.3rem; }
  .countdown-box { min-width: 50px; padding: 0.5rem 0.7rem; }
  .countdown-box span { font-size: 1.4rem; }
  .galeri-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 0.6rem; }
  .testimoni-grid { grid-template-columns: 1fr; }
  .share-btns { flex-direction: column; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .scroll-top { bottom: 1rem; right: 1rem; width: 40px; height: 40px; font-size: 1.1rem; }
}
