/* ==================== RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #3a7d44;          /* hijau daun utama */
  --primary-dark: #2d6235;     /* hijau tua */
  --primary-light: #e8f5eb;    /* hijau sangat muda */
  --primary-mid: #5a9e66;      /* hijau menengah */
  --accent: #a8d5a2;           /* hijau muda aksen */
  --accent-yellow: #d4ac2a;    /* kuning dari logo */
  --dark: #1a3320;             /* hijau gelap teks */
  --text: #2d4a35;             /* teks utama */
  --text-light: #6b8f73;       /* teks sekunder */
  --white: #ffffff;
  --bg-light: #f4faf5;         /* background hijau sangat terang */
  --bg-cream: #fafffe;         /* putih sedikit hijau */
  --green-wa: #25D366;
  --green-wa-dark: #1da851;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(58, 125, 68, 0.12);
  --shadow-lg: 0 8px 40px rgba(58, 125, 68, 0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

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

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58, 125, 68, 0.15);
  box-shadow: 0 2px 16px rgba(58, 125, 68, 0.08);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(58,125,68,0.2));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links li a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}
.nav-links li a:hover { color: var(--primary); background: var(--primary-light); }

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 8px;
  padding: 8px 18px !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 16px;
  gap: 4px;
  background: white;
  border-top: 1px solid var(--primary-light);
}
.mobile-menu.open { display: flex; }
.mobile-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text);
}
.mobile-menu li a:hover { background: var(--primary-light); color: var(--primary); }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 16px rgba(58, 125, 68, 0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(58, 125, 68, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.btn-wa {
  background: var(--green-wa);
  color: white;
  font-size: 1.05rem;
  padding: 16px 36px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.btn-wa:hover {
  background: var(--green-wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.btn-pesan {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 22px;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-pesan:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.btn-pesan.white {
  background: white;
  color: var(--primary);
}
.btn-pesan.white:hover {
  background: var(--primary-light);
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f0faf2 45%, #e4f5e8 100%);
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content { flex: 1; }

.hero-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(58,125,68,0.2);
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
  text-align: justify;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ── Hero Badges (Since + Halal) ── */
.hero-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.hero-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(58,125,68,0.25);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(58,125,68,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}
.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(58,125,68,0.2);
}

.hero-badge-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  line-height: 1;
}
.hero-badge-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.hero-badge-divider {
  width: 1px;
  height: 40px;
  background: rgba(58,125,68,0.2);
}

.hero-badge-halal {
  padding: 8px;
}
.halal-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.halal-fallback {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}

.hero-tagline-since {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-tagline-since::before,
.hero-tagline-since::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary));
  opacity: 0.4;
}
.hero-tagline-since::after {
  background: linear-gradient(90deg, var(--primary), transparent);
}
.since-line {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 4px;
  opacity: 0.75;
  white-space: nowrap;
  text-transform: uppercase;
}

.hero-stats {
  display: flex;
  gap: 40px;
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrapper {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 40% 40%, #e8f5eb, #c8eacf);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg), 0 0 0 16px rgba(58,125,68,0.06), 0 0 0 32px rgba(58,125,68,0.03);
  animation: float 4s ease-in-out infinite;
  padding: 32px;
}
.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(58,125,68,0.25));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.light * { color: white; }
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid rgba(58,125,68,0.18);
}
.section-header.light .section-tag {
  background: rgba(255,255,255,0.2);
  color: white;
  border-color: rgba(255,255,255,0.25);
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 12px;
}
.section-header.light h2 { color: white; }
.section-desc {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}
.section-header.light .section-desc { color: rgba(255,255,255,0.85); }

/* ── Filter Tab ── */
.produk-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}
.filter-btn {
  background: white;
  border: 1.5px solid rgba(58,125,68,0.25);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.produk-info-box {
  text-align: center;
  background: white;
  border: 1px dashed rgba(58,125,68,0.3);
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

/* ==================== PRODUK ==================== */
.produk {
  padding: 100px 0;
  background: var(--bg-light);
  position: relative;
}
.produk::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
}

.produk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.produk-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  border: 1px solid rgba(58,125,68,0.08);
  display: flex;
  flex-direction: column;
}
.produk-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.produk-card:hover::after { transform: scaleX(1); }
.produk-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.produk-card.featured {
  border: 2px solid var(--primary);
}

/* Gambar produk */
.produk-img-wrap {
  width: 100%;
  height: 180px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.produk-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.produk-icon-fallback {
  display: none;
  font-size: 4rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-light), #d4eed8);
}

/* Info produk */
.produk-info {
  padding: 20px 20px 8px;
  flex: 1;
}
.produk-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.produk-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 6px;
}
.harga {
  font-weight: 600;
  color: var(--primary) !important;
  font-size: 0.95rem !important;
}

/* Kontrol order */
.produk-order {
  padding: 12px 20px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(58,125,68,0.3);
  border-radius: 50px;
  overflow: hidden;
}
.qty-btn {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  transition: background 0.15s;
  line-height: 1;
}
.qty-btn:hover { background: var(--primary-light); }
.qty-val {
  min-width: 28px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}
.btn-tambah-pesanan {
  flex: 1;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-tambah-pesanan:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.btn-tambah-pesanan:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ==================== CATERING ==================== */
.catering {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #1e4a28 100%);
  position: relative;
  overflow: hidden;
}
.catering::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.catering::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.catering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.catering-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  color: white;
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.catering-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.35);
}
.catering-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
  text-align: center;
  display: block;
}
.catering-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.catering-card p {
  font-size: 0.9rem;
  opacity: 0.88;
  line-height: 1.6;
  margin-bottom: 18px;
}
.catering-card ul {
  margin-bottom: 24px;
  flex: 1;
}
.catering-card ul li {
  font-size: 0.88rem;
  padding: 4px 0;
  opacity: 0.9;
}

/* ==================== KENAPA ==================== */
.kenapa {
  padding: 100px 0;
  background: white;
}

.kenapa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.kenapa-item {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  transition: all 0.3s;
  border: 1px solid transparent;
}
.kenapa-item:hover {
  background: var(--bg-light);
  border-color: rgba(58,125,68,0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.kenapa-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.kenapa-item h3 {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 1rem;
}
.kenapa-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==================== MARQUEE CUSTOMERS ==================== */
.testimoni {
  padding: 100px 0;
  background: var(--bg-light);
  overflow: hidden;
}

.marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* fade edges */
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  flex-shrink: 0;
  width: 260px;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(58,125,68,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.marquee-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.marquee-img-wrap {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), #d4eed8);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marquee-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.marquee-item:hover .marquee-img-wrap img {
  transform: scale(1.05);
}
.marquee-fallback {
  position: absolute;
  font-size: 3rem;
  opacity: 0.3;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.marquee-caption {
  padding: 16px 18px 20px;
}
.marquee-stars {
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.marquee-caption p {
  font-size: 0.84rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 10px;
}
.marquee-caption strong {
  font-size: 0.78rem;
  color: var(--primary-dark);
  font-weight: 600;
}

/* ==================== TESTIMONI (old - keep for reference) ==================== */
.testimoni {
  padding: 100px 0;
  background: var(--bg-light);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
  border: 1px solid rgba(58,125,68,0.08);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary-light);
  line-height: 1;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.stars { font-size: 1.1rem; margin-bottom: 14px; }

.testi-card > p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
}
.testi-author span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ==================== CTA ==================== */
.cta {
  padding: 100px 24px;
  background: linear-gradient(135deg, #f0faf2 0%, #e0f2e5 50%, #d4eeda 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,125,68,0.07) 0%, transparent 70%);
}

.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 16px;
}
.cta-content > p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-note {
  margin-top: 16px !important;
  font-size: 0.9rem !important;
  color: var(--text-light) !important;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--accent-yellow), var(--primary), var(--primary-dark));
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  flex: 0 0 220px;
  max-width: 220px;
}

.footer-right {
  display: flex;
  gap: 48px;
  align-items: start;
  flex-shrink: 0;
}

.footer-kontak {
  max-width: 240px;
}

.footer-links {
  min-width: 120px;
}

.footer-links ul li a {
  font-size: 0.9rem;
  opacity: 0.75;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.footer-logo {
  margin-bottom: 14px;
}
.footer-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1) drop-shadow(0 2px 8px rgba(255,255,255,0.15));
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.75;
}

.footer-links h4, .footer-kontak h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-links ul li {
  margin-bottom: 8px;
}
.footer-links ul li a {
  font-size: 0.9rem;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer-links ul li a:hover { opacity: 1; color: var(--accent); }

.footer-kontak p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  opacity: 0.8;
}
.footer-kontak a { color: var(--accent); }
.footer-kontak a:hover { color: white; }

.footer-sosmed {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-sosmed a {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 0.82rem;
  transition: all 0.2s;
  color: rgba(255,255,255,0.8);
}
.footer-sosmed a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.55;
}

/* ==================== FLOATING WA BUTTON ==================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: pulse-wa 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.15); }
}

/* ── TOMBOL LANJUT ── */
.btn-lanjut-pesan {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  margin-bottom: 10px;
  box-shadow: 0 4px 16px rgba(58,125,68,0.3);
  transition: all 0.2s;
}
.btn-lanjut-pesan:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(58,125,68,0.4);
}

/* ==================== MODAL KONFIRMASI ==================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,51,32,0.55);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-box {
  background: white;
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(26,51,32,0.2);
  animation: modalPop 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
.modal-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 16px;
}
.modal-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--dark);
  text-align: center;
  margin-bottom: 8px;
}
.modal-box > p {
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.6;
}
.modal-pesanan-preview {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
}
.modal-preview-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}
.modal-preview-icon { font-size: 1.1rem; flex-shrink: 0; }
.modal-preview-nama { flex: 1; color: var(--dark); font-weight: 500; }
.modal-preview-qty  { color: var(--text-light); white-space: nowrap; }
.modal-preview-sub  { color: var(--primary); font-weight: 600; white-space: nowrap; }
.modal-preview-total {
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px dashed rgba(58,125,68,0.25);
  font-size: 0.92rem;
}
.modal-preview-total span { color: var(--text-light); }
.modal-preview-total strong { color: var(--primary); font-size: 1rem; }
.modal-actions {
  display: flex;
  gap: 12px;
}
.modal-btn-yes {
  flex: 1;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 13px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-btn-yes:hover { background: var(--primary-dark); }
.modal-btn-no {
  flex: 1;
  background: none;
  color: var(--text-light);
  border: 1.5px solid rgba(58,125,68,0.25);
  border-radius: 50px;
  padding: 13px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.modal-btn-no:hover { border-color: var(--primary); color: var(--primary); }

/* ==================== DAFTAR PESANAN ==================== */
.pesanan-section {
  padding: 80px 0;
  background: var(--bg-light);
  border-top: 4px solid var(--primary);
}

.pesanan-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

.pesanan-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pesanan-item {
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(58,125,68,0.1);
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.pesanan-item-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pesanan-item-img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.pesanan-item-detail {
  flex: 1;
}
.pesanan-item-detail strong {
  display: block;
  color: var(--dark);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.pesanan-item-detail span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.pesanan-item-subtotal {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  white-space: nowrap;
}

.pesanan-item-hapus {
  background: none;
  border: none;
  color: #e05c5c;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.15s;
}
.pesanan-item-hapus:hover { background: #ffeaea; }

/* Summary box */
.pesanan-summary {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid rgba(58,125,68,0.15);
  position: sticky;
  top: 90px;
}
.pesanan-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(58,125,68,0.2);
}
.pesanan-total span {
  color: var(--text-light);
  font-size: 0.95rem;
}
.pesanan-total strong {
  font-size: 1.3rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}
.pesanan-wa-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 0.95rem;
  padding: 14px 20px;
}
.btn-hapus-semua {
  width: 100%;
  background: none;
  border: 1.5px solid #e05c5c;
  color: #e05c5c;
  border-radius: 50px;
  padding: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-hapus-semua:hover {
  background: #ffeaea;
}

/* ==================== LEAF DECORATION ==================== */
.leaf-divider {
  text-align: center;
  padding: 12px 0;
  color: var(--accent);
  font-size: 1.2rem;
  letter-spacing: 8px;
  opacity: 0.6;
}

/* ==================== PRODUK PAGE ==================== */
.produk-page-header {
  padding: 120px 24px 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f0faf2 60%, #e4f5e8 100%);
  text-align: center;
}
.produk-page-header .section-tag {
  margin-bottom: 12px;
}
.produk-page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 12px;
}
.produk-page-desc {
  color: var(--text-light);
  font-size: 1rem;
}
.nav-active {
  color: var(--primary) !important;
  background: var(--primary-light) !important;
  border-radius: 8px;
}
.produk-page .produk {
  padding-top: 40px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .produk-grid,
  .catering-grid,
  .kenapa-grid,
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid { gap: 32px 48px; }
  .footer-brand { flex: 0 0 180px; max-width: 180px; }
  .pesanan-wrap { grid-template-columns: 1fr; }
  .pesanan-summary { position: static; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: block; }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 24px 60px;
    gap: 40px;
  }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-img-wrapper { width: 280px; height: 280px; }

  .produk-grid,
  .catering-grid,
  .kenapa-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid { flex-direction: column; gap: 32px; }
  .footer-right { gap: 40px; }

  .produk-order { flex-direction: column; align-items: stretch; }
  .qty-control { justify-content: center; }
}
