/* ============================================================
   CEMILAN RUMAH — Pastel Bakery Theme
   ============================================================ */
:root {
  --cream: #FFF9F3;
  --cream-2: #FDF2E8;
  --pink: #F3C6D0;
  --pink-soft: #FBE3E9;
  --rose: #E89AAE;
  --rose-deep: #D97E96;
  --choc: #6B4A3A;
  --choc-deep: #54372A;
  --sage: #B9CDA8;
  --sage-soft: #E4EDDC;
  --butter: #F8E0A9;
  --white: #fff;
  --shadow: 0 12px 35px rgba(214, 155, 174, 0.25);
  --shadow-lg: 0 24px 60px rgba(214, 155, 174, 0.35);
  --radius: 18px;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--choc);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
[hidden] { display: none !important; }

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

section { padding: 90px 0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all .3s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 25px rgba(217, 126, 150, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 35px rgba(217, 126, 150, 0.5); }
.btn-outline { background: transparent; color: var(--choc-deep); border-color: var(--rose); }
.btn-outline:hover { background: var(--rose); color: #fff; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(37,211,102,.4); }
.btn-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:#fff; }
.btn-ig:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(188,24,136,.4); }

/* ---------- Section tag & head ---------- */
.section-tag {
  display: inline-block;
  background: var(--pink-soft);
  color: var(--rose-deep);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-head { text-align: center; max-width: 680px; margin: 0 auto 55px; }
.section-head h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--choc-deep);
  margin-bottom: 15px;
  line-height: 1.25;
}
.section-head p { color: #9a7b69; font-size: 1.02rem; }
.section-head.light { max-width: 760px; }
.section-head.light h2 { color: var(--cream); }
.section-head.light p { color: #f6e3dc; }

/* ============================================================
   NAVBAR
   ============================================================ */
.announce {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
  color: #fff;
  font-size: 0.85rem;
  padding: 10px 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.announce-inner {
  max-width: 1240px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}
.announce-inner p { opacity: .98; }
.announce-inner i { margin-right: 5px; }
.announce-rules {
  background: rgba(255,255,255,0.18);
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 500;
}
.announce-rules strong { color: var(--butter); }

.navbar {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 999;
  padding: 14px 0;
  transition: all .35s ease;
}
.navbar.scrolled {
  background: rgba(255, 249, 243, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 25px rgba(214, 155, 174, 0.25);
  padding: 9px 0;
}
.nav-container {
  max-width: 1240px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow); border: 3px solid #fff; }
.brand-text {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--choc-deep);
  line-height: 1;
}
.brand-text em { font-style: italic; color: var(--rose-deep); }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 9px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--choc);
  transition: all .25s;
}
.nav-link:hover, .nav-link.active { color: var(--rose-deep); background: var(--pink-soft); }
.nav-cta { padding: 10px 20px; font-size: 0.85rem; margin-left: 8px; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--choc-deep); cursor: pointer; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: 190px;
  padding-bottom: 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, var(--pink-soft) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, var(--sage-soft) 0%, transparent 40%),
    var(--cream);
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .6; }
.hero-blob-1 { width: 380px; height: 380px; background: var(--pink); top: -80px; right: -80px; }
.hero-blob-2 { width: 300px; height: 300px; background: var(--butter); bottom: -60px; left: -60px; opacity: .4; }
.hero-container {
  max-width: 1240px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  position: relative;
}
.badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--sage);
  color: #6d8f52;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.hero-text h1 {
  font-family: var(--font-serif);
  font-size: 3.1rem;
  line-height: 1.18;
  color: var(--choc-deep);
  margin-bottom: 20px;
}
.hero-text h1 span {
  color: var(--rose-deep);
  font-style: italic;
  position: relative;
}
.hero-text p { color: #9a7b69; font-size: 1.05rem; margin-bottom: 30px; max-width: 520px; }
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 45px; }

/* Stats */
.hero-stats {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 2px dashed var(--pink);
}
.stat span.stat-num { font-family: var(--font-serif); font-size: 2.1rem; font-weight: 700; color: var(--rose-deep); }
.stat span.stat-plus { font-size: 1.5rem; font-weight: 700; color: var(--rose-deep); }
.stat p { font-size: 0.85rem; color: #9a7b69; }

/* Hero image */
.hero-image { position: relative; }
.hero-img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  aspect-ratio: 4/4.6;
  box-shadow: var(--shadow-lg);
  border: 8px solid #fff;
}
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 0.8rem;
}
.float-card i { font-size: 1.4rem; }
.float-card-1 { bottom: 40px; left: -35px; }
.float-card-1 i { color: var(--rose-deep); }
.float-card-2 { top: 35px; right: -35px; }
.float-card-2 i { color: var(--butter); }
.float-card p strong { color: var(--choc-deep); display: block; }

/* ============================================================
   USPS
   ============================================================ */
.usps { padding: 0 0 80px; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  transform: translateY(60px);
}
.usp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-soft);
  transition: all .35s;
}
.usp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.usp-icon {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
}
.usp-card:nth-child(2) .usp-icon { background: linear-gradient(135deg, var(--sage), #8fa977); }
.usp-card:nth-child(3) .usp-icon { background: linear-gradient(135deg, #F4C86A, #e8ab3a); }
.usp-card:nth-child(4) .usp-icon { background: linear-gradient(135deg, #A78BFA, #7c5ce0); }
.usp-card h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--choc-deep); margin-bottom: 8px; }
.usp-card p { color: #9a7b69; font-size: 0.9rem; }

/* ============================================================
   TENTANG
   ============================================================ */
.tentang { background: var(--cream-2); }
.tentang-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.tentang-img { position: relative; }
.tentang-img > img { border-radius: 28px; box-shadow: var(--shadow-lg); border: 8px solid #fff; object-fit: cover; aspect-ratio: 3/4; }
.tentang-exp {
  position: absolute;
  bottom: -22px; right: -18px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  border-radius: 20px;
  padding: 22px 26px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 150px;
}
.tentang-exp i { font-size: 1.8rem; display: block; margin-bottom: 5px; }
.tentang-exp strong { font-family: var(--font-serif); font-size: 1.2rem; display: block; }
.tentang-exp span { font-size: 0.78rem; opacity: .95; }
.tentang-text h2 { font-family: var(--font-serif); font-size: 2.4rem; color: var(--choc-deep); line-height: 1.25; margin-bottom: 18px; }
.tentang-text > p { color: #9a7b69; margin-bottom: 22px; }
.tentang-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.98rem; }
.tentang-list i { color: var(--rose-deep); font-size: 1.2rem; }
.tentang-more { display: flex; gap: 25px; margin-top: 25px; flex-wrap: wrap; }
.tentang-mini { display: flex; align-items: center; gap: 12px; background: var(--white); padding: 14px 20px; border-radius: 14px; box-shadow: var(--shadow); }
.tentang-mini i { font-size: 1.5rem; color: var(--rose-deep); }
.tentang-mini span { font-size: 0.85rem; color: #9a7b69; }
.tentang-mini strong { display: block; color: var(--choc-deep); }

/* ============================================================
   MENU
   ============================================================ */
.menu { background: var(--cream); }
.menu-filter { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 45px; }
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--pink);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--choc);
  cursor: pointer;
  transition: all .3s;
}
.filter-btn:hover { background: var(--pink-soft); }
.filter-btn.active { background: var(--rose-deep); border-color: var(--rose-deep); color: #fff; box-shadow: 0 8px 20px rgba(217,126,150,.4); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-soft);
  transition: all .35s;
  animation: fadeIn .5s ease;
}
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.menu-img { position: relative; overflow: hidden; }
.menu-img img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .5s ease; }
.menu-card:hover .menu-img img { transform: scale(1.08); }
.tag-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--butter), #f1c665);
  color: var(--choc-deep);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.menu-body { padding: 18px 20px 20px; }
.menu-body h3 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--choc-deep); margin-bottom: 5px; }
.menu-body p { color: #9a7b69; font-size: 0.85rem; margin-bottom: 13px; }
.menu-foot { display: flex; align-items: center; justify-content: space-between; }
.price { color: var(--rose-deep); font-weight: 700; font-size: 0.92rem; }
.order-link { font-size: 0.85rem; font-weight: 600; color: var(--choc-deep); transition: all .25s; }
.order-link i { transition: transform .25s; }
.order-link:hover { color: var(--rose-deep); }
.order-link:hover i { transform: translateX(4px); }

@keyframes fadeIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }

.menu-note {
  margin-top: 50px;
  background: var(--sage-soft);
  border: 2px dashed var(--sage);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.menu-note i { font-size: 2rem; color: #6d8f52; }
.menu-note p { color: #5f6f4a; flex: 1; min-width: 250px; }

/* ============================================================
   CUSTOM
   ============================================================ */
.custom {
  background:
    radial-gradient(circle at 10% 20%, rgba(243,198,208,.3), transparent 50%),
    linear-gradient(135deg, #7c5e92, #6b4a3a);
  position: relative;
}
.custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  position: relative;
}
.custom-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 35px 28px;
  transition: all .35s;
  display: flex;
  flex-direction: column;
}
.custom-card:hover { background: rgba(255,255,255,0.16); transform: translateY(-8px); }
.custom-card.wide { grid-column: span 3; align-items: center; text-align: center; }
.custom-icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  background: var(--pink-soft);
  color: var(--rose-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.custom-card h3 { font-family: var(--font-serif); color: var(--cream); font-size: 1.3rem; margin-bottom: 8px; }
.custom-card p { color: #f1dfe6; font-size: 0.92rem; margin-bottom: 18px; }
.custom-link { color: var(--butter); font-weight: 600; font-size: 0.9rem; margin-top: auto; }
.custom-link i { transition: transform .25s; }
.custom-link:hover i { transform: translateX(4px); }

/* ============================================================
   HOWTO
   ============================================================ */
.howto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.howto-step {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 45px 30px;
  box-shadow: var(--shadow);
  position: relative;
  border-top: 5px solid var(--pink);
}
.howto-step:nth-child(2) { border-top-color: var(--sage); }
.howto-step:nth-child(3) { border-top-color: var(--butter); }
.step-num {
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%);
  width: 45px; height: 45px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}
.howto-step i { font-size: 2.4rem; color: var(--rose-deep); margin: 10px 0 16px; }
.howto-step h3 { font-family: var(--font-serif); color: var(--choc-deep); font-size: 1.2rem; margin-bottom: 8px; }
.howto-step p { color: #9a7b69; font-size: 0.9rem; }

/* ============================================================
   TESTIMONI
   ============================================================ */
.testimoni { background: var(--cream-2); overflow: hidden; }
.testi-slider { position: relative; max-width: 900px; margin: auto; }
.testi-track { display: flex; overflow: hidden; border-radius: var(--radius); }
.testi-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius);
  padding: 42px 46px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .5s ease;
}
.testi-stars { color: #f0b429; font-size: 1rem; margin-bottom: 18px; letter-spacing: 4px; }
.testi-card > p { font-size: 1.08rem; color: #7d6155; font-style: italic; margin-bottom: 25px; max-width: 600px; margin-left: auto; margin-right: auto; }
.testi-user { display: flex; align-items: center; justify-content: center; gap: 14px; }
.avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.testi-user strong { display: block; color: var(--choc-deep); }
.testi-user span:last-child { font-size: 0.8rem; color: #9a7b69; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--rose-deep);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all .25s;
  z-index: 2;
}
.slider-btn:hover { background: var(--rose); }
.slider-btn.prev { left: -20px; }
.slider-btn.next { right: -20px; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 25px; }
.slider-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--pink); cursor: pointer; transition: all .3s; }
.slider-dots span.active { background: var(--rose-deep); width: 26px; border-radius: 50px; }
.testi-stars .muted { color: #e6d2c9; }

/* Review form */
.review-block { max-width: 640px; margin: 40px auto 0; text-align: center; }
.review-block > .btn { margin-bottom: 20px; }
.review-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: left;
  display: grid;
  gap: 14px;
  border: 2px solid var(--pink-soft);
}
.review-form h3 { font-family: var(--font-serif); color: var(--choc-deep); margin-bottom: 4px; }
.review-form input, .review-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--pink-soft);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--choc);
  background: var(--cream);
  outline: none;
}
.review-form input:focus, .review-form textarea:focus { border-color: var(--rose); }
.rating-input { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--choc-deep); }
.stars-input { font-size: 1.5rem; letter-spacing: 4px; color: #f0b429; cursor: pointer; }
.stars-input i.hover { color: var(--butter); transform: scale(1.15); }
.stars-input i { transition: color .2s, transform .2s; }

/* Galeri */
.galeri { background: var(--cream); }
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.galeri-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
  aspect-ratio: 1/1;
  margin: 0;
}
.galeri-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.galeri-item:hover img { transform: scale(1.08); }
.galeri-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: #fff;
  padding: 30px 14px 12px;
  font-size: 0.85rem;
  font-weight: 500;
}
.galeri-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #9a7b69;
  background: var(--white);
  border: 2px dashed var(--pink);
  border-radius: var(--radius);
  padding: 40px;
}
.galeri-empty i { font-size: 2.5rem; color: var(--rose); display: block; margin-bottom: 12px; }

/* ============================================================
   CTA PESAN
   ============================================================ */
.pesan {
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.25), transparent 40%),
    linear-gradient(135deg, var(--rose-deep), #c96a84);
  padding: 90px 0;
}
.pesan-box { text-align: center; max-width: 720px; margin: auto; color: #fff; }
.pesan-box h2 { font-family: var(--font-serif); font-size: 2.6rem; margin-bottom: 16px; }
.pesan-box p { font-size: 1.05rem; opacity: .95; margin-bottom: 30px; }
.pesan-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-bottom: 25px; }
.pesan-note { font-size: 0.9rem; opacity: .9; }
.pesan-note i { margin-right: 6px; }

/* ============================================================
   KONTAK
   ============================================================ */
.kontak-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: start; }
.info-item { display: flex; gap: 16px; margin-bottom: 25px; }
.info-item i {
  width: 50px; height: 50px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--pink-soft);
  color: var(--rose-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.info-item strong { display: block; color: var(--choc-deep); }
.info-item span { color: #9a7b69; font-size: 0.92rem; }
.kontak-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 15px;
}
.kontak-form input, .kontak-form select, .kontak-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--pink-soft);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--choc);
  background: var(--cream);
  outline: none;
  transition: border .25s;
}
.kontak-form input:focus, .kontak-form select:focus, .kontak-form textarea:focus { border-color: var(--rose); }
.kontak-form textarea { resize: vertical; }
.kontak-form button { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--choc-deep); color: #eadfd5; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 3px solid var(--rose); margin-bottom: 15px; }
.footer-brand p { font-size: 0.92rem; opacity: .9; margin-bottom: 20px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.footer-social a:hover { background: var(--rose-deep); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-serif); color: #fff; margin-bottom: 18px; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 12px; font-size: 0.92rem; opacity: .9; }
.footer-col ul li a { transition: all .25s; }
.footer-col ul li a:hover { color: var(--butter); padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; text-align: center; font-size: 0.85rem; opacity: .8; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 25px; right: 25px;
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 10px 25px rgba(37,211,102,.5);
  z-index: 998;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 10px 25px rgba(37,211,102,.5); }
  50% { box-shadow: 0 10px 35px rgba(37,211,102,.8); }
  100% { box-shadow: 0 10px 25px rgba(37,211,102,.5); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .galeri-grid { grid-template-columns: repeat(3, 1fr); }
  .custom-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-card.wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-text h1 { font-size: 2.5rem; }
}

@media (max-width: 820px) {
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 30px;
    gap: 15px;
    box-shadow: -10px 0 30px rgba(0,0,0,.1);
    transition: right .4s ease;
  }
  .nav-menu.open { right: 0; }
  .nav-toggle { display: block; z-index: 1001; }
  .nav-cta { margin: 10px 0 0; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { max-width: 420px; margin: auto; }
  .float-card-1 { left: -10px; }
  .float-card-2 { right: -10px; }
  .tentang-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .galeri-grid { grid-template-columns: repeat(2, 1fr); }
  .howto-grid { grid-template-columns: 1fr; }
  .kontak-grid { grid-template-columns: 1fr; }
  .menu-note { flex-direction: column; }
}

@media (max-width: 540px) {
  section { padding: 65px 0; }
  .section-head h2 { font-size: 1.9rem; }
  .usp-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .galeri-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-grid { grid-template-columns: 1fr; }
  .custom-card.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2.1rem; }
  .hero-stats { gap: 20px; }
  .stat span.stat-num { font-size: 1.6rem; }
  .slider-btn.prev { left: 5px; }
  .slider-btn.next { right: 5px; }
  .testi-card { padding: 32px 24px; }
}
