:root {
  --pink-50: #f3f6f1;
  --pink-100: #e3ebdf;
  --pink-200: #c3d2bd;
  --pink-300: #94a78e;
  --pink-500: #6c8264;
  --pink-700: #3e5239;
  --gold: #b89766;
  --ink: #2d3a2a;
  --muted: #7c8c79;
  --wa: #25d366;
  --wa-dark: #128c7e;
  --shadow: 0 10px 30px rgba(62, 82, 57, .15);
  --radius: 18px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', system-ui, sans-serif; color: var(--ink); background: var(--pink-50); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1100px, 92%); margin: 0 auto; }

header { position: sticky; top: 0; z-index: 50; background: rgba(255, 245, 248, .85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--pink-100); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--pink-700); }
.brand-logo { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--pink-200), var(--pink-500)); display: grid; place-items: center; color: #fff; font-size: 1.1rem; overflow: hidden; }
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.nav-links { display: none; gap: 26px; font-size: .95rem; }
.nav-links a { color: var(--ink); transition: color .2s; }
.nav-links a:hover { color: var(--pink-500); }
.nav-cta { background: var(--wa); color: #fff; padding: 8px 16px; border-radius: 999px; font-size: .9rem; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; transition: transform .2s, box-shadow .2s; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(37, 211, 102, .35); }
@media (min-width: 768px) { .nav-links { display: flex; } }

.hero { padding: 60px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, var(--pink-100), transparent 70%); z-index: 0; }
.hero-grid { display: grid; gap: 40px; align-items: center; position: relative; z-index: 1; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 60px; } }
.badge { display: inline-block; background: var(--pink-100); color: var(--pink-700); padding: 6px 14px; border-radius: 999px; font-size: .82rem; font-weight: 500; margin-bottom: 18px; letter-spacing: .3px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--ink); margin-bottom: 18px; }
.hero h1 .accent { color: var(--pink-500); font-style: italic; }
.hero p.lead { font-size: 1.08rem; color: var(--muted); margin-bottom: 28px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; border-radius: 999px; font-weight: 500; font-size: 1rem; cursor: pointer; border: none; transition: transform .2s, box-shadow .2s; }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 8px 20px rgba(37, 211, 102, .3); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37, 211, 102, .4); }
.btn-outline { background: #fff; color: var(--pink-700); border: 1.5px solid var(--pink-200); }
.btn-outline:hover { background: var(--pink-100); }

.hero-visual { position: relative; aspect-ratio: 1/1; max-width: 460px; margin: 0 auto; background: linear-gradient(135deg, var(--pink-100), var(--pink-200)); border-radius: 30% 70% 60% 40% / 50% 50% 50% 50%; display: grid; place-items: center; box-shadow: var(--shadow); animation: morph 12s ease-in-out infinite; }
@keyframes morph { 0%, 100% { border-radius: 30% 70% 60% 40% / 50% 50% 50% 50%; } 50% { border-radius: 60% 40% 30% 70% / 60% 40% 60% 40%; } }
.hero-visual .flower-emoji { font-size: clamp(8rem, 20vw, 12rem); filter: drop-shadow(0 8px 20px rgba(184, 80, 119, .25)); }
.floating { position: absolute; background: #fff; padding: 12px 16px; border-radius: 14px; box-shadow: var(--shadow); font-size: .85rem; display: flex; align-items: center; gap: 8px; }
.float-1 { top: 10%; left: -10%; animation: bob 4s ease-in-out infinite; }
.float-2 { bottom: 12%; right: -8%; animation: bob 4s ease-in-out infinite .8s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-1 strong { color: var(--pink-700); }
.float-2 strong { color: var(--gold); }

section { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head .badge { margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.section-head p { color: var(--muted); max-width: 580px; margin: 0 auto; }

.katalog { background: #fff; }
.grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: var(--pink-50); border-radius: var(--radius); overflow: hidden; transition: transform .3s, box-shadow .3s; border: 1px solid var(--pink-100); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-img { aspect-ratio: 4/5; display: grid; place-items: center; overflow: hidden; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-img .card-emoji { font-size: 5rem; }
.card-img.v0 { background: linear-gradient(135deg, var(--pink-100), var(--pink-200)); }
.card-img.v1 { background: linear-gradient(135deg, #d9e3d4, #b6c7b0); }
.card-img.v2 { background: linear-gradient(135deg, #e8eee4, #cad6c5); }
.card-img.v3 { background: linear-gradient(135deg, #dee7da, #b9cbb3); }
.card-img.v4 { background: linear-gradient(135deg, #e6ede0, #beceb8); }
.card-img.v5 { background: linear-gradient(135deg, #d4dfcf, #afc1a8); }
.card-body { padding: 20px; }
.card h3 { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.card .desc { color: var(--muted); font-size: .9rem; margin-bottom: 14px; min-height: 42px; }
.card .price { color: var(--pink-700); font-weight: 600; font-size: 1.1rem; margin-bottom: 14px; }
.card .btn-order { width: 100%; justify-content: center; padding: 10px 16px; font-size: .92rem; background: var(--wa); color: #fff; }
.card .btn-order:hover { background: var(--wa-dark); }

.testi { background: linear-gradient(180deg, var(--pink-50), #fff); }
.testi-grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

.testi-card {
  background: #efeae2;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(62, 82, 57, .18); }

.testi-card .chat-header {
  background: var(--pink-700);
  color: #fff;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-card .chat-header .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-200), var(--pink-500));
  display: grid; place-items: center;
  color: #fff; font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,.15);
  flex-shrink: 0;
}
.testi-card .chat-info { flex: 1; min-width: 0; }
.testi-card .chat-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: .95rem; line-height: 1.2;
  color: #fff;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.testi-card .chat-status {
  font-size: .72rem; color: rgba(255,255,255,.72);
  display: flex; align-items: center; gap: 5px;
  margin-top: 2px;
}
.testi-card .chat-status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #25d366; display: inline-block;
  box-shadow: 0 0 0 0 rgba(37,211,102,.7);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  50% { box-shadow: 0 0 0 4px rgba(37,211,102,0); }
}
.testi-card .chat-icons {
  display: flex; gap: 14px;
  color: rgba(255,255,255,.85);
  flex-shrink: 0;
}

.testi-card .chat-body {
  background: #efeae2;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(217,210,197,.55) 1px, transparent 1.5px),
    radial-gradient(circle at 70% 80%, rgba(217,210,197,.5) 1px, transparent 1.5px),
    radial-gradient(circle at 50% 50%, rgba(217,210,197,.4) 1px, transparent 1.5px);
  background-size: 28px 28px, 36px 36px, 20px 20px;
  padding: 16px 14px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
}

.testi-card .bubble {
  background: #fff;
  padding: 8px 10px 6px;
  border-radius: 0 8px 8px 8px;
  font-size: .9rem;
  color: var(--ink);
  max-width: 92%;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,.08);
  align-self: flex-start;
  word-wrap: break-word;
}
.testi-card .bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 10px 8px;
  border-color: transparent transparent transparent #fff;
}
.testi-card .bubble p {
  margin: 0;
  line-height: 1.45;
  color: var(--ink);
  font-style: normal;
}
.testi-card .bubble-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
  font-size: .65rem;
  color: #667781;
}
.testi-card .bubble-meta .check {
  color: #53bdeb;
  font-size: .7rem;
  letter-spacing: -2px;
  font-weight: 700;
}
.testi-card .bubble-stars { padding: 6px 12px 4px; }
.testi-card .bubble-stars .stars {
  font-size: 1.05rem;
  letter-spacing: 1px;
  line-height: 1;
}

.tentang { background: #fff; }
.tentang-grid { display: grid; gap: 50px; align-items: center; }
@media (min-width: 900px) { .tentang-grid { grid-template-columns: 1fr 1fr; } }
.tentang h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 20px; }
.tentang p { color: var(--muted); margin-bottom: 16px; }
.info-list { list-style: none; margin: 24px 0; }
.info-list li { display: flex; gap: 14px; align-items: start; padding: 12px 0; border-bottom: 1px dashed var(--pink-100); }
.info-list li:last-child { border-bottom: none; }
.info-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--pink-100); display: grid; place-items: center; color: var(--pink-700); flex-shrink: 0; font-size: 1.1rem; }
.info-list strong { display: block; color: var(--ink); font-weight: 600; font-size: .95rem; margin-bottom: 2px; }
.info-list span { color: var(--muted); font-size: .9rem; }

.map-card { border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; position: relative; background: var(--pink-100); }
.map-card iframe { width: 100%; aspect-ratio: 4/3; border: 0; display: block; }
.map-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,.75)); padding: 50px 20px 16px; color: #fff; pointer-events: none; }
.map-overlay h3 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 4px; color: #fff; }
.map-overlay p { font-size: .85rem; color: rgba(255,255,255,.9); margin: 0; }
.map-open-btn { position: absolute; top: 14px; right: 14px; background: #fff; color: var(--pink-700); padding: 8px 14px; border-radius: 999px; font-size: .82rem; font-weight: 500; box-shadow: 0 4px 12px rgba(0,0,0,.15); display: inline-flex; align-items: center; gap: 6px; transition: transform .2s; }
.map-open-btn:hover { transform: translateY(-1px); }

.cta-final { background: linear-gradient(135deg, var(--pink-300), var(--pink-500)); color: #fff; text-align: center; padding: 80px 0; }
.cta-final h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.cta-final p { font-size: 1.05rem; margin-bottom: 32px; opacity: .95; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-final .btn-wa { background: #fff; color: var(--pink-700); }
.cta-final .btn-wa:hover { background: var(--pink-50); }

footer { background: var(--ink); color: #fff; padding: 40px 0 20px; text-align: center; }
footer .brand { color: #fff; justify-content: center; margin-bottom: 14px; }
footer p { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 6px; }
.social { display: flex; gap: 12px; justify-content: center; margin: 20px 0 14px; }
.social a {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: #fff;
  transition: transform .25s, background .25s, box-shadow .25s;
  border: 1px solid rgba(255,255,255,.1);
}
.social a:hover { transform: translateY(-3px) scale(1.05); }
.social .social-wa:hover { background: #25d366; border-color: #25d366; box-shadow: 0 8px 20px rgba(37,211,102,.4); }
.social .social-ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(220,39,67,.4);
}
.social .social-tt:hover {
  background: #000;
  border-color: #000;
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
}
.copyright { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; margin-top: 20px; font-size: .82rem; color: rgba(255,255,255,.5); }

.fab-wa { position: fixed; bottom: 24px; right: 24px; z-index: 100; width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 25px rgba(37, 211, 102, .45); animation: pulse 2s infinite; transition: transform .2s; }
.fab-wa:hover { transform: scale(1.1); }
@keyframes pulse {
  0% { box-shadow: 0 10px 25px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 10px 25px rgba(37, 211, 102, .45), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 25px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, 0); }
}
