/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (CSS VARIABLES)
   ========================================================================== */
:root {
  /* Color Palette - HSL Tailored for Culinary Excellence */
  --primary: hsl(43, 96%, 56%);          /* Kuning Pisang Vibran */
  --primary-light: rgb(254, 243, 199);   /* Kuning Pisang Soft */
  --primary-hover: hsl(40, 96%, 48%);
  
  --secondary: hsl(20, 96%, 22%);        /* Coklat Espresso Premium */
  --secondary-light: hsl(20, 40%, 94%);   /* Warm Creamy Background */
  --secondary-hover: hsl(20, 96%, 15%);
  
  --accent-gold: hsl(45, 85%, 45%);       /* Gold Highlight */
  --accent-orange: hsl(24, 95%, 50%);     /* Orange / Terracotta Glow */
  --accent-green: hsl(142, 70%, 45%);     /* WhatsApp Green */
  --accent-green-hover: hsl(142, 70%, 35%);
  
  --neutral-white: #ffffff;
  --neutral-light: #fafafa;
  --neutral-gray: #6b7280;
  --neutral-dark: #1e1b18;                /* Text Color (Almost Black/Brown) */

  /* Gradients */
  --grad-banana: linear-gradient(135deg, hsl(45, 96%, 60%) 0%, hsl(35, 96%, 50%) 100%);
  --grad-premium: linear-gradient(135deg, hsl(20, 96%, 20%) 0%, hsl(10, 96%, 12%) 100%);
  --grad-glass: rgba(255, 255, 255, 0.85);

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(69, 26, 3, 0.08), 0 4px 6px -2px rgba(69, 26, 3, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(69, 26, 3, 0.12), 0 10px 10px -5px rgba(69, 26, 3, 0.06);
  --shadow-glow: 0 0 20px rgba(251, 191, 36, 0.4);
  --shadow-glow-green: 0 0 20px rgba(34, 197, 94, 0.4);

  /* Typography */
  --font-header: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  background-color: var(--neutral-white);
  color: var(--neutral-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.25;
}

p {
  color: var(--neutral-gray);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   BUTTONS & FORM ELEMENTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-header);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--neutral-white);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  border-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background-color: var(--neutral-white);
  color: var(--secondary);
  border-color: var(--neutral-white);
}

.btn-light:hover {
  background-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--accent-green);
  color: var(--neutral-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: var(--shadow-glow-green);
  z-index: 999;
  transition: var(--transition-smooth);
}

.floating-whatsapp::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-green);
  animation: pulse-ring 1.8s infinite;
  z-index: -1;
}

.floating-whatsapp:hover {
  background-color: var(--accent-green-hover);
  transform: scale(1.1) rotate(8deg);
}

.floating-whatsapp .tooltip {
  position: absolute;
  right: 75px;
  background-color: var(--secondary);
  color: var(--neutral-white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font-header);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
}

.floating-whatsapp:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ==========================================================================
   HEADER & STICKY NAVBAR
   ========================================================================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 100;
  transition: var(--transition-smooth);
}

.sticky-header.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(251, 191, 36, 0.15);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  font-size: 28px;
}

.logo-text {
  font-family: var(--font-header);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.5px;
  color: var(--secondary);
}

.logo-text .accent-text {
  color: var(--accent-orange);
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-hover);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--secondary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
  padding-top: 150px;
  padding-bottom: 80px;
  background-color: var(--neutral-white);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(252, 211, 77, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--secondary-light);
  color: var(--secondary);
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(69, 26, 3, 0.08);
}

.bg-accent-light {
  background-color: rgba(234, 88, 12, 0.08);
  color: var(--accent-orange);
  border-color: rgba(234, 88, 12, 0.15);
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.gradient-text {
  background: var(--grad-banana);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.trust-bar {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--secondary);
}

.trust-item i {
  color: var(--accent-orange);
  font-size: 16px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-bg-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--primary) 0%, rgba(255, 255, 255, 0) 65%);
  filter: blur(40px);
  z-index: 1;
  opacity: 0.25;
  animation: float-slow 8s infinite alternate;
}

.hero-main-image {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  width: 480px;
  height: 480px;
  object-fit: cover;
  border: 4px solid var(--neutral-white);
  animation: float-slow 6s ease-in-out infinite alternate;
}

.hero-image-placeholder {
  width: 480px;
  height: 480px;
  background: var(--grad-premium);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--neutral-white);
  border: 4px solid var(--neutral-white);
  animation: float-slow 6s ease-in-out infinite alternate;
  position: relative;
}

.hero-image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(251, 191, 36, 0.45) 0%, rgba(0,0,0,0) 80%);
  border-radius: inherit;
}

.placeholder-icon {
  font-size: 72px;
  margin-bottom: 12px;
  z-index: 10;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.placeholder-text {
  font-family: var(--font-header);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 4px;
  z-index: 10;
  color: var(--primary);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.placeholder-hint {
  font-size: 0.9rem;
  color: var(--primary-light);
  z-index: 10;
  opacity: 0.8;
}

.hero-card-floating {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.hero-card-floating i {
  font-size: 20px;
}

.floating-1 {
  top: 15%;
  left: -10%;
  animation: float-floating-1 5s ease-in-out infinite alternate;
}

.floating-2 {
  bottom: 15%;
  right: -5%;
  animation: float-floating-2 6s ease-in-out infinite alternate;
}

.float-title {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--secondary);
}

.float-desc {
  font-size: 0.72rem;
  color: var(--neutral-gray);
  margin-top: 1px;
}

/* ==========================================================================
   3. SECTION KEUNGGULAN (USP)
   ========================================================================== */
.keunggulan-section {
  padding: 80px 0;
  background-color: var(--secondary-light);
  position: relative;
}

.section-header {
  margin-bottom: 50px;
}

.text-center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: var(--accent-orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.title-underline {
  width: 60px;
  height: 4px;
  background: var(--grad-banana);
  border-radius: var(--radius-full);
  margin: 0 auto;
  margin-top: 12px;
}

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

.keunggulan-card {
  background-color: var(--neutral-white);
  padding: 36px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border-bottom: 4px solid transparent;
}

.keunggulan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--primary);
}

.card-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--accent-orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.keunggulan-card:hover .card-icon-wrapper {
  background-color: var(--primary);
  color: var(--secondary);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card-description {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   4. SECTION MENU PRODUK
   ========================================================================== */
.menu-section {
  padding: 80px 0;
  background-color: var(--neutral-white);
}

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

.menu-card {
  background-color: var(--neutral-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(69, 26, 3, 0.04);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(251, 191, 36, 0.3);
}

.menu-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: var(--primary-light);
}

.menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.menu-card:hover .menu-img {
  transform: scale(1.05);
}

.menu-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--secondary);
  color: var(--neutral-white);
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 0.68rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  z-index: 10;
}

.bg-orange {
  background-color: var(--accent-orange);
}

.bg-gold {
  background-color: var(--accent-gold);
}

.menu-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu-name {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.menu-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.menu-footer {
  margin-top: auto;
}

/* ==========================================================================
   5. SECTION PROMO
   ========================================================================== */
.promo-section {
  padding: 40px 0;
  background-color: var(--neutral-white);
}

.promo-banner {
  background: var(--grad-premium);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: var(--neutral-white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: var(--primary);
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.promo-title {
  color: var(--neutral-white);
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.promo-title .highlight-text {
  color: var(--primary);
}

.promo-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 36px auto;
}

.promo-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.font-bold {
  font-weight: 800;
}

.text-green {
  color: var(--accent-green);
}

.promo-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* ==========================================================================
   6. SECTION CARA ORDER
   ========================================================================== */
.cara-order-section {
  padding: 80px 0;
  background-color: var(--secondary-light);
}

.order-channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.order-channel-card {
  background-color: var(--neutral-white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(69, 26, 3, 0.04);
}

.channel-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
  color: var(--neutral-white);
  transition: var(--transition-smooth);
}

.channel-name {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.channel-desc {
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.channel-btn {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.order-channel-card:hover .channel-btn {
  transform: translateX(3px);
}

/* Brand specific coloring */
.whatsapp-channel .channel-icon {
  background-color: var(--accent-green);
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.2);
}
.whatsapp-channel .channel-btn {
  color: var(--accent-green);
}
.whatsapp-channel:hover {
  border-color: var(--accent-green);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.06);
}

.gofood-channel .channel-icon {
  background-color: #E21F30;
  box-shadow: 0 4px 10px rgba(226, 31, 48, 0.2);
}
.gofood-channel .channel-btn {
  color: #E21F30;
}
.gofood-channel:hover {
  border-color: #E21F30;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(226, 31, 48, 0.06);
}

.grabfood-channel .channel-icon {
  background-color: #00B14F;
  box-shadow: 0 4px 10px rgba(0, 177, 79, 0.2);
}
.grabfood-channel .channel-btn {
  color: #00B14F;
}
.grabfood-channel:hover {
  border-color: #00B14F;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 177, 79, 0.06);
}

.shopeefood-channel .channel-icon {
  background-color: #EE4D2D;
  box-shadow: 0 4px 10px rgba(238, 77, 45, 0.2);
}
.shopeefood-channel .channel-btn {
  color: #EE4D2D;
}
.shopeefood-channel:hover {
  border-color: #EE4D2D;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(238, 77, 45, 0.06);
}

/* ==========================================================================
   7. SECTION UNTUK SIAPA
   ========================================================================== */
.target-section {
  padding: 80px 0;
  background-color: var(--neutral-white);
}

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

.target-card {
  background-color: var(--neutral-white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(69, 26, 3, 0.03);
  transition: var(--transition-smooth);
}

.target-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: rgba(251, 191, 36, 0.25);
}

.target-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.target-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--secondary);
}

/* ==========================================================================
   8. SECTION TESTIMONI
   ========================================================================== */
.testi-section {
  padding: 80px 0;
  background-color: var(--secondary-light);
}

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

.testi-card {
  background-color: var(--neutral-white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(69, 26, 3, 0.02);
}

.testi-stars {
  color: var(--primary);
  margin-bottom: 18px;
  font-size: 14px;
}

.testi-text {
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--neutral-dark);
  flex-grow: 1;
}

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

.testi-avatar {
  width: 44px;
  height: 44px;
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 1.1rem;
}

.testi-name {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.testi-role {
  font-size: 0.72rem;
  color: var(--neutral-gray);
}

/* ==========================================================================
   9. SECTION LOKASI
   ========================================================================== */
.lokasi-section {
  padding: 80px 0;
  background-color: var(--neutral-white);
}

.lokasi-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 40px;
}

.lokasi-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.address-box {
  background-color: var(--secondary-light);
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 20px;
  margin-top: 10px;
}

.address-title {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 6px;
}

.address-text {
  font-size: 0.92rem;
  color: var(--neutral-dark);
  line-height: 1.5;
}

.lokasi-meta-text {
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.map-wrapper {
  background-color: var(--secondary-light);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow-md);
}

.map-mockup-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 350px;
}

.map-mockup-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   10. SECTION KONTAK
   ========================================================================== */
.kontak-section {
  padding: 80px 0;
  background-color: var(--secondary-light);
}

.kontak-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.kontak-info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.kontak-item-card {
  background-color: var(--neutral-white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(69, 26, 3, 0.02);
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.kontak-label {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--neutral-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.kontak-value {
  font-size: 0.88rem;
  color: var(--secondary);
  font-weight: 600;
  line-height: 1.4;
}

.kontak-cta-box {
  background-color: var(--neutral-white);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.kontak-cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.kontak-cta-box p {
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.footer {
  background-color: var(--neutral-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 60px;
  padding-bottom: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 40px;
  margin-bottom: 30px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo .logo-text {
  color: var(--neutral-white);
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--neutral-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background-color: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px);
}

.footer-title {
  color: var(--neutral-white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.operating-hours {
  color: var(--primary);
  font-weight: 600;
}

.copyright-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ==========================================================================
   SCROLL REVEAL & MICRO-ANIMATIONS
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.pulse-ring {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: var(--primary);
  border-radius: 50%;
  z-index: -1;
  animation: pulse-ring 2s infinite;
}

.pulse-animation {
  position: relative;
  z-index: 1;
}

.pulse-animation::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: 2px solid var(--primary);
  animation: pulse-ring 2s infinite;
  z-index: -1;
}

@keyframes float-slow {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes float-floating-1 {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes float-floating-2 {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-12px) rotate(-2deg);
  }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE STYLING)
   ========================================================================== */

/* Large Tablets & Small Desktops (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.6rem;
  }
  
  .keunggulan-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .order-channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
  /* Mobile navigation */
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--neutral-white);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 101;
    padding: 100px 30px;
    transition: var(--transition-smooth);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .nav-link {
    font-size: 1.1rem;
  }
  
  .btn-navbar {
    display: none;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }
  
  /* Hero Section Mobile View */
  .hero-section {
    padding-top: 110px;
    padding-bottom: 60px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-badges {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .trust-bar {
    justify-content: center;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .hero-main-image,
  .hero-image-placeholder {
    width: 100%;
    max-width: 380px;
    height: 380px;
  }
  
  .floating-1 {
    left: 0;
  }
  
  .floating-2 {
    right: 0;
  }
  
  /* Keunggulan Section */
  .keunggulan-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Menu Section */
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  /* Promo Section */
  .promo-banner {
    padding: 40px 20px;
  }
  
  .promo-title {
    font-size: 2rem;
  }
  
  /* Target Section */
  .target-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  /* Testi Section */
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Lokasi Section */
  .lokasi-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Kontak Section */
  .kontak-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .kontak-info-list {
    grid-template-columns: 1fr;
  }
}

/* Tiny Mobile Viewports (max-width: 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .target-grid {
    grid-template-columns: 1fr;
  }
  
  .order-channels-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-main-image,
  .hero-image-placeholder {
    width: 280px;
    height: 280px;
  }
  
  .placeholder-icon {
    font-size: 50px;
  }
  
  .placeholder-text {
    font-size: 1.25rem;
  }
  
  .floating-1, .floating-2 {
    display: none;
  }
  
  .floating-whatsapp {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 16px;
    right: 16px;
  }
  
  .floating-whatsapp .tooltip {
    display: none;
  }
}

/* ==========================================================================
   WA BOUNCE MICRO-ANIMATION
   ========================================================================== */
.floating-whatsapp.wa-bounce {
  animation: wa-bounce 1s ease-in-out;
}

@keyframes wa-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px) scale(1.05);
  }
}
