﻿/* ===== CSS VARIABLES ===== */
:root {
  --green: #2d6a4f;
  --green-light: #52b788;
  --green-dark: #1b4332;
  --green-pale: #d8f3dc;
  --white: #fff;
  --orange: #f4a261;
  --orange-dark: #e76f51;
  --cream: #fefae0;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.16);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
  padding: .65rem 1rem;
  border: 1.5px solid var(--gray-100);
  border-radius: 8px;
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
}
input:focus, textarea:focus, select:focus { border-color: var(--green-light); }
textarea { resize: vertical; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BRAND STORY / TENTANG KAMI ===== */
.brand-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--gray-600);
  margin-bottom: 1.2rem;
  max-width: 560px;
}
.brand-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--green-dark);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,162,97,.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-cta {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}
.btn-cta:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,162,97,.5); }
.btn-wa-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: #25d366;
  color: var(--white);
  border-radius: 50px;
  padding: .75rem 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: all var(--transition);
}
.btn-wa-modal:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-submit { width: 100%; margin-top: .5rem; font-size: 1rem; padding: .9rem; }

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: .5rem 0 1rem; }
.section-header p { color: var(--gray-600); max-width: 560px; margin: 0 auto; font-size: .95rem; }
.section-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: .5rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
  background: rgba(27,67,50,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}
.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  /* Hilangkan background putih di atas navbar gelap */
  mix-blend-mode: screen;
  filter: brightness(1.15) contrast(1.05);
  /* Fallback: clip bulat */
  overflow: hidden;
  flex-shrink: 0;
}
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-link {
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-order-btn {
  background: var(--orange);
  color: var(--white);
  padding: .5rem 1.25rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  transition: all var(--transition);
}
.nav-order-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1571575173700-afb9492e6a50?w=1600&q=85') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27,67,50,.92) 0%, rgba(27,67,50,.7) 50%, rgba(27,67,50,.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 120px 24px 80px;
  margin-left: calc((100vw - 1200px) / 2);
  margin-left: max(24px, calc((100vw - 1200px) / 2));
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.25);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(3.2rem, 4.8vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-title-accent { color: var(--orange); }
.hero-sub {
  font-size: clamp(1.1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  width: fit-content;
}
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 1.5rem; font-weight: 700; color: var(--white); font-family: 'Playfair Display', serif; }
.stat-label { font-size: .75rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .06em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.25); }

/* ===== BRAND STORY ===== */
.brand-story { padding: 80px 0; background: var(--white); }
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.brand-text h2 { font-size: clamp(1.8rem, 2.8vw, 2.6rem); margin: .75rem 0 1.25rem; color: var(--green-dark); }
.brand-text p { color: var(--gray-600); margin-bottom: 1rem; line-height: 1.8; font-size: .95rem; }
.brand-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  min-height: 320px;
  align-items: stretch;
}
.visual-card {
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  min-height: 160px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.visual-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vc-emoji { font-size: 2.5rem; }
.vc-label { font-size: .9rem; font-weight: 600; color: var(--green-dark); text-align: center; }
.vc-1 { background: var(--green-pale); }
.vc-2 { background: #e9f5db; }
.vc-3 { background: #fff3e0; }
.vc-4 { background: #e8f4f8; }

/* ===== PRODUK ===== */
.produk-section { padding: 80px 0; background: var(--gray-50); }
.produk-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.produk-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.produk-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.produk-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.produk-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.produk-card:hover .produk-card-img-wrap img { transform: scale(1.06); }
.produk-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,67,50,.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.25rem;
}
.produk-card:hover .produk-card-overlay { opacity: 1; }
.produk-overlay-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: .6rem 1.4rem;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  width: 100%;
}
.produk-overlay-btn:hover { background: var(--orange-dark); }
.produk-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 50px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.produk-badge.badge-bestseller { background: var(--orange); }
.produk-badge.badge-new { background: #8b5cf6; }
.produk-badge.badge-premium { background: var(--green-dark); }
.produk-badge.badge-ekonomis { background: #0ea5e9; }
.produk-card-body { padding: 1.1rem 1.1rem .5rem; flex: 1; }
.produk-card-body h3 { font-size: 1rem; margin-bottom: .35rem; color: var(--green-dark); font-weight: 700; }
.produk-card-body p { font-size: .8rem; color: var(--gray-600); margin-bottom: .6rem; line-height: 1.5; }
.produk-brix { font-size: .78rem; color: var(--green); font-weight: 600; margin-bottom: .4rem; }
.produk-price { font-size: 1rem; font-weight: 700; color: var(--orange-dark); }
.produk-card-footer { padding: 0 1.1rem 1.1rem; }
.produk-pesan-btn {
  width: 100%;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: .6rem;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.produk-pesan-btn:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ===== KEUNGGULAN ===== */
.keunggulan { padding: 80px 0; background: var(--green-dark); }
.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 1rem;
}
.keunggulan-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.keunggulan-card:hover { background: rgba(255,255,255,.13); transform: translateY(-4px); }
.k-icon { font-size: 2.8rem; margin-bottom: 1rem; }
.keunggulan-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: .75rem; }
.keunggulan-card p { font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.7; }

/* ===== TESTIMONI ===== */
.testimoni { padding: 80px 0; background: var(--cream); }
.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.testi-card:hover { transform: translateY(-4px); }
.testi-stars { color: var(--orange); font-size: 1.2rem; margin-bottom: .75rem; letter-spacing: 2px; }
.testi-text { color: var(--gray-600); font-size: .92rem; line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .95rem; color: var(--gray-900); }
.testi-author span { font-size: .8rem; color: var(--gray-400); }

/* ===== CTA ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
}
.cta-content { text-align: center; }
.cta-content h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--white); margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 2rem; }

/* ===== FOOTER ===== */
.footer { background: var(--gray-900); color: rgba(255,255,255,.75); padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo { 
  height: 64px; 
  width: 64px; 
  border-radius: 50%; 
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen; 
  filter: brightness(1.2); 
  margin-bottom: 1rem; 
}
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--green); }
.footer-nav h4, .footer-contact h4 { color: var(--white); font-size: 1rem; margin-bottom: 1.25rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.footer-nav ul li, .footer-contact ul li { margin-bottom: .6rem; font-size: .88rem; }
.footer-nav ul li a:hover { color: var(--green-light); }
.footer-contact ul li a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ===== STICKY WA ===== */
.wa-sticky {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 800;
  background: #25d366;
  color: var(--white);
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  animation: wa-pulse 2.5s infinite;
  transition: transform var(--transition);
}
.wa-sticky:hover { transform: scale(1.1); animation: none; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.8), 0 0 0 10px rgba(37,211,102,.15); }
}

/* ===== NOTIFICATION ===== */
#notification {
  position: fixed;
  top: 24px; right: 24px;
  z-index: 9999;
  min-width: 320px;
  max-width: 420px;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateX(120%);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
#notification.show { transform: translateX(0); pointer-events: auto; }
#notification.notif-success { background: var(--green); color: var(--white); }
#notification.notif-error { background: #dc2626; color: var(--white); }
#notification.notif-info { background: var(--orange); color: var(--white); }

/* ===== MODAL PEMESANAN ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  position: relative;
  transform: scale(.92) translateY(20px);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.modal-overlay.open .modal-container { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  width: 36px; height: 36px;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.modal-close:hover { background: var(--gray-400); color: var(--white); }
.modal-left {
  background: var(--green-pale);
  padding: 2rem;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.modal-product-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 1.25rem;
}
.modal-product-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.modal-left h3 { font-size: 1.3rem; color: var(--green-dark); margin-bottom: .5rem; }
.modal-product-desc { font-size: .88rem; color: var(--gray-600); margin-bottom: .75rem; line-height: 1.6; }
.modal-brix { font-size: .85rem; color: var(--green); font-weight: 600; margin-bottom: .5rem; }
.modal-price { font-size: 1.3rem; font-weight: 700; color: var(--orange-dark); margin-bottom: 1.25rem; }
.rekening-box { background: var(--white); border-radius: var(--radius); padding: 1rem; margin-bottom: 1rem; }
.rekening-box h4 { font-size: .9rem; color: var(--green-dark); margin-bottom: .75rem; font-family: 'Inter', sans-serif; }
.rek-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .6rem;
  font-size: .85rem;
}
.rek-bank {
  background: var(--green);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 4px;
  min-width: 44px;
  text-align: center;
}
.rek-num { flex: 1; font-weight: 600; color: var(--gray-900); }
.copy-btn {
  background: var(--green-pale);
  color: var(--green-dark);
  border: none;
  border-radius: 6px;
  padding: .25rem .6rem;
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.copy-btn:hover { background: var(--green-light); color: var(--white); }
.modal-right { padding: 2rem; }
.modal-right h3 { font-size: 1.3rem; color: var(--green-dark); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--gray-600); margin-bottom: .35rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.bukti-preview { margin-top: .5rem; }
.bukti-preview img { max-height: 120px; border-radius: 8px; border: 2px solid var(--green-pale); }
.estimasi-total {
  background: var(--green-pale);
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .95rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.estimasi-total strong { color: var(--orange-dark); font-size: 1.1rem; }

/* ===== ADMIN PANEL ===== */
.admin-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.admin-overlay.open { opacity: 1; pointer-events: auto; }
.admin-login-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.admin-login-box h2 { font-size: 1.6rem; color: var(--green-dark); margin-bottom: .25rem; }
.admin-login-box > p { color: var(--gray-400); font-size: .9rem; margin-bottom: 1.5rem; }
.admin-login-box .form-group { text-align: left; }
.login-error { color: #dc2626; font-size: .85rem; margin-bottom: .75rem; min-height: 1.2em; }
.admin-close-btn {
  margin-top: 1rem;
  color: var(--gray-400);
  font-size: .85rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.admin-close-btn:hover { color: var(--gray-900); }
.admin-panel-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 5;
}
.admin-header h2 { font-size: 1.2rem; color: var(--green-dark); font-family: 'Inter', sans-serif; font-weight: 700; }
.admin-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gray-100);
  padding: 0 2rem;
}
.admin-tab {
  padding: .75rem 1.5rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-400);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
}
.admin-tab.active { color: var(--green); border-bottom-color: var(--green); }
.admin-tab:hover { color: var(--green-dark); }
.admin-tab-content { display: none; padding: 2rem; }
.admin-tab-content.active { display: block; }
.tab-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.tab-toolbar h3 { font-size: 1.1rem; color: var(--green-dark); font-family: 'Inter', sans-serif; }
.produk-table-wrap { overflow-x: auto; margin-bottom: 1.5rem; }
.produk-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.produk-table th {
  background: var(--gray-50);
  padding: .75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--gray-600);
  border-bottom: 2px solid var(--gray-100);
}
.produk-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.produk-table tr:hover td { background: var(--gray-50); }
.produk-table img { width: 56px; height: 42px; object-fit: cover; border-radius: 6px; }
.tbl-edit-btn, .tbl-del-btn {
  padding: .3rem .75rem;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.tbl-edit-btn { background: var(--green-pale); color: var(--green-dark); margin-right: .4rem; }
.tbl-edit-btn:hover { background: var(--green-light); color: var(--white); }
.tbl-del-btn { background: #fee2e2; color: #dc2626; }
.tbl-del-btn:hover { background: #dc2626; color: var(--white); }
.produk-form-wrap {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1rem;
}
.produk-form-wrap h4 { font-size: 1rem; color: var(--green-dark); margin-bottom: 1.25rem; font-family: 'Inter', sans-serif; }
.pf-img-preview { margin-top: .5rem; }
.pf-img-preview img { max-height: 100px; border-radius: 8px; border: 2px solid var(--green-pale); }
.form-actions { display: flex; gap: 1rem; margin-top: 1rem; }
.form-actions .btn-outline { color: var(--gray-600); border-color: var(--gray-400); }
.form-actions .btn-outline:hover { background: var(--gray-100); color: var(--gray-900); }

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
  .hero-content { margin-left: 24px; }
  .produk-grid { grid-template-columns: repeat(3, 1fr); }
  .keunggulan-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .brand-visual { min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  html { font-size: 15px; }

  /* ===== NAVBAR MOBILE ===== */
  .hamburger { display: flex; }
  .nav-container {
    padding: 0 16px;
    height: 60px;
  }
  .logo-img {
    height: 40px;
    width: 40px;
  }
  .nav-menu {
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(27,67,50,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: .75rem 0;
    transform: translateY(-110%);
    transition: transform var(--transition);
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-link {
    padding: .85rem 1.5rem;
    display: block;
    width: 100%;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-order-btn { display: none; }
  .nav-right { gap: 8px; }

  /* ===== HERO MOBILE ===== */
  .hero-content {
    padding: 80px 20px 48px;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
    line-height: 1.15;
    margin-bottom: 14px;
  }
  .hero-sub {
    font-size: 0.95rem !important;
    margin-bottom: 24px;
    line-height: 1.65;
  }
  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
    margin-bottom: 16px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1rem;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: .75rem;
    padding: 14px 16px;
    width: 100%;
  }
  .stat { padding: 0 12px; }
  .stat strong { font-size: 1.4rem; }
  .stat span { font-size: 0.72rem; }
  .stat-divider { display: none; }

  /* ===== SECTIONS ===== */
  .brand-story, .produk-section, .keunggulan, .testimoni, .cta-section { padding: 52px 0; }
  .container { padding: 0 16px; }

  /* ===== PRODUK ===== */
  .produk-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .produk-card-body h3 { font-size: 0.9rem; }
  .produk-card-body p { font-size: 0.78rem; }

  /* ===== KEUNGGULAN ===== */
  .keunggulan-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .keunggulan-card { padding: 20px 14px; }
  .k-icon { font-size: 2rem; }

  /* ===== TESTIMONI ===== */
  .testimoni-grid { grid-template-columns: 1fr; }
  .testi-prev { left: 0; }
  .testi-next { right: 0; }

  /* ===== FOOTER ===== */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* ===== MODAL ===== */
  .modal-container { grid-template-columns: 1fr; max-height: 95vh; }
  .modal-left { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .form-row { grid-template-columns: 1fr; }

  /* ===== ADMIN ===== */
  .admin-panel-container { max-height: 95vh; }
  .admin-tabs { overflow-x: auto; }

  /* ===== CTA ===== */
  .cta-content h2 { font-size: 1.6rem; }
  .btn-cta { width: 100%; text-align: center; }

  /* ===== STICKY WA ===== */
  .wa-sticky { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .produk-grid { grid-template-columns: 1fr; gap: 12px; }
  .keunggulan-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.9rem !important; }
  #notification { min-width: calc(100vw - 32px); right: 16px; left: 16px; }
  .testi-form-wrap { padding: 20px 16px; }
  .brand-grid { gap: 2rem; }
}

/* ===== ADMIN TESTIMONI ===== */
.testimoni-filter { display: flex; gap: .5rem; flex-wrap: wrap; }
.filter-btn {
  padding: .4rem 1rem; border-radius: 50px; border: 1.5px solid var(--gray-100);
  font-size: .82rem; font-weight: 600; cursor: pointer; background: var(--white);
  color: var(--gray-600); transition: all .2s ease;
}
.filter-btn.active { background: var(--green); color: var(--white); border-color: var(--green); }
.filter-btn:hover:not(.active) { border-color: var(--green); color: var(--green); }

.testimoni-admin-grid { display: flex; flex-direction: column; gap: .75rem; margin-top: 1rem; }
.testimoni-admin-card {
  background: var(--white); border: 1.5px solid var(--gray-100);
  border-radius: 10px; padding: 1rem 1.25rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.testimoni-admin-card.status-approved { border-left: 4px solid var(--green); }
.testimoni-admin-card.status-pending  { border-left: 4px solid var(--orange); }
.tac-info { flex: 1; }
.tac-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .35rem; flex-wrap: wrap; }
.tac-name { font-weight: 700; font-size: .95rem; color: var(--gray-900); }
.tac-city { font-size: .8rem; color: var(--gray-400); }
.tac-date { font-size: .78rem; color: var(--gray-400); margin-left: auto; }
.tac-stars { color: var(--orange); font-size: .9rem; }
.tac-msg { font-size: .88rem; color: var(--gray-600); line-height: 1.6; margin-bottom: .5rem; }
.tac-status {
  display: inline-block; font-size: .72rem; font-weight: 700;
  padding: .2rem .6rem; border-radius: 20px; text-transform: uppercase;
}
.tac-status.approved { background: #dcfce7; color: #16a34a; }
.tac-status.pending  { background: #fef3c7; color: #d97706; }
.tac-actions { display: flex; flex-direction: column; gap: .5rem; flex-shrink: 0; }
.tac-approve-btn {
  background: var(--green); color: var(--white); border: none;
  border-radius: 6px; padding: .4rem .9rem; font-size: .8rem; font-weight: 600;
  cursor: pointer; transition: background .2s;
}
.tac-approve-btn:hover { background: var(--green-dark); }
.tac-reject-btn {
  background: #fee2e2; color: #dc2626; border: none;
  border-radius: 6px; padding: .4rem .9rem; font-size: .8rem; font-weight: 600;
  cursor: pointer; transition: background .2s;
}
.tac-reject-btn:hover { background: #fecaca; }

.admin-spinner {
  width: 36px; height: 36px; margin: 0 auto;
  border: 3px solid var(--gray-100);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Secret logo click indicator */
.logo-click-hint {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.75); color: var(--white);
  font-size: .8rem; padding: .4rem 1rem; border-radius: 20px;
  z-index: 9998; opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.logo-click-hint.show { opacity: 1; }

/* ===== TESTIMONI SLIDER ===== */
.testimoni { padding: 80px 0; background: var(--cream); }

.testi-slider-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
  padding: 0 0 48px;
}
.testi-slider {
  display: flex;
  gap: 24px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-md);
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,.04);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-stars { font-size: 1.1rem; color: var(--orange); letter-spacing: 2px; }
.testi-text {
  font-size: .95rem; color: var(--gray-600);
  line-height: 1.75; flex: 1;
  font-style: italic;
}
.testi-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white); font-size: .85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; color: var(--gray-900); }
.testi-author span { font-size: .78rem; color: var(--gray-400); }

/* Slider controls */
.testi-prev, .testi-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--gray-100);
  font-size: 1.1rem; color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.testi-prev { left: -8px; }
.testi-next { right: -8px; }
.testi-prev:hover, .testi-next:hover {
  background: var(--green); color: var(--white);
  border-color: var(--green); transform: translateY(-50%) scale(1.08);
}
.testi-prev:disabled, .testi-next:disabled { opacity: .35; cursor: not-allowed; }

/* Dots */
.testi-dots {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-100); border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.testi-dot.active { background: var(--green); transform: scale(1.3); }

/* ===== FORM TESTIMONI ===== */
.testi-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,.04);
  max-width: 720px;
  margin: 0 auto;
}
.testi-form-header { margin-bottom: 24px; }
.testi-form-header h3 {
  font-size: 1.3rem; color: var(--green-dark);
  margin-bottom: 6px; font-family: 'Playfair Display', serif;
}
.testi-form-header p { font-size: .88rem; color: var(--gray-400); }
.testi-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Star rating interactive */
.star-rating { display: flex; gap: 6px; margin-top: 4px; }
.star-btn {
  font-size: 1.8rem; color: var(--gray-100);
  background: none; border: none; cursor: pointer;
  transition: color var(--transition), transform var(--transition);
  padding: 0; line-height: 1;
}
.star-btn:hover, .star-btn.active { color: var(--orange); transform: scale(1.15); }

.char-count { font-size: .75rem; color: var(--gray-400); text-align: right; margin-top: 4px; }
.testi-err { color: #dc2626; font-size: .75rem; display: block; margin-top: 3px; min-height: 16px; }

.btn-testi-submit {
  width: 100%; margin-top: 8px;
  padding: 14px; font-size: 1rem;
}
.btn-testi-submit:disabled { opacity: .6; cursor: not-allowed; }

/* Responsive slider */
@media (max-width: 1023px) {
  .testi-card { flex: 0 0 calc(50% - 12px); min-width: calc(50% - 12px); }
  .testi-form-wrap { padding: 28px 24px; }
}
@media (max-width: 767px) {
  .testi-card { flex: 0 0 100%; min-width: 100%; }
  .testi-form-row { grid-template-columns: 1fr; }
  .testi-prev { left: 0; }
  .testi-next { right: 0; }
}
