/* ============================================================
   PADMA CATERING — Global Stylesheet
   Version: 2.0 Multi-Page
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ============ CSS VARIABLES ============ */
:root {
  /* Brand Colors */
  --primary: #547158;
  --primary-dark: #3d5440;
  --primary-light: #6a8d6e;
  --primary-pale: #eaf0ea;
  --secondary: #90341a;
  --secondary-dark: #7a2a14;
  --secondary-light: #b04020;
  --neutral: #e3dfd9;
  --neutral-dark: #ccc8c2;
  --neutral-light: #f2eeea;

  /* Legacy vars (for compatibility) */
  --green-dark: #3d5440;
  --green-mid: #547158;
  --green-soft: #6a8d6e;
  --green-pale: #eaf0ea;
  --earth-brown: #90341a;
  --earth-warm: #b04020;
  --earth-light: #c4844a;
  --cream: #f5f2ee;
  --cream-warm: #f0ece6;
  --off-white: #fdfcfa;
  --text-dark: #1c1c1c;
  --text-mid: #4a4a4a;
  --text-soft: #7a7a7a;
  --gold: #b8962e;
  --gold-light: #d4af5a;

  /* Shadows */
  --shadow-soft: 0 4px 30px rgba(61, 84, 64, 0.08);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.10);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.14);

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  --font-body: 'Jost', 'Avenir Next', 'Avenir', 'Gill Sans', sans-serif;

  /* Spacing */
  --section-pad: 96px 5%;
  --section-pad-sm: 64px 5%;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* ============ TYPOGRAPHY SYSTEM ============ */
.heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
}

.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--earth-brown);
}

.body-sm {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-soft);
}

/* ============ BUTTONS ============ */
.btn-primary {
  background: var(--secondary);
  color: white;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(144, 52, 26, 0.35);
}

.btn-secondary {
  background: var(--primary);
  color: white;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: white;
}

.btn-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-text:hover { color: var(--earth-brown); gap: 12px; }
.btn-text svg { width: 14px; height: 14px; }

/* ============ SECTION LAYOUT HELPERS ============ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--earth-brown);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--text-soft);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px auto 0;
}

.orn-line { width: 48px; height: 1px; background: var(--earth-light); }
.orn-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--earth-brown);
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(61, 84, 64, 0.10);
  padding: 12px 5%;
}

.navbar.solid {
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(61, 84, 64, 0.10);
  padding: 14px 5%;
}

.nav-logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
  transition: height 0.3s;
}

.navbar.scrolled .nav-logo img,
.navbar.solid .nav-logo img {
  height: 38px;
  filter: none;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}

.navbar.scrolled .nav-links a,
.navbar.solid .nav-links a {
  color: var(--text-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active-page::after {
  transform: scaleX(1);
}

.nav-links a.active-page {
  color: var(--primary);
}

.navbar.scrolled .nav-links a.nav-cta,
.navbar.solid .nav-links a.nav-cta {
  color: white;
}

.nav-cta {
  background: var(--secondary);
  color: white !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--secondary-light) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  transition: all 0.3s;
  border-radius: 2px;
}

.navbar.scrolled .hamburger span,
.navbar.solid .hamburger span {
  background: var(--text-dark);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--off-white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--primary); }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 5%;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-dark);
}

/* ============ PAGE HERO (non-home) ============ */
.page-hero {
  min-height: 420px;
  background: var(--primary-dark);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 5% 64px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  transform: scale(1.04);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 50, 30, 0.4) 0%,
    rgba(61, 84, 64, 0.65) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content .eyebrow {
  color: var(--earth-light);
  margin-bottom: 12px;
  display: block;
}

.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero-content h1 em {
  font-style: italic;
  color: var(--earth-light);
}

.page-hero-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  line-height: 1.8;
}

/* ============ TRUST / STATS ============ */
.trust-section {
  padding: 80px 5%;
  background: var(--cream);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 800px;
  margin: 0 auto 56px;
  border: 1px solid rgba(84, 113, 88, 0.15);
}

.stat-item {
  padding: 32px 20px;
  border-right: 1px solid rgba(84, 113, 88, 0.15);
  transition: background 0.3s;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--primary-pale); }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  text-transform: uppercase;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 32px;
}

.client-badge {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-soft);
  padding: 10px 20px;
  border: 1px solid rgba(84, 113, 88, 0.18);
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}

.client-badge:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--primary-pale);
}

/* ============ CATEGORY GRID ============ */
.menu-category {
  padding: var(--section-pad);
  background: var(--off-white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: white;
  border: 1px solid rgba(84, 113, 88, 0.10);
  transition: all 0.4s ease;
}

.cat-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}

.cat-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.cat-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cat-card:hover .cat-card-image img { transform: scale(1.06); }

.cat-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-dark);
  color: white;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.cat-card-body { padding: 28px 28px 32px; }

.cat-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  opacity: 0.65;
  color: var(--primary);
}

.cat-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.cat-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}

.cat-highlights { margin-bottom: 22px; }

.cat-highlights li {
  font-size: 0.8rem;
  color: var(--text-mid);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.cat-highlights li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--earth-light);
  font-size: 0.7rem;
}

/* ============ MENU VISUAL TABS ============ */
.menu-visual {
  background: var(--cream-warm);
  padding: var(--section-pad);
  padding-left: 0;
  padding-right: 0;
}

.menu-visual .section-header { padding: 0 5%; }

.menu-visual-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 48px 0;
  border-bottom: 1px solid rgba(84, 113, 88, 0.15);
  padding: 0 5%;
  overflow-x: auto;
}

.menu-tab {
  padding: 14px 28px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  font-family: var(--font-body);
}

.menu-tab.active {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

.menu-tab:hover { color: var(--primary); }

.menu-panels { padding: 0 5%; }
.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-card-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.menu-card-left {
  background: var(--primary-dark);
  position: relative;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  overflow: hidden;
}

.menu-card-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.04) 0%, transparent 40%);
}

.menu-card-left-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.5) 20px,
    rgba(255,255,255,0.5) 21px
  );
}

.menu-card-logo {
  position: relative;
  z-index: 2;
}

.menu-card-logo img {
  width: 80px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.menu-card-title-area {
  position: relative;
  z-index: 2;
}

.menu-card-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--earth-light);
  margin-bottom: 8px;
}

.menu-card-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: white;
  line-height: 1;
}

.menu-card-img {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.menu-card-right {
  background: white;
  padding: 48px 44px;
}

.menu-list-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(84, 113, 88, 0.12);
}

.menu-list-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  margin-bottom: 28px;
}

.menu-list-item {
  font-size: 0.83rem;
  color: var(--text-mid);
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-list-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--earth-light);
  flex-shrink: 0;
}

.menu-more-note {
  font-size: 0.78rem;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 24px;
}

.menu-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-green {
  background: var(--primary);
  color: white;
  padding: 12px 28px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  transition: all 0.3s;
}

.btn-green:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-text-link {
  font-size: 0.78rem;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.btn-text-link:hover { color: var(--earth-brown); }

/* ============ PAKET BUFFET ============ */
.paket-buffet {
  padding: var(--section-pad);
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.paket-buffet::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,0.012) 30px,
    rgba(255,255,255,0.012) 31px
  );
}

.paket-buffet .section-header { position: relative; z-index: 2; }
.paket-buffet .section-eyebrow { color: var(--earth-light); }
.paket-buffet .section-title { color: white; }
.paket-buffet .section-sub { color: rgba(255,255,255,0.6); }
.paket-buffet .orn-line { background: rgba(255,255,255,0.2); }
.paket-buffet .orn-dot { background: var(--earth-light); }

.paket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.paket-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 36px 28px 40px;
  position: relative;
  transition: all 0.4s ease;
}

.paket-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}

.paket-card.recommended {
  background: white;
  border-color: white;
}

.paket-card.recommended .paket-price,
.paket-card.recommended .paket-name { color: var(--text-dark); }

.paket-card.recommended .paket-item { color: var(--text-mid); }
.paket-card.recommended .paket-item::before { background: var(--primary); }
.paket-card.recommended .paket-sub { color: var(--text-soft); }

.recommended-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--secondary);
  color: white;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
}

.paket-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  margin-bottom: 20px;
  opacity: 0.85;
}

.paket-card.recommended .paket-img { opacity: 1; }

.paket-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.paket-price span {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.7;
}

.paket-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.paket-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 18px;
}

.paket-card.recommended .paket-divider { background: rgba(84,113,88,0.15); }

.paket-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.paket-items { margin-bottom: 24px; }

.paket-item {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  padding: 4px 0 4px 14px;
  position: relative;
}

.paket-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--earth-light);
}

.paket-btn {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  transition: all 0.3s;
  font-family: var(--font-body);
}

.paket-btn:hover {
  background: white;
  color: var(--primary-dark);
  border-color: white;
}

.paket-card.recommended .paket-btn {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

.paket-card.recommended .paket-btn:hover {
  background: var(--secondary-light);
}

/* Urgency bar */
.urgency-bar {
  background: var(--secondary);
  color: white;
  text-align: center;
  padding: 12px 5%;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 3;
}

.urgency-bar span { opacity: 0.75; margin: 0 12px; }

/* ============ WEDDING SECTION ============ */
.wedding-section {
  padding: 0;
  overflow: hidden;
}

.wedding-hero-img {
  height: 480px;
  position: relative;
  overflow: hidden;
}

.wedding-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.wedding-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,40,10,0.82) 0%, rgba(20,40,10,0.35) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.wedding-hero-text { max-width: 500px; }

.wedding-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--earth-light);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.wedding-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}

.wedding-title em {
  font-style: italic;
  color: var(--earth-light);
}

.wedding-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 28px;
}

.wedding-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--cream);
}

.ws-card {
  padding: 48px 36px;
  border-right: 1px solid rgba(84,113,88,0.10);
  transition: background 0.3s;
}

.ws-card:last-child { border-right: none; }
.ws-card:hover { background: var(--primary-pale); }

.ws-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(84,113,88,0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.ws-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.ws-desc {
  font-size: 0.83rem;
  color: var(--text-soft);
  line-height: 1.85;
}

/* ============ ADDONS + TESTIMONI ============ */
.addons-section {
  padding: var(--section-pad);
  background: var(--off-white);
}

.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.sweet-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 32px;
}

.sweet-img-main {
  grid-column: 1 / -1;
  height: 260px;
  overflow: hidden;
}

.sweet-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.sweet-img-main:hover img { transform: scale(1.04); }

.sweet-img-small {
  height: 150px;
  overflow: hidden;
}

.sweet-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.sweet-img-small:hover img { transform: scale(1.04); }

.sweet-tag {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 16px;
}

.sweet-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.sweet-desc {
  font-size: 0.87rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 24px;
}

.sweet-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.sf-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-mid);
}

.sf-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--earth-light);
  flex-shrink: 0;
}

/* Testimonials */
.testi-header { margin-bottom: 32px; }

.testi-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testi-card {
  background: white;
  border: 1px solid rgba(84,113,88,0.10);
  padding: 24px 28px;
  position: relative;
  transition: all 0.3s;
}

.testi-card:hover {
  border-color: rgba(84,113,88,0.25);
  box-shadow: var(--shadow-soft);
}

.testi-quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--primary-pale);
  position: absolute;
  top: 20px;
  left: 20px;
}

.testi-text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
  padding-top: 16px;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}

.testi-stars span { color: var(--gold); font-size: 0.85rem; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-dark);
}

.testi-event {
  font-size: 0.72rem;
  color: var(--text-soft);
}

/* ============ QUALITY SECTION ============ */
.quality-section {
  padding: var(--section-pad);
  background: var(--cream);
  position: relative;
}

.quality-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.quality-img-stack {
  position: relative;
  height: 480px;
}

.q-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 85%;
  overflow: hidden;
}

.q-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.q-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 50%;
  overflow: hidden;
  border: 6px solid var(--cream);
}

.q-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.q-cert-badge {
  position: absolute;
  top: 36px;
  right: 0;
  background: var(--primary-dark);
  color: white;
  padding: 14px 18px;
  text-align: center;
}

.q-cert-badge .q-cert-main {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

.q-cert-badge .q-cert-sub {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
}

.quality-pillars {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.qp-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.qp-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-pale);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qp-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary-dark);
}

.qp-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.qp-desc {
  font-size: 0.83rem;
  color: var(--text-soft);
  line-height: 1.75;
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 100px 5%;
  background: var(--cream-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84,113,88,0.06) 0%, transparent 70%);
}

.final-cta-logo {
  width: 60px;
  margin: 0 auto 24px;
  opacity: 0.35;
}

.final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.15;
  position: relative;
}

.final-cta-title em {
  font-style: italic;
  color: var(--primary-dark);
}

.final-cta-sub {
  font-size: 0.9rem;
  color: var(--text-soft);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.8;
  position: relative;
}

.cta-chips {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
}

.cta-chip {
  background: white;
  border: 1px solid rgba(84,113,88,0.18);
  padding: 10px 20px;
  font-size: 0.8rem;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  border-radius: 2px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  padding: 64px 5% 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  width: 120px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  transition: all 0.3s;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.footer-col ul li {
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--earth-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.halal-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}

.halal-circle {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.52rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
}

/* ============ STICKY WA BUTTON ============ */
.sticky-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 22px 14px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.3s;
  animation: waFloat 3s ease-in-out infinite;
  font-family: var(--font-body);
}

.sticky-wa:hover {
  background: #1ebe58;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  animation: none;
}

.sticky-wa svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

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

/* WA icon */
.wa-icon { width: 20px; height: 20px; }

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ MENU PAGE SPECIFIC ============ */
.menu-full-section {
  padding: var(--section-pad);
  background: var(--off-white);
}

.menu-full-section:nth-child(even) { background: var(--cream); }

.menu-full-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.menu-full-left {
  background: var(--primary-dark);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.menu-full-left-img {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.menu-full-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-full-left-content { position: relative; z-index: 2; }

.menu-full-category {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--earth-light);
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.menu-full-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
}

.menu-full-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

.menu-full-right {
  background: white;
  padding: 48px 44px;
}

.menu-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 32px;
  margin-bottom: 32px;
}

.menu-full-item {
  font-size: 0.83rem;
  color: var(--text-mid);
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-full-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--earth-light);
  flex-shrink: 0;
}

.menu-section-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 32px;
}

.menu-photo {
  height: 180px;
  overflow: hidden;
  border-radius: 0;
}

.menu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.menu-photo:hover img { transform: scale(1.06); }

/* ============ PAKET PAGE SPECIFIC ============ */
.paket-page-section {
  padding: var(--section-pad);
  background: var(--primary-dark);
}

.paket-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.paket-page-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
}

.paket-page-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.paket-page-card.recommended {
  background: white;
  border-color: white;
}

.paket-page-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.paket-page-card.recommended .paket-page-img { opacity: 1; }

.paket-page-body { padding: 32px 36px 36px; }

.paket-page-card.recommended .paket-price { color: var(--text-dark); }
.paket-page-card.recommended .paket-name { color: var(--text-dark); }
.paket-page-card.recommended .paket-item { color: var(--text-mid); }
.paket-page-card.recommended .paket-sub { color: var(--text-soft); }
.paket-page-card.recommended .paket-divider { background: rgba(84,113,88,0.15); }
.paket-page-card.recommended .paket-item::before { background: var(--primary); }

/* ============ LAYANAN PAGE SPECIFIC ============ */
.layanan-hero-section {
  padding: 0;
  background: var(--off-white);
}

.layanan-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.layanan-block:nth-child(even) .layanan-block-img { order: 2; }
.layanan-block:nth-child(even) .layanan-block-text { order: 1; }

.layanan-block-img {
  overflow: hidden;
  min-height: 420px;
}

.layanan-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.layanan-block:hover .layanan-block-img img { transform: scale(1.04); }

.layanan-block-text {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}

.layanan-block:nth-child(odd) .layanan-block-text { background: var(--cream); }

.layanan-num {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(84,113,88,0.1);
  line-height: 1;
  margin-bottom: 8px;
}

.layanan-name {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.layanan-name em {
  font-style: italic;
  color: var(--earth-brown);
}

.layanan-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.9;
  margin-bottom: 24px;
}

.layanan-features { margin-bottom: 32px; }

.layanan-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.layanan-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 5px;
}

/* ============ TENTANG PAGE SPECIFIC ============ */
.tentang-intro {
  padding: 96px 5% 80px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.tentang-story {
  padding: 0 5% 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.tentang-story-text {}

.tentang-story-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.tentang-story-text h2 em {
  font-style: italic;
  color: var(--primary);
}

.tentang-story-text p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.9;
  margin-bottom: 20px;
}

.tentang-img-stack {
  position: relative;
  height: 500px;
}

.ti-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%;
  height: 85%;
  overflow: hidden;
}

.ti-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ti-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 48%;
  height: 48%;
  overflow: hidden;
  border: 6px solid var(--off-white);
}

.ti-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tentang-values {
  background: var(--primary-dark);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.tentang-values::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,0.012) 30px,
    rgba(255,255,255,0.012) 31px
  );
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 40px 32px;
  transition: background 0.3s;
}

.value-card:hover { background: rgba(255,255,255,0.09); }

.value-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--earth-light);
}

.value-icon svg { width: 100%; height: 100%; }

.value-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: white;
  margin-bottom: 12px;
}

.value-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* ============ KONTAK PAGE SPECIFIC ============ */
.kontak-section {
  padding: var(--section-pad);
  background: var(--off-white);
}

.kontak-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.kontak-info-block {
  padding: 40px;
  background: var(--primary-dark);
  color: white;
}

.kontak-info-block h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.kontak-info-block p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 32px;
  line-height: 1.7;
}

.kontak-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.kontak-item:last-of-type { border-bottom: none; }

.kontak-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kontak-item-icon svg { width: 20px; height: 20px; }

.kontak-item-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 4px;
}

.kontak-item-value {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}

.kontak-form-side {}

.kontak-form-side h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.kontak-form-side > p {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 32px;
  line-height: 1.7;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(84,113,88,0.20);
  background: white;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-dark);
  transition: border-color 0.3s;
  outline: none;
  border-radius: 0;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.kontak-wa-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 18px 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  margin-bottom: 16px;
}

.kontak-wa-big:hover {
  background: #1ebe58;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

.kontak-wa-big svg { width: 24px; height: 24px; }

/* ============ RESPONSIVENESS ============ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(84,113,88,0.15); }

  .category-grid { grid-template-columns: 1fr; }
  .menu-card-layout { grid-template-columns: 1fr; }
  .menu-full-layout { grid-template-columns: 1fr; }
  .menu-card-left { min-height: 180px; }
  .menu-card-img { display: none; }

  .paket-grid { grid-template-columns: repeat(2, 1fr); }
  .paket-page-grid { grid-template-columns: 1fr; }

  .wedding-hero-img { height: 320px; }
  .wedding-services { grid-template-columns: 1fr; }
  .ws-card { border-right: none; border-bottom: 1px solid rgba(84,113,88,0.10); }
  .ws-card:last-child { border-bottom: none; }

  .addons-grid { grid-template-columns: 1fr; gap: 48px; }
  .sweet-features { grid-template-columns: 1fr; }

  .quality-layout { grid-template-columns: 1fr; gap: 40px; }
  .quality-img-stack { height: 300px; }

  .layanan-block { grid-template-columns: 1fr; }
  .layanan-block:nth-child(even) .layanan-block-img { order: 0; }
  .layanan-block:nth-child(even) .layanan-block-text { order: 0; }
  .layanan-block-img { min-height: 280px; }
  .layanan-block-text { padding: 40px 5%; }

  .tentang-story { grid-template-columns: 1fr; gap: 40px; }
  .tentang-img-stack { height: 320px; }
  .values-grid { grid-template-columns: 1fr; }

  .kontak-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .menu-list-columns { grid-template-columns: 1fr; }
  .menu-full-grid { grid-template-columns: 1fr; }
  .menu-section-photos { grid-template-columns: 1fr 1fr; }

  .hero-actions { flex-direction: column; align-items: center; }

  .sticky-wa span { display: none; }
  .sticky-wa { padding: 16px; }
}

@media (max-width: 600px) {
  :root { --section-pad: 64px 5%; }

  .paket-grid { grid-template-columns: 1fr; }
  .menu-section-photos { grid-template-columns: 1fr; }
  .menu-visual-tabs { gap: 0; }
  .page-hero { min-height: 320px; padding: 0 5% 48px; }
  .page-hero-content h1 { font-size: 2.2rem; }
}

/* ============================================================
   LAYANAN PAGE — layanan.html
   ============================================================ */

/* Intro Strip */
.layanan-intro-strip {
  background: var(--primary);
  padding: 20px 5%;
}
.layanan-intro-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.layanan-intro-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.layanan-intro-icon { color: var(--neutral-dark); font-size: 0.7rem; }
.layanan-intro-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.25); }

/* Layanan Block — alternating image + content */
.layanan-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  align-items: stretch;
}
.layanan-block-reverse { direction: rtl; }
.layanan-block-reverse > * { direction: ltr; }

.layanan-block-img {
  position: relative;
  overflow: hidden;
}
.layanan-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.layanan-block:hover .layanan-block-img img { transform: scale(1.04); }

.layanan-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 2px;
}
.layanan-img-badge.gubukan { background: var(--secondary); }
.layanan-img-badge.dekorasi { background: var(--primary-dark); }

.layanan-block-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: var(--off-white);
}
.layanan-lead {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
}
.layanan-block-content p {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.layanan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 8px 0;
}
.layanan-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lf-icon {
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.layanan-features li > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.layanan-features li strong {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}
.layanan-features li span {
  font-size: 0.87rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.layanan-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Event Types */
.event-types {
  padding: var(--section-pad);
  background: var(--neutral-light);
}
.event-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 48px auto 0;
}
.event-type-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--neutral);
  transition: box-shadow 0.3s, transform 0.3s;
}
.event-type-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.et-icon { font-size: 2rem; margin-bottom: 12px; }
.event-type-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.event-type-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* Proses Section */
.proses-section {
  background: var(--primary-dark);
  padding: var(--section-pad);
}
.proses-inner { max-width: 960px; margin: 0 auto; }
.proses-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.proses-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.proses-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  line-height: 1;
}
.proses-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 8px;
}
.proses-content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* Layanan Final CTA */
.layanan-final-cta {
  background: var(--cream);
  padding: var(--section-pad);
  text-align: center;
}
.layanan-final-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.layanan-final-inner h2 { font-size: 2.6rem; }
.layanan-final-inner p { color: var(--text-mid); font-size: 1rem; line-height: 1.8; }

.urgency-bar {
  background: var(--secondary);
  color: #fff;
  text-align: center;
  padding: 12px 5%;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  border-radius: 4px;
}

/* ============================================================
   TENTANG PAGE — tentang.html
   ============================================================ */

/* Brand Story */
.tentang-story {
  padding: var(--section-pad);
  background: var(--off-white);
}
.tentang-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.tentang-story-img {
  position: relative;
}
.tentang-story-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
}
.tentang-story-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--primary);
  color: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: var(--shadow-card);
}
.tsb-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}
.tsb-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-align: center;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.tentang-story-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tentang-story-content p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.85;
}

.tentang-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
  padding: 28px 0;
  border-top: 1px solid var(--neutral);
}
.ts-item { display: flex; flex-direction: column; gap: 4px; }
.ts-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-dark);
  font-weight: 500;
  line-height: 1;
}
.ts-label {
  font-size: 0.78rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}
.ts-divider { width: 1px; height: 40px; background: var(--neutral); }

/* Values Section */
.tentang-values {
  background: var(--primary-dark);
  padding: var(--section-pad);
}
.tentang-values-inner { max-width: 1000px; margin: 0 auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.value-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  transition: background 0.3s;
}
.value-card:hover { background: rgba(255,255,255,0.12); }
.value-icon { font-size: 2.4rem; margin-bottom: 16px; }
.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--neutral);
  margin-bottom: 12px;
}
.value-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.8; }

/* Quality Section */
.quality-section {
  padding: var(--section-pad);
  background: var(--cream);
}
.quality-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.quality-content { display: flex; flex-direction: column; gap: 24px; }
.quality-list { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.ql-item { display: flex; gap: 16px; align-items: flex-start; }
.ql-check {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ql-text { display: flex; flex-direction: column; gap: 3px; }
.ql-text strong { font-size: 0.97rem; color: var(--text-dark); font-weight: 600; }
.ql-text span { font-size: 0.87rem; color: var(--text-soft); line-height: 1.65; }

.quality-img {
  position: relative;
}
.quality-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
}
.quality-img-overlay {
  position: absolute;
  top: 24px;
  left: 24px;
}
.qi-badge {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 2px;
}

/* Visi Section */
.visi-section {
  padding: var(--section-pad);
  background: var(--off-white);
}
.visi-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.visi-card {
  border: 1px solid var(--neutral);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  background: #fff;
}
.visi-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.visi-icon { font-size: 2.2rem; margin-bottom: 16px; }
.visi-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.visi-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.8; }

/* Positioning Section */
.positioning-section {
  padding: var(--section-pad);
  background: var(--neutral-light);
}
.positioning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.positioning-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 4px;
}
.positioning-content { display: flex; flex-direction: column; gap: 20px; }
.positioning-content p { font-size: 0.96rem; color: var(--text-mid); line-height: 1.85; }

/* Tentang Final CTA */
.tentang-final-cta {
  background: var(--primary-dark);
  padding: var(--section-pad);
  text-align: center;
}
.tfc-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.tfc-inner h2 { font-size: 2.5rem; color: #fff; }
.tfc-inner h2 em { color: var(--neutral); }
.tfc-inner p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.8; }

/* ============================================================
   KONTAK PAGE — kontak.html
   ============================================================ */

.urgency-bar-standalone {
  background: var(--secondary);
  color: #fff;
  text-align: center;
  padding: 14px 5%;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.kontak-section {
  padding: var(--section-pad);
  background: var(--off-white);
}
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

/* Kontak Info */
.kontak-info { display: flex; flex-direction: column; gap: 24px; }
.kontak-info h2 { font-size: 2.5rem; }
.kontak-info > p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.8; }

.kontak-wa-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #25D366;
  color: #fff;
  padding: 20px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.kontak-wa-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
}
.kontak-wa-text { display: flex; flex-direction: column; gap: 2px; }
.kontak-wa-label { font-size: 0.8rem; opacity: 0.85; letter-spacing: 0.04em; }
.kontak-wa-number { font-family: var(--font-heading); font-size: 1.5rem; letter-spacing: 0.02em; }

.kontak-details { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.kd-item { display: flex; gap: 16px; align-items: flex-start; }
.kd-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.kd-text { display: flex; flex-direction: column; gap: 3px; }
.kd-text strong { font-size: 0.95rem; color: var(--text-dark); font-weight: 600; }
.kd-text span { font-size: 0.87rem; color: var(--text-soft); line-height: 1.6; }

/* Form */
.kontak-form-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 40px 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--neutral);
}
.kontak-form-header { margin-bottom: 28px; }
.kontak-form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.kontak-form-header p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.65; }

.kontak-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--neutral);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
}
.form-group textarea { resize: vertical; }

.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.25s, transform 0.25s;
  margin-top: 8px;
}
.form-submit-btn:hover { background: #1da851; transform: translateY(-2px); }
.form-note {
  font-size: 0.78rem;
  color: var(--text-soft);
  text-align: center;
  margin-top: -6px;
}

/* FAQ */
.faq-section {
  padding: var(--section-pad);
  background: var(--neutral-light);
}
.faq-inner { max-width: 1000px; margin: 0 auto; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.faq-item {
  background: #fff;
  border-radius: 8px;
  padding: 28px 28px;
  border: 1px solid var(--neutral);
  transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-card); }
.faq-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.faq-item p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }

/* page-hero-short variant */
.page-hero-short { min-height: 380px; }

/* btn-outline variant */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1.5px solid var(--primary-light);
  color: var(--primary-light);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

/* ============================================================
   RESPONSIVE — New Pages
   ============================================================ */
@media (max-width: 900px) {
  .layanan-block { grid-template-columns: 1fr; min-height: auto; }
  .layanan-block-reverse { direction: ltr; }
  .layanan-block-content { padding: 40px 32px; }
  .layanan-block-img { height: 320px; }
  .layanan-block-img img { height: 100%; }
  .proses-steps { grid-template-columns: 1fr 1fr; }
  .event-types-grid { grid-template-columns: 1fr 1fr; }

  .tentang-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .tentang-story-badge { right: 16px; bottom: -16px; width: 100px; height: 100px; }
  .tentang-story-img img { height: 380px; }
  .quality-inner { grid-template-columns: 1fr; gap: 48px; }
  .quality-img img { height: 360px; }
  .visi-inner { grid-template-columns: 1fr; gap: 24px; }
  .positioning-grid { grid-template-columns: 1fr; gap: 40px; }
  .positioning-img img { height: 320px; }

  .kontak-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 600px) {
  .layanan-intro-inner { flex-direction: column; gap: 12px; }
  .layanan-intro-divider { width: 40px; height: 1px; }
  .proses-steps { grid-template-columns: 1fr; }
  .event-types-grid { grid-template-columns: 1fr; }
  .tentang-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .ts-divider { width: 40px; height: 1px; }
  .visi-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .kontak-form-wrap { padding: 28px 20px; }
  .layanan-cta-row { flex-direction: column; }
}

/* ============================================================
   DROPDOWN NAVBAR
   ============================================================ */
.nav-links li { position: relative; }
.nav-links li:hover > .nav-dropdown { display: block; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  min-width: 200px;
  z-index: 200;
  padding: 8px 0;
  border-top: 3px solid var(--primary);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--text-dark) !important;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover { background: var(--primary-pale); color: var(--primary-dark) !important; }

.nav-links > li > a.has-dropdown::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.7;
}

/* ============================================================
   TESTIMONI PAGE
   ============================================================ */
.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 48px auto 0;
  padding: 0 5%;
}
.testimoni-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px 28px;
  border: 1px solid var(--neutral);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimoni-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.testimoni-stars { color: #f4a400; font-size: 1.1rem; letter-spacing: 2px; }
.testimoni-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.75;
}
.testimoni-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimoni-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.testimoni-name { font-weight: 600; font-size: 0.92rem; color: var(--text-dark); }
.testimoni-event { font-size: 0.8rem; color: var(--text-soft); }
.testimoni-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: 1100px;
  margin: 64px auto 0;
  padding: 0 5%;
}
.testimoni-photo-grid img {
  width: 100%; height: 220px; object-fit: cover;
  transition: opacity 0.3s;
}
.testimoni-photo-grid img:hover { opacity: 0.85; }

/* ============================================================
   WEDDING PAGE — Carousel
   ============================================================ */
.wedding-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  height: 580px;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}
.carousel-slide img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.88;
}
.carousel-caption {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  background: rgba(61,84,64,0.75);
  color: #fff;
  padding: 10px 28px;
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none; color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: rgba(255,255,255,0.3); }
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }
.carousel-dots {
  position: absolute;
  bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer; transition: background 0.2s;
  border: none;
}
.carousel-dot.active { background: #fff; }

/* ============================================================
   NASI BOX PAGE
   ============================================================ */
.nasibox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 48px auto 0;
  padding: 0 5%;
}
.nasibox-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--neutral);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s, transform 0.3s;
}
.nasibox-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.nasibox-card img { width: 100%; height: 220px; object-fit: cover; }
.nasibox-card-content { padding: 24px 22px; }
.nasibox-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem; color: var(--primary-dark);
  margin-bottom: 8px;
}
.nasibox-card-content p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   SNACK PAGE
   ============================================================ */
.snack-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.snack-section {
  padding: var(--section-pad);
  background: var(--off-white);
}
.snack-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 80px;
}
.snack-block-reverse { direction: rtl; }
.snack-block-reverse > * { direction: ltr; }
.snack-block img { width: 100%; height: 400px; object-fit: cover; border-radius: 8px; }
.snack-content { display: flex; flex-direction: column; gap: 18px; }
.snack-content h2 { font-size: 2.2rem; }
.snack-content p { font-size: 0.96rem; color: var(--text-mid); line-height: 1.85; }

/* ============================================================
   HALAL CERTIFICATE SECTION
   ============================================================ */
.halal-cert-section {
  background: var(--primary-pale);
  padding: var(--section-pad);
  text-align: center;
}
.halal-cert-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.halal-cert-badge {
  width: 100px; height: 100px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff; gap: 2px;
  font-family: var(--font-heading);
}
.halal-cert-badge span:first-child { font-size: 1.6rem; font-weight: 600; }
.halal-cert-badge span:last-child { font-size: 0.65rem; letter-spacing: 0.08em; }
.halal-cert-details {
  background: #fff;
  border-radius: 8px;
  padding: 24px 32px;
  border: 1px solid var(--neutral);
  text-align: left;
  width: 100%;
}
.halal-cert-details p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }
.halal-cert-details strong { color: var(--primary-dark); }
.halal-cert-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   FOOTER UPDATE — address/contact info
   ============================================================ */
.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 10px;
}
.footer-info-item .fi-emoji { flex-shrink: 0; font-size: 1rem; margin-top: 1px; }
.footer-info-item a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-info-item a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE — New Pages
   ============================================================ */
@media (max-width: 900px) {
  .testimoni-grid { grid-template-columns: 1fr 1fr; }
  .testimoni-photo-grid { grid-template-columns: repeat(2,1fr); }
  .nasibox-grid { grid-template-columns: 1fr 1fr; }
  .snack-block { grid-template-columns: 1fr; gap: 32px; }
  .snack-block-reverse { direction: ltr; }
  .wedding-carousel { height: 400px; }
}
@media (max-width: 600px) {
  .testimoni-grid { grid-template-columns: 1fr; }
  .testimoni-photo-grid { grid-template-columns: 1fr 1fr; }
  .nasibox-grid { grid-template-columns: 1fr; }
  .wedding-carousel { height: 280px; }
}


/* ============================================================
   PADMA REFINEMENT — Premium Mobile Motion & Accessibility
   ============================================================ */
:root {
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft-premium: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

body.mobile-menu-open {
  overflow: hidden;
}

.navbar,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-outline-dark,
.btn-green,
.paket-btn,
.kontak-wa-btn,
.sticky-wa,
.reveal {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-bg,
.page-hero-bg,
.wedding-carousel-track,
.sticky-wa {
  will-change: transform;
}

.navbar,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-outline-dark,
.btn-green,
.paket-btn,
.kontak-wa-btn,
.sticky-wa,
.mobile-nav,
.mobile-nav a,
.mobile-close,
.hamburger span {
  transition-timing-function: var(--ease-premium);
}

.mobile-nav {
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.mobile-nav.open {
  display: flex;
  animation: mobileNavFade 0.36s var(--ease-premium) both;
}

.mobile-nav.open a {
  animation: mobileLinkUp 0.42s var(--ease-premium) both;
}

.mobile-nav.open a:nth-of-type(1) { animation-delay: 0.02s; }
.mobile-nav.open a:nth-of-type(2) { animation-delay: 0.04s; }
.mobile-nav.open a:nth-of-type(3) { animation-delay: 0.06s; }
.mobile-nav.open a:nth-of-type(4) { animation-delay: 0.08s; }
.mobile-nav.open a:nth-of-type(5) { animation-delay: 0.10s; }
.mobile-nav.open a:nth-of-type(6) { animation-delay: 0.12s; }
.mobile-nav.open a:nth-of-type(7) { animation-delay: 0.14s; }
.mobile-nav.open a:nth-of-type(8) { animation-delay: 0.16s; }
.mobile-nav.open a:nth-of-type(9) { animation-delay: 0.18s; }
.mobile-nav.open a:nth-of-type(10) { animation-delay: 0.20s; }
.mobile-nav.open a:nth-of-type(11) { animation-delay: 0.22s; }

@keyframes mobileNavFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes mobileLinkUp {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 900px) {
  .navbar,
  .navbar.scrolled,
  .navbar.solid {
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
  }

  .mobile-nav {
    padding: 96px 7% 40px;
    gap: 24px;
  }

  .mobile-nav a {
    font-size: clamp(1.55rem, 7vw, 2.15rem);
    line-height: 1.15;
    text-align: center;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .btn-outline-dark,
  .btn-green,
  .paket-btn,
  .kontak-wa-btn,
  .form-submit-btn {
    min-height: 48px;
  }

  .sticky-wa {
    right: 18px;
    bottom: 18px;
  }
}

@media (hover: none) and (pointer: coarse) {
  a,
  button,
  .hamburger {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  .btn-primary:active,
  .btn-secondary:active,
  .btn-outline:active,
  .btn-outline-dark:active,
  .btn-green:active,
  .paket-btn:active,
  .kontak-wa-btn:active,
  .sticky-wa:active {
    transform: scale(0.985);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .sticky-wa,
  .mobile-nav.open,
  .mobile-nav.open a {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   URGENCY STRIP
   ============================================================ */
.urgency-strip {
  background: var(--primary-dark);
  padding: 12px 5%;
  overflow: hidden;
}
.urgency-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.urgency-item {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}
.urgency-item strong { color: #ffd700; }
.urgency-divider {
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
}

/* ============================================================
   SWEET CORNER V2 — 1 besar + 4 kecil horizontal
   ============================================================ */
.sweet-img-grid-v2 { display: flex; flex-direction: column; gap: 8px; }
.sweet-frame-main { width: 100%; overflow: hidden; border-radius: 8px; }
.sweet-frame-main img { width: 100%; height: 280px; object-fit: cover; display: block; border-radius: 8px; }
.sweet-frame-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.sweet-frame-small { overflow: hidden; border-radius: 6px; }
.sweet-frame-small img { width: 100%; height: 80px; object-fit: cover; display: block; border-radius: 6px; transition: transform 0.3s; }
.sweet-frame-small img:hover { transform: scale(1.05); }

/* ============================================================
   PAKET CTA BUTTON
   ============================================================ */
.paket-cta-btn {
  display: inline-block;
  padding: 12px 20px;
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary-dark);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  text-align: center;
  width: 100%;
}
.paket-cta-btn:hover { background: var(--primary); color: #fff; }
.recommended-btn { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.recommended-btn:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); }

@media (max-width: 600px) {
  .urgency-strip-inner { flex-direction: column; gap: 8px; text-align: center; }
  .urgency-divider { display: none; }
  .sweet-frame-row { grid-template-columns: repeat(2, 1fr); }
  .sweet-frame-main img { height: 200px; }
}

/* ============================================================
   PRICE COMPARISON TABLE — paket.html
   ============================================================ */
.price-compare-section {
  padding: 80px 5%;
  background: var(--primary-dark);
}
.price-compare-section .section-header { margin-bottom: 48px; }
.price-compare-section .section-header h2 { color: #fff; }
.price-compare-section .section-header h2 em { color: var(--neutral); }
.price-compare-section .eyebrow { color: var(--neutral-dark); }

.price-compare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.pc-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 28px 22px;
  position: relative;
  transition: background 0.3s, transform 0.3s;
}
.pc-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.pc-card-featured {
  background: #fff !important;
  border-color: var(--secondary) !important;
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.pc-card-featured:hover { transform: translateY(-12px); }

.pc-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.pc-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.pc-card-featured .pc-price { color: var(--primary-dark); }
.pc-price span { font-size: 1rem; opacity: 0.7; }
.pc-name {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.pc-card-featured .pc-name { color: var(--text-soft); }
.pc-min {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.pc-card-featured .pc-min { color: var(--text-soft); }
.pc-divider { height: 1px; background: rgba(255,255,255,0.12); margin-bottom: 16px; }
.pc-card-featured .pc-divider { background: var(--neutral); }
.pc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.pc-list li { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.pc-card-featured .pc-list li { color: var(--text-mid); }
.pc-btn {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.25s;
}
.pc-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.pc-btn-featured {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}
.pc-btn-featured:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); }
.pc-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .price-compare-grid { grid-template-columns: 1fr 1fr; }
  .pc-card-featured { transform: none; }
}
@media (max-width: 600px) {
  .price-compare-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   5-CARD CATEGORY GRID
   ============================================================ */
.category-grid-5 {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 20px !important;
}
.category-grid-5 .cat-card { cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; }
.category-grid-5 .cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

@media (max-width: 1100px) { .category-grid-5 { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 700px) { .category-grid-5 { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 480px) { .category-grid-5 { grid-template-columns: 1fr !important; } }

/* ============================================================
   PAKET NAV CARDS
   ============================================================ */
.paket-nav-section { padding: 64px 5% 0; background: var(--off-white); }
.paket-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto 0;
}
.paket-nav-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  display: block;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}
.paket-nav-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.paket-nav-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.paket-nav-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  padding: 24px 16px 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.active-nav { outline: 3px solid var(--primary); outline-offset: 2px; }
@media (max-width: 900px) { .paket-nav-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .paket-nav-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   MOBILE FIXES
   ============================================================ */
/* Sweet corner 1 besar + 4 kecil — mobile sama dengan desktop */
@media (max-width: 900px) {
  .sweet-img-grid-v2 { display: flex !important; flex-direction: column !important; }
  .sweet-frame-main { width: 100% !important; }
  .sweet-frame-main img { width: 100% !important; height: 240px !important; object-fit: cover !important; }
  .sweet-frame-row { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 4px !important; }
  .sweet-frame-small img { height: 72px !important; }
}
@media (max-width: 600px) {
  .sweet-frame-row { grid-template-columns: repeat(4, 1fr) !important; }
  .sweet-frame-small img { height: 60px !important; }
}

/* Navbar mobile fix */
@media (max-width: 900px) {
  .navbar { display: flex !important; opacity: 1 !important; visibility: visible !important; }
  .nav-logo img { background: transparent !important; mix-blend-mode: normal; filter: none !important; }
}

/* Logo transparent on all screen sizes */
.nav-logo img {
  background: transparent !important;
  background-color: transparent !important;
}
.navbar.solid .nav-logo img,
.navbar.scrolled .nav-logo img {
  background: transparent !important;
}

/* Tablet image fix — prevent crop */
@media (max-width: 1024px) {
  .tentang-story-img img { height: auto !important; min-height: 280px; }
  .quality-img img { height: auto !important; min-height: 280px; }
  .layanan-block-img img { height: 300px !important; }
  .positioning-img img { height: auto !important; }
  .wedding-intro-img img { height: auto !important; min-height: 280px; }
  .menu-section-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .menu-section-photos img { width: 100%; height: 160px; object-fit: cover; }
}

/* Menu visual tabs — mobile scrollable */
@media (max-width: 600px) {
  .menu-visual-tabs { overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; display: flex; gap: 0; }
  .menu-visual-tab { flex-shrink: 0; }
  .menu-full-grid { display: block !important; }
  .menu-card-layout { grid-template-columns: 1fr !important; }
}

/* ============================================================
   SERTIFIKAT HALAL — logo position fix
   ============================================================ */
.q-img-accent img {
  object-fit: contain !important;
  padding: 8px !important;
  background: var(--cream) !important;
}
/* Tentang page — logo tidak overlap sertifikat */
.quality-img { position: relative; }
.quality-img-overlay { position: absolute; top: 16px; right: 16px; }
.qi-badge { 
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 2px;
}

/* ============================================================
   MENU SECTION PHOTOS — 2 foto per section
   ============================================================ */
.menu-section-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
.menu-section-photos img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
}

/* ============================================================
   PAKET FOTO SECTIONS
   ============================================================ */
.paket-foto-section {
  padding: 80px 5%;
  background: var(--off-white);
}
.paket-foto-alt { background: var(--neutral-light); }
.paket-foto-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.paket-foto-header { text-align: center; }
.paket-foto-header h2 { font-size: 2.4rem; margin: 12px 0; }
.paket-foto-header p { color: var(--text-mid); font-size: 0.97rem; line-height: 1.8; max-width: 600px; }
.paket-foto-main {
  width: 100%;
  max-width: 820px;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  display: block;
}
.paket-foto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}
.paket-foto-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.paket-foto-cta { text-align: center; }

@media (max-width: 600px) {
  .paket-foto-grid { grid-template-columns: repeat(2, 1fr); }
  .paket-foto-header h2 { font-size: 1.8rem; }
}

/* ============================================================
   MOBILE NAVBAR — always visible
   ============================================================ */
.navbar {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.hamburger {
  display: none;
}
@media (max-width: 900px) {
  .hamburger { display: flex !important; }
  .nav-links { display: none !important; }
  .nav-links.open { display: flex !important; }
}

/* ============================================================
   MENU TAB MOBILE — scrollable
   ============================================================ */
@media (max-width: 900px) {
  .menu-visual-tabs {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    white-space: nowrap !important;
    gap: 0 !important;
    padding-bottom: 2px;
  }
  .menu-visual-tabs::-webkit-scrollbar { display: none; }
  .menu-visual-tab {
    flex-shrink: 0 !important;
    padding: 12px 20px !important;
    font-size: 0.85rem !important;
  }
}

/* Quality/Halal MUI mobile fix */
@media (max-width: 900px) {
  .quality-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }
  .quality-img-left {
    width: 100% !important;
    order: 2 !important;
  }
  .quality-img-left img {
    width: 100% !important;
    height: auto !important;
    max-height: 400px !important;
    object-fit: contain !important;
  }
  .quality-content {
    order: 1 !important;
    max-width: 100% !important;
  }
  .quality-pillars { gap: 16px !important; }
  .qp-item { gap: 12px !important; }
}


/* ============================================================
   NAVBAR MENU BOOK BUTTON
   ============================================================ */
.nav-menubook {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  transition: background 0.25s;
  margin-right: 12px;
}
.nav-menubook:hover { background: var(--primary-dark); }
.nav-right { display: flex; align-items: center; gap: 8px; }

/* ============================================================
   NASI BOX CARDS GRID
   ============================================================ */
.nasibox-grid-section { padding: 80px 5%; background: var(--off-white); }
.nasibox-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
}
.nb-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.nb-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.nb-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.nb-card-body { padding: 16px 20px 12px; }
.nb-card-name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 500; color: var(--primary-dark); margin-bottom: 4px; }
.nb-card-price { font-size: 1.4rem; font-family: var(--font-heading); color: var(--secondary); font-weight: 500; margin-bottom: 8px; }
.nb-card-items { font-size: 0.8rem; color: var(--text-soft); line-height: 1.6; }
.nb-zoom { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.6); color: #fff; text-align: center; padding: 8px; font-size: 0.75rem; opacity: 0; transition: opacity 0.3s; }
.nb-card:hover .nb-zoom { opacity: 1; }
.nasibox-cta { text-align: center; margin-top: 48px; }
.nasibox-cta p { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 20px; letter-spacing: 0.04em; }
@media (max-width: 900px) { .nasibox-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .nasibox-cards-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SNACK PHOTO GRID
   ============================================================ */
.snack-photo-grid { width: 100%; max-width: 820px; display: flex; flex-direction: column; gap: 8px; }
.snack-main-img { width: 100%; height: 400px; object-fit: cover; border-radius: 10px; }
.snack-small-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.snack-small-grid img { width: 100%; height: 100px; object-fit: cover; border-radius: 6px; transition: transform 0.3s; }
.snack-small-grid img:hover { transform: scale(1.04); }
@media (max-width: 600px) { .snack-main-img { height: 250px; } .snack-small-grid img { height: 72px; } }

/* ============================================================
   GUBUKAN PHOTOS
   ============================================================ */
.gubukan-photos { width: 100%; max-width: 820px; display: flex; flex-direction: column; gap: 16px; }

/* ============================================================
   RELATED CARDS SECTION
   ============================================================ */
.related-section { padding: 80px 5%; background: var(--primary-dark); }
.related-section .section-header h2 { color: #fff; }
.related-section .section-header h2 em { color: var(--neutral); }
.related-section .eyebrow { color: var(--earth-light); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto 0;
}
.related-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}
.related-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.related-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.related-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff; padding: 24px 16px 12px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
}
@media (max-width: 900px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .related-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   MENU BOOK STRIP
   ============================================================ */
.menubook-strip { background: var(--secondary); padding: 28px 5%; }
.menubook-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.menubook-text { display: flex; flex-direction: column; gap: 4px; }
.menubook-title { font-family: var(--font-heading); font-size: 1.3rem; color: #fff; font-weight: 500; }
.menubook-sub { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.menubook-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; background: #fff; color: var(--secondary) !important;
  border-radius: 4px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
  text-decoration: none; letter-spacing: 0.04em; transition: all 0.25s; white-space: nowrap;
}
.menubook-btn:hover { background: var(--cream); }
@media (max-width: 600px) { .menubook-inner { flex-direction: column; text-align: center; } }

/* ============================================================
   PAGE HERO CREAM BACKGROUND (no photo)
   ============================================================ */
.page-hero-cream {
  background: #f5f1eb !important;
  min-height: 340px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 100px 8% 80px !important;
  position: relative !important;
}
.page-hero-cream::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,84,64,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-cream .page-hero-content {
  position: relative !important;
  max-width: 680px !important;
  text-align: left !important;
}
.page-hero-cream .page-hero-content h1 {
  color: var(--primary-dark) !important;
  font-size: clamp(2.2rem, 5vw, 3.8rem) !important;
}
.page-hero-cream .page-hero-content h1 em { color: var(--secondary) !important; }
.page-hero-cream .eyebrow { color: var(--secondary) !important; }
.page-hero-cream p { color: var(--text-mid) !important; }

/* ============================================================
   SLIDESHOW
   ============================================================ */
.slide-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 0 32px;
  border-bottom: 2px solid var(--neutral);
  overflow-x: auto;
  scrollbar-width: none;
}
.slide-tabs::-webkit-scrollbar { display: none; }
.slide-tab {
  padding: 14px 28px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}
.slide-tab:hover { color: var(--primary); }
.slide-tab.active { color: var(--primary-dark); border-bottom-color: var(--primary); }

.slide-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  cursor: pointer;
}
.slide-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.slide-item {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}
.slide-item img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.slide-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  padding: 40px 24px 20px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.3s;
}
.slide-item:hover .slide-overlay { opacity: 1; }
.slide-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  color: var(--primary-dark);
}
.slide-arrow:hover { background: #fff; box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.slide-prev { left: 16px; }
.slide-next { right: 16px; }
@media (max-width: 600px) {
  .slide-item img { height: 280px; }
  .slide-tab { padding: 10px 16px; font-size: 0.75rem; }
}

/* ============================================================
   CATEGORY GRID NEW — 2 rows × 3
   ============================================================ */
.cat-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 48px auto 0;
  padding: 0 5%;
}
.cat-card-new {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid #ede8e1;
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}
.cat-card-new:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.cat-card-new-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.cat-card-new-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.cat-card-new:hover .cat-card-new-img img { transform: scale(1.05); }
.cat-badge-new {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}
.cat-card-new-body {
  padding: 24px 24px 20px;
}
.cat-card-new-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.cat-card-new-body p {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}
.cat-btn-new {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1.5px solid var(--primary);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.cat-card-new:hover .cat-btn-new { color: var(--secondary); border-color: var(--secondary); }

@media (max-width: 900px) { .cat-grid-new { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cat-grid-new { grid-template-columns: 1fr; gap: 16px; } }

/* ============================================================
   WS-CARD BUTTON
   ============================================================ */
.ws-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none !important;
  transition: background 0.25s;
}
.ws-btn:hover { background: var(--primary-dark); }

/* ============================================================
   WS CARD V2 - index wedding section
   ============================================================ */
.ws-card-v2 {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ws-card-v2:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.ws-card-img { width: 100%; height: 220px; overflow: hidden; }
.ws-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.ws-card-v2:hover .ws-card-img img { transform: scale(1.06); }
.ws-card-body { padding: 24px 24px 28px; }
.ws-num-small {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: rgba(84,113,88,0.12);
  line-height: 1;
  margin-bottom: 8px;
}
.ws-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.ws-card-body p {
  font-size: 0.87rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 18px;
}
.ws-card-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  transition: color 0.25s;
}
.ws-card-btn:hover { color: var(--secondary); border-color: var(--secondary); }
@media (max-width: 900px) {
  .wedding-services[style*="repeat(3"] { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
  .wedding-services[style*="repeat(3"] { grid-template-columns: 1fr !important; }
}

/* ============================================================
   SLIDE CSS - Menu Buffet Lengkap
   ============================================================ */
.slide-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 0 5%;
}
.slide-tab {
  padding: 8px 20px;
  background: transparent;
  border: 1.5px solid var(--neutral);
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.25s;
}
.slide-tab:hover { border-color: var(--primary); color: var(--primary-dark); }
.slide-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.slide-container {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}
.slide-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.slide-item {
  min-width: 100%;
  position: relative;
  cursor: pointer;
}
.slide-item img {
  width: 100%;
  height: 540px;
  object-fit: contain;
  background: var(--cream);
  display: block;
}
.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  color: #fff;
  padding: 40px 20px 16px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.slide-item:hover .slide-overlay { opacity: 1; }
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  z-index: 10;
  color: var(--primary-dark);
}
.slide-arrow:hover { background: var(--primary); color: #fff; }
.slide-prev { left: 16px; }
.slide-next { right: 16px; }
@media (max-width: 600px) {
  .slide-item img { height: 300px; }
  .slide-tab { padding: 6px 14px; font-size: 0.78rem; }
}
