/* =========================================
   AYAM KREMES BLITAR — Main Stylesheet
   ========================================= */

/* ---- Variables ---- */
:root {
  --red:        #C0392B;
  --red-dark:   #922B21;
  --red-light:  #E74C3C;
  --gold:       #D4AC0D;
  --gold-light: #F4D03F;
  --cream:      #FEF9EF;
  --brown:      #784212;
  --dark:       #1A0A00;
  --dark2:      #2D1300;
  --gray:       #6B7280;
  --light-gray: #F3F4F6;
  --white:      #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 30px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --radius-sm:  0.75rem;
  --radius-md:  1.25rem;
  --radius-lg:  2rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- 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(--cream);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(26, 10, 0, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.nav-logo-text .accent { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold-light);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.btn-nav {
  background: var(--red) !important;
  color: white !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 2rem !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.btn-nav:hover {
  background: var(--red-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(192, 57, 43, 0.4) !important;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   HERO CAROUSEL
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,10,0,.85) 0%,
    rgba(26,10,0,.6) 50%,
    rgba(192,57,43,.3) 100%
  );
  z-index: 1;
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero-dot.active {
  background: var(--gold-light);
  width: 28px;
  border-radius: 5px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 2rem;
  padding: 0.4rem 1rem;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}

.halal-icon {
  width: 36px;
  height: 36px;
  display: inline-block;
  object-fit: contain;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: fadeInDown 0.8s ease 0.1s both;
}

.gradient-text {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,.9);
  font-weight: 600;
  margin-bottom: 1rem;
  animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease 0.3s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInDown 0.8s ease 0.4s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 3rem;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(192, 57, 43, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(192, 57, 43, 0.55);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.btn-primary.outline {
  background: transparent;
  border: 2px solid var(--red-light);
  box-shadow: none;
  color: white;
}

.btn-primary.outline:hover {
  background: var(--red-light);
}

.btn-secondary {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.4);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 3rem;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,.6);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 1s ease 1s both;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(255,255,255,.5);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
  background: linear-gradient(135deg, var(--dark2), var(--red-dark));
  padding: 1.5rem 0;
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: 0.9rem;
}

.trust-icon { font-size: 1.4rem; }

.trust-halal-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

/* =========================================
   SECTION COMMON
   ========================================= */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  background: rgba(192, 57, 43, 0.1);
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.section-label-light {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title.light { color: white; }
.section-sub { color: var(--gray); font-size: 1.05rem; }
.section-sub.light { color: rgba(255,255,255,.75); }

/* =========================================
   TENTANG KAMI
   ========================================= */
.tentang {
  background: var(--cream);
}

.tentang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tentang-img-wrap {
  position: relative;
}

/* Tentang Slider */
.tentang-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.tentang-slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.tentang-slide.active {
  display: block;
  opacity: 1;
  position: relative;
}

.tentang-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}

.tentang-slide-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(26,10,0,.75);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  text-align: center;
}

.tentang-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.slider-btn:hover {
  background: var(--red-dark);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(192,57,43,.25);
  border: 2px solid var(--red);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 5px;
}

.tentang-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.badge-label {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
}

.tentang-content .section-label { margin-bottom: 0.75rem; }
.tentang-content .section-title { margin-bottom: 1.5rem; }
.tentang-content p { color: var(--gray); }

.tentang-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,.08);
}

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

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
}

/* =========================================
   MENU
   ========================================= */
.menu-section {
  background: white;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Wide card spans full width */
.menu-card.wide {
  grid-column: 1 / -1;
}

.menu-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-card.featured {
  border: 2px solid var(--gold-light);
  box-shadow: 0 0 0 1px var(--gold-light), var(--shadow-md);
}

.menu-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

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

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

.menu-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  z-index: 2;
}

.menu-badge.catering {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
}

.menu-badge.frozen {
  background: linear-gradient(135deg, #1e88e5, #0d47a1);
  color: white;
}

.menu-badge.kremes {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
}

.menu-badge.hampers {
  background: linear-gradient(135deg, #8e24aa, #5e35b1);
  color: white;
}

/* Mini carousel inside menu card */
.menu-mini-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.menu-mini-carousel .menu-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.menu-mini-carousel .menu-img.active {
  opacity: 1;
}

.mini-carousel-dots {
  position: absolute;
  bottom: 0.7rem;
  right: 0.7rem;
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.mc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: var(--transition);
  display: block;
}

.mc-dot.active {
  background: white;
  width: 18px;
  border-radius: 4px;
}

/* Gallery slider (nasi box) */
.menu-gallery-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.menu-gallery-slider .menu-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.menu-gallery-slider .menu-img.active {
  opacity: 1;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,10,0,.65);
  backdrop-filter: blur(6px);
  color: white;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: var(--transition);
}

.gallery-arrow.prev { left: 0.75rem; }
.gallery-arrow.next { right: 0.75rem; }

.gallery-arrow:hover {
  background: var(--red);
  transform: translateY(-50%) scale(1.1);
}

.gallery-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 3;
}

.g-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: var(--transition);
  display: block;
}

.g-dot.active {
  background: white;
  width: 18px;
  border-radius: 4px;
}

/* Nasi box wide card layout */
.nasi-box-card.wide .menu-img-wrap {
  aspect-ratio: 21/9;
}

@media (max-width: 768px) {
  .nasi-box-card.wide .menu-img-wrap {
    aspect-ratio: 16/9;
  }
}

.menu-info {
  padding: 1.5rem;
}

.menu-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.menu-info p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.menu-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--light-gray);
  color: var(--gray);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
}

/* =========================================
   KEUNGGULAN
   ========================================= */
.keunggulan-section {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 60%, #3D0000 100%);
}

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

.keunggulan-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.keunggulan-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(212, 172, 13, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}

.keunggulan-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.keunggulan-icon img.halal-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.keunggulan-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.keunggulan-card p {
  color: rgba(255,255,255,.7);
  font-size: 0.9rem;
}

/* =========================================
   CABANG
   ========================================= */
.cabang-section { background: var(--cream); }

.cabang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.cabang-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}

.cabang-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.cabang-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cabang-num {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  flex-shrink: 0;
}

.cabang-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

.cabang-sub {
  color: var(--gray);
  font-size: 0.9rem;
}

.cabang-map {
  margin-bottom: 1.5rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
}

.cabang-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn-maps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--light-gray);
  color: var(--dark);
  border: 1px solid rgba(0,0,0,.08);
}

.btn-maps:hover {
  background: #E5E7EB;
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  background: #25D366;
  color: white;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}

.marketplace-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.mp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.8rem;
  transition: var(--transition);
  border: 1.5px solid;
  min-height: 48px;
}

.mp-btn img {
  width: 70px;
  height: auto;
  object-fit: contain;
}

.mp-btn.grab {
  border-color: #00B14F;
  background: #F0FDF4;
  color: #00B14F;
}

.mp-btn.grab:hover {
  background: #00B14F;
  color: white;
}

.mp-btn.grab:hover img { filter: brightness(0) invert(1); }

.mp-btn.gojek {
  border-color: #00AED6;
  background: #F0FAFF;
  color: #00AED6;
}

.mp-btn.gojek:hover {
  background: #00AED6;
  color: white;
}

.mp-btn.shopee {
  border-color: #EE4D2D;
  background: #FFF5F3;
  color: #EE4D2D;
}

.mp-btn.shopee:hover {
  background: #EE4D2D;
  color: white;
}

.mp-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* =========================================
   CTA CATERING
   ========================================= */
.cta-catering {
  background: linear-gradient(135deg, var(--red-dark), var(--red), #E8401D);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-catering::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.cta-catering h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-catering p {
  color: rgba(255,255,255,.85);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--dark);
  padding: 4rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255,255,255,.6);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.footer-halal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,.1);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-halal img.halal-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-contact p {
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-wa {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25D366;
  color: white;
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.wa-link:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 1.5rem;
  text-align: center;
  color: rgba(255,255,255,.4);
  font-size: 0.85rem;
}

/* =========================================
   FLOATING WA
   ========================================= */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25D366;
  color: white;
  border-radius: 3rem;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 30px rgba(37,211,102,.5);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  animation: floatIn 0.5s ease 1.5s both;
}

.floating-wa:hover {
  background: #1da851;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(37,211,102,.6);
}

.floating-wa-label {
  color: white;
  font-size: 0.9rem;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

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

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

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

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .keunggulan-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    background: rgba(26,10,0,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.open { right: 0; box-shadow: -20px 0 60px rgba(0,0,0,.5); }

  .nav-links a { font-size: 1.2rem; }

  .hamburger { display: flex; }

  .tentang-grid { grid-template-columns: 1fr; gap: 2rem; }
  .tentang-img-wrap { order: -1; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-card.wide { grid-column: 1; }

  .cabang-grid { grid-template-columns: 1fr; }

  .keunggulan-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .trust-grid {
    justify-content: center;
    gap: 1.5rem;
  }

  .trust-item { flex: 0 0 calc(50% - 0.75rem); }

  .tentang-stats { justify-content: space-around; }

  .floating-wa-label { display: none; }
  .floating-wa { border-radius: 50%; padding: 1rem; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .cta-btns { flex-direction: column; }
  .marketplace-grid { grid-template-columns: repeat(3, 1fr); }
}
