*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sky: #E0F7FF;
  --ice: #C2EEFF;
  --blue: #1DA6D8;
  --deep: #0A3D5C;
  --red: #FF4B4B;
  --orange: #FF8C38;
  --yellow: #FFD44E;
  --white: #FFFFFF;
  --soft: #F5FBFF;
  --muted: #6A8EA0;
  --dark: #0D2233;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--soft);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── ANIMATED BG BLOBS ── */
.bg-blobs {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.35;
  animation: blobFloat 10s ease-in-out infinite alternate;
}
.blob1 { width: 500px; height: 500px; background: var(--ice); top: -100px; left: -100px; animation-delay: 0s; }
.blob2 { width: 400px; height: 400px; background: rgba(255,75,75,0.15); top: 40%; right: -80px; animation-delay: 3s; }
.blob3 { width: 350px; height: 350px; background: rgba(255,212,78,0.18); bottom: -80px; left: 30%; animation-delay: 6s; }

@keyframes blobFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 40px) scale(1.08); }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5vw;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--ice);
}

.logo {
  font-family: 'Fredoka One', cursive;
  font-size: 1.6rem; color: var(--deep);
  display: flex; align-items: center; gap: 0.4rem;
}
.logo-ice { color: var(--blue); }
.logo-dot { color: var(--red); }

.nav-links {
  display: flex; gap: 1.8rem; list-style: none;
}
.nav-links a {
  text-decoration: none; font-size: 0.9rem; font-weight: 700;
  color: var(--muted); transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }

.nav-order {
  background: var(--red); color: #fff;
  border: none; padding: 0.6rem 1.4rem;
  border-radius: 50px; font-family: 'Nunito', sans-serif;
  font-size: 0.88rem; font-weight: 800; cursor: pointer;
  transition: transform 0.15s, background 0.2s;
  box-shadow: 0 4px 14px rgba(255,75,75,0.4);
}
.nav-order:hover { transform: scale(1.06); background: #e03030; }

/* ── HERO ── */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 5vw 5vw;
  gap: 2rem;
}

.hero-left { flex: 1; max-width: 560px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--ice); color: var(--blue);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 1.4rem;
  animation: popIn 0.5s ease both;
}

.hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1; color: var(--deep);
  animation: slideUp 0.6s 0.1s ease both;
}
.hero h1 .hl-blue { color: var(--blue); }
.hero h1 .hl-red  { color: var(--red); }

.hero-sub {
  margin-top: 1.2rem; font-size: 1.05rem; color: var(--muted);
  line-height: 1.7; font-weight: 600;
  animation: slideUp 0.6s 0.2s ease both;
}

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 1.8rem;
  animation: slideUp 0.6s 0.3s ease both;
}
.pill {
  padding: 0.45rem 1.1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700;
  display: flex; align-items: center; gap: 0.4rem;
}
.pill-ice    { background: var(--ice); color: var(--blue); }
.pill-hot    { background: #FFE8D6; color: var(--orange); }
.pill-crispy { background: #FFF3CC; color: #B87A00; }

.hero-btns {
  display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap;
  animation: slideUp 0.6s 0.4s ease both;
}
.btn-main {
  background: var(--blue); color: #fff;
  padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 800; text-decoration: none;
  box-shadow: 0 6px 20px rgba(29,166,216,0.45);
  transition: transform 0.15s, background 0.2s;
}
.btn-main:hover { transform: translateY(-3px); background: var(--deep); }
.btn-sec {
  background: #fff; color: var(--red);
  padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 800; text-decoration: none;
  border: 2.5px solid var(--red);
  transition: transform 0.15s, background 0.2s, color 0.2s;
}
.btn-sec:hover { transform: translateY(-3px); background: var(--red); color: #fff; }

/* ── HERO RIGHT ── */
.hero-right {
  flex: 1; display: flex; justify-content: center; align-items: center;
  position: relative;
  animation: slideUp 0.7s 0.2s ease both;
}

.hero-big-emoji {
  font-size: clamp(9rem, 16vw, 14rem);
  animation: wiggle 3s ease-in-out infinite;
  display: block; text-align: center;
  filter: drop-shadow(0 20px 40px rgba(29,166,216,0.2));
}

.bubble {
  position: absolute;
  background: #fff; border-radius: 16px;
  padding: 0.7rem 1.1rem;
  box-shadow: 0 8px 28px rgba(13,34,51,0.1);
  font-size: 0.82rem; font-weight: 700;
  display: flex; align-items: center; gap: 0.5rem;
  border: 2px solid var(--ice);
  white-space: nowrap;
}
.b1 { top: 10%; left: 0;    animation: float 3.5s ease-in-out infinite; }
.b2 { bottom: 18%; right: 0; animation: float 3.5s 1s ease-in-out infinite; }
.b3 { top: 55%; left: -5%;  animation: float 3.5s 2s ease-in-out infinite; }
.b-icon { font-size: 1.2rem; }

/* ── WAVE DIVIDER ── */
.wave { width: 100%; overflow: hidden; line-height: 0; position: relative; z-index: 1; }
.wave svg { display: block; }

/* ── SECTION BASE ── */
section { position: relative; z-index: 1; padding: 5rem 5vw; }

.sec-label {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--blue);
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.sec-label::before { content: ''; width: 28px; height: 2px; background: var(--blue); border-radius: 2px; }

.sec-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--deep); line-height: 1.15;
}

/* ── MENU ── */
#menu { background: var(--white); }

.menu-top {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.tabs {
  display: flex; gap: 0.5rem;
  background: var(--soft); padding: 5px;
  border-radius: 50px; border: 2px solid var(--ice);
}
.tab-btn {
  padding: 0.5rem 1.3rem; border-radius: 50px; border: none;
  font-family: 'Nunito', sans-serif; font-size: 0.85rem; font-weight: 800;
  cursor: pointer; color: var(--muted); background: transparent;
  transition: all 0.2s;
}
.tab-btn.on { background: var(--blue); color: #fff; box-shadow: 0 3px 10px rgba(29,166,216,0.35); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.4rem;
}

.menu-item { display: block; }
.menu-item.hidden { display: none; }

.card {
  background: var(--soft); border-radius: 22px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.22s, box-shadow 0.22s;
}
.card:hover {
  border-color: var(--ice);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(29,166,216,0.12);
}

.card-thumb {
  height: 160px; display: flex; align-items: center;
  justify-content: center; font-size: 4.5rem;
  position: relative;
  background: linear-gradient(135deg, var(--ice) 0%, #E8F8FF 100%);
}
.card-thumb.warm { background: linear-gradient(135deg, #FFE5CC 0%, #FFF5EC 100%); }

.card-tag {
  position: absolute; top: 10px; left: 10px;
  padding: 0.22rem 0.7rem; border-radius: 50px;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.tag-new  { background: var(--yellow); color: #7A5500; }
.tag-best { background: var(--red);    color: #fff; }
.tag-fav  { background: var(--orange); color: #fff; }

.card-body { padding: 1.1rem 1.3rem 1.3rem; }
.card-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem; color: var(--deep);
}
.card-desc { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; line-height: 1.5; font-weight: 600; }

.card-foot {
  display: flex; justify-content: space-between;
  align-items: center; margin-top: 1rem;
}
.card-price {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem; color: var(--blue);
}
.card-price small { font-family: 'Nunito', sans-serif; font-size: 0.72rem; color: var(--muted); }

.add-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue); color: #fff; border: none;
  font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 12px rgba(29,166,216,0.35);
}
.add-btn:hover { background: var(--deep); transform: scale(1.12); }

/* ── KEUNGGULAN ── */
#keunggulan { background: var(--deep); color: #fff; }
#keunggulan .sec-label { color: var(--yellow); }
#keunggulan .sec-label::before { background: var(--yellow); }
#keunggulan .sec-title { color: #fff; }

.unggulan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.4rem; margin-top: 3rem;
}
.unggulan-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 1.8rem 1.5rem;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}
.unggulan-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.unggulan-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.unggulan-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem; color: var(--yellow); margin-bottom: 0.5rem;
}
.unggulan-desc { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.6; font-weight: 600; }

/* ── LOKASI ── */
#lokasi { background: var(--white); }

.lokasi-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; margin-top: 2.5rem;
}
.lokasi-map {
  background: var(--ice); border-radius: 24px;
  height: 340px; display: flex; align-items: center;
  justify-content: center; font-size: 5rem;
  position: relative; overflow: hidden;
  border: 2.5px solid rgba(29,166,216,0.2);
}
.lokasi-map::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(29,166,216,0.08) 0%, transparent 70%);
}
.map-pin { animation: bounce 1.5s ease-in-out infinite; display: block; }

.lokasi-info h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem; color: var(--deep); margin-bottom: 1rem;
}
.info-row {
  display: flex; align-items: flex-start; gap: 0.8rem;
  margin-bottom: 1rem;
}
.info-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.info-text { font-size: 0.9rem; color: var(--muted); font-weight: 600; line-height: 1.5; }
.info-text strong { color: var(--deep); display: block; }

.wa-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: #fff;
  padding: 0.85rem 1.8rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 800; text-decoration: none;
  margin-top: 1.5rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: transform 0.15s, background 0.2s;
}
.wa-btn:hover { transform: translateY(-3px); background: #1eb558; }

/* ── TESTIMONI ── */
#testimoni { background: var(--soft); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem; margin-top: 2.5rem;
}
.testi-card {
  background: #fff; border-radius: 20px;
  padding: 1.6rem; border: 2px solid var(--ice);
  position: relative;
}
.testi-card::after {
  content: '"';
  position: absolute; top: 8px; right: 18px;
  font-family: 'Fredoka One', cursive;
  font-size: 5rem; color: var(--ice); line-height: 1;
}
.testi-stars { font-size: 1rem; color: var(--yellow); margin-bottom: 0.7rem; letter-spacing: 2px; }
.testi-text { font-size: 0.88rem; color: var(--dark); line-height: 1.7; font-weight: 600; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.2rem; }
.testi-ava {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ice); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem;
  border: 2px solid rgba(29,166,216,0.2);
}
.testi-name { font-weight: 800; font-size: 0.88rem; color: var(--deep); }
.testi-loc  { font-size: 0.75rem; color: var(--muted); font-weight: 600; }

/* ── CTA ── */
.cta-strip {
  background: linear-gradient(135deg, var(--blue) 0%, var(--deep) 100%);
  margin: 0 3vw 4rem; border-radius: 28px;
  padding: 4rem 6vw;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  position: relative; z-index: 1; overflow: hidden;
}
.cta-strip::before {
  content: '🧊';
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  font-size: 8rem; opacity: 0.12; pointer-events: none;
}
.cta-label {
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--yellow); font-weight: 800;
  margin-bottom: 0.7rem;
}
.cta-heading {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 3vw, 2.8rem); color: #fff;
}
.cta-sub { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-top: 0.5rem; font-weight: 600; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-wa {
  background: #25D366; color: #fff;
  padding: 0.85rem 1.8rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 800; text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.15s;
}
.cta-wa:hover { transform: translateY(-3px); }
.cta-ghost {
  background: rgba(255,255,255,0.12); color: #fff;
  padding: 0.85rem 1.8rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 800; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  transition: background 0.2s;
}
.cta-ghost:hover { background: rgba(255,255,255,0.2); }

/* ── FOOTER ── */
footer {
  background: var(--dark); color: rgba(255,255,255,0.7);
  padding: 3rem 5vw 1.5rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem; position: relative; z-index: 1;
}
.f-logo { font-family: 'Fredoka One', cursive; font-size: 1.5rem; color: #fff; margin-bottom: 0.8rem; }
.f-logo span { color: var(--blue); }
.f-desc { font-size: 0.85rem; line-height: 1.7; font-weight: 600; max-width: 240px; }
.f-socials { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.f-soc {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.f-soc:hover { background: var(--blue); transform: scale(1.1); }

.f-col h4 { font-family: 'Fredoka One', cursive; font-size: 1rem; color: #fff; margin-bottom: 1rem; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.f-col a { text-decoration: none; font-size: 0.85rem; color: rgba(255,255,255,0.55); font-weight: 600; transition: color 0.2s; }
.f-col a:hover { color: var(--blue); }

.f-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2.5rem; padding-top: 1.2rem;
  text-align: center; font-size: 0.8rem;
  color: rgba(255,255,255,0.3); grid-column: 1/-1; font-weight: 600;
}

/* ── MARQUEE STRIP ── */
.marquee-wrap {
  background: var(--blue); overflow: hidden;
  padding: 0.75rem 0; position: relative; z-index: 1;
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marqueeSlide 18s linear infinite;
  width: max-content;
}
.m-item {
  padding: 0 2rem;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem; color: #fff; letter-spacing: 0.05em;
  display: inline-flex; align-items: center; gap: 1rem;
}
.m-item::after { content: '✦'; opacity: 0.5; }

/* ── ANIMATIONS ── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes wiggle {
  0%,100% { transform: rotate(-4deg) scale(1); }
  50%      { transform: rotate(4deg) scale(1.05); }
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { flex-direction: column; padding-top: 90px; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-pills { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-right { width: 100%; }
  .b1,.b2,.b3 { display: none; }
  .lokasi-wrap { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
  .f-logo-col { grid-column: 1/-1; }
}