/* ============================================
   WARUNG APUNG PONDOK ASRI - MAIN STYLESHEET
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --kuning: #F5C518;
  --kuning-gelap: #D4A800;
  --kuning-muda: #FFF3B0;
  --merah-bata: #B94040;
  --merah-bata-tua: #8C2E2E;
  --merah-bata-muda: #D45555;
  --oranye: #E8600A;
  --hitam: #111111;
  --abu-tua: #444444;
  --abu: #777777;
  --abu-muda: #F4F4F4;
  --border: #E8E8E8;
  --putih: #ffffff;
}

/* ===== RESET & BASE ===== */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: 'Sora', sans-serif;
  background: var(--putih);
  color: var(--hitam);
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 200;
  background: var(--putih);
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 0 6%; 
  height: 72px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem; 
  font-weight: 800;
  color: var(--hitam); 
  text-decoration: none;
  display: flex; 
  align-items: center; 
  gap: .5rem;
}

.nav-logo .logo-dot { 
  color: var(--kuning); 
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hitam);
  position: relative;
  transition: transform .3s ease, background .3s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  transition: transform .3s ease, opacity .3s ease;
}

.nav-toggle span::before { 
  top: -8px; 
}

.nav-toggle span::after { 
  top: 8px; 
}

.nav-toggle.open span { 
  background: transparent; 
}

.nav-toggle.open span::before { 
  transform: translateY(8px) rotate(45deg); 
}

.nav-toggle.open span::after { 
  transform: translateY(-8px) rotate(-45deg); 
}

.nav-links { 
  display: flex; 
  gap: .25rem; 
  list-style: none; 
  align-items: center; 
}

.nav-links a {
  color: var(--abu-tua); 
  text-decoration: none;
  font-size: 0.88rem; 
  font-weight: 600;
  letter-spacing: .3px; 
  padding: 8px 16px;
  border-radius: 4px; 
  transition: all .2s;
}

.nav-links a:hover { 
  color: var(--hitam); 
  background: var(--abu-muda); 
}

.nav-links a.active {
  background: var(--kuning); 
  color: var(--hitam) !important;
  font-weight: 700;
}

.nav-cta {
  background: var(--merah-bata) !important; 
  color: var(--putih) !important;
  padding: 10px 22px !important; 
  border-radius: 6px !important;
}

.nav-cta:hover { 
  background: var(--merah-bata-tua) !important; 
  color: var(--putih) !important; 
}

.nav-phone {
  font-weight: 800; 
  font-size: 0.9rem;
  color: var(--hitam); 
  letter-spacing: .5px;
}

.nav-phone span { 
  color: var(--kuning-gelap); 
}

/* ===== SECTION BASE ===== */
section { 
  padding: 90px 6%; 
}

.section-label {
  display: inline-block;
  font-size: 0.72rem; 
  font-weight: 800;
  letter-spacing: 4px; 
  text-transform: uppercase;
  color: var(--kuning-gelap); 
  margin-bottom: .75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--hitam); 
  font-weight: 900; 
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em { 
  font-style: italic; 
  color: var(--kuning-gelap); 
}

.section-desc { 
  color: var(--abu); 
  line-height: 1.8; 
  max-width: 560px; 
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--kuning); 
  color: var(--hitam);
  padding: 14px 32px; 
  border-radius: 6px;
  font-weight: 700; 
  font-size: 0.92rem; 
  text-decoration: none;
  transition: all .25s; 
  border: 2px solid var(--kuning);
}

.btn-primary:hover { 
  background: var(--kuning-gelap); 
  border-color: var(--kuning-gelap); 
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(212,168,0,.3); 
}

.btn-outline {
  display: inline-block;
  background: transparent; 
  color: var(--hitam);
  padding: 14px 32px; 
  border-radius: 6px;
  font-weight: 700; 
  font-size: 0.92rem; 
  text-decoration: none;
  border: 2px solid var(--hitam); 
  transition: all .25s; 
  margin-left: 1rem;
}

.btn-outline:hover { 
  background: var(--hitam); 
  color: var(--putih); 
  transform: translateY(-2px); 
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--abu-muda);
  padding: 140px 6% 80px; 
  text-align: center;
  border-bottom: 3px solid var(--kuning);
  position: relative; 
  overflow: hidden;
}

.page-hero::before {
  content: ''; 
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0; 
  height: 4px;
  background: var(--kuning);
}

.page-hero .badge {
  display: inline-block; 
  background: var(--kuning);
  color: var(--hitam); 
  font-size: 0.72rem; 
  font-weight: 800;
  letter-spacing: 3px; 
  text-transform: uppercase;
  padding: 6px 20px; 
  border-radius: 4px; 
  margin-bottom: 1.5rem;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--hitam); 
  font-weight: 900; 
  line-height: 1.15;
}

.page-hero h1 em { 
  font-style: italic; 
  color: var(--kuning-gelap); 
}

.page-hero p { 
  color: var(--abu); 
  font-size: 1.05rem; 
  margin-top: 1rem; 
  max-width: 560px; 
  margin-left: auto; 
  margin-right: auto; 
  line-height: 1.7; 
}

/* ===== FOOTER ===== */
footer {
  background: var(--hitam);
  color: rgba(255,255,255,.5);
  text-align: center; 
  padding: 2.5rem 6%;
  font-size: 0.875rem;
  border-top: 4px solid var(--kuning); 
  border-bottom: 4px solid var(--merah-bata);
}

footer a { 
  color: var(--kuning); 
  text-decoration: none; 
}

footer a:hover { 
  color: #fff; 
}

/* ===== HERO SECTION (Homepage) ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.6fr;
  align-items: start;
  min-height: 90vh;
  padding: 120px 6% 72px;
  background: var(--putih);
  background-image: url('../image/hero.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: visible;
  margin-top: 0;
}

.hero-left {
  padding: 0 3% 0 6%;
  position: relative; 
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  background: var(--kuning); 
  color: var(--hitam);
  font-size: 0.7rem; 
  font-weight: 800; 
  letter-spacing: 3px;
  text-transform: uppercase; 
  padding: 7px 18px;
  border-radius: 3px; 
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  font-weight: 800; 
  line-height: 1.0;
  color: var(--hitam); 
  margin-bottom: 1.5rem;
  text-transform: uppercase; 
  letter-spacing: -2px;
}

.hero h1 .yellow {
  color: var(--kuning-gelap);
  font-family: 'Playfair Display', serif;
  font-style: italic; 
  font-weight: 900;
  text-transform: none; 
  letter-spacing: 0;
  display: block; 
  font-size: 1.15em;
}

.hero-sub {
  color: var(--abu); 
  line-height: 1.8; 
  font-size: 0.95rem;
  max-width: 360px; 
  margin-bottom: 2.5rem;
}

.hero-btns { 
  display: flex; 
  gap: 1rem; 
  flex-wrap: wrap; 
  margin-bottom: 3rem; 
}

.hero-stats { 
  display: flex; 
  gap: 2rem; 
  padding-top: 1.5rem; 
  border-top: 1px solid var(--border); 
}

.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; 
  font-weight: 900;
  color: var(--hitam); 
  display: block;
}

.hero-stat .lbl {
  font-size: 0.72rem; 
  color: var(--abu);
  font-weight: 600; 
  text-transform: uppercase; 
  letter-spacing: 1px;
}

.hero-center {
  position: relative; 
  z-index: 1;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
  align-self: center;
  height: auto;
}

.hero-mandala {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  width: 620px; 
  height: 620px;
  opacity: .06; 
  pointer-events: none;
}

.hero-img-circle {
  width: 460px; 
  height: 460px;
  border-radius: 50%;
  background: var(--kuning);
  overflow: hidden;
  position: relative; 
  z-index: 2;
  margin-top: 0;
  box-shadow: 0 30px 80px rgba(212,168,0,.25);
  animation: floatCircle 5s ease-in-out infinite;
}

.hero-slide {
  position: absolute; 
  inset: 0;
  width: 100%; 
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity .4s ease;
}

.hero-slide.active { 
  opacity: 1; 
}

.hero-right {
  padding: 180px 3% 0 2%;
  display: flex; 
  flex-direction: column;
  justify-content: flex-start; 
  gap: 1.6rem;
  height: auto;
  max-width: 240px;
}

.side-label {
  font-size: 0.92rem; 
  font-weight: 800;
  letter-spacing: 2px; 
  text-transform: uppercase;
  color: var(--abu); 
  cursor: default;
  display: flex; 
  align-items: center; 
  gap: .8rem;
  transition: color .2s;
}

.side-label::after {
  content: '/'; 
  color: var(--kuning);
  font-weight: 900; 
  font-size: 1rem;
}

.side-label.active-label { 
  color: var(--hitam); 
}

.side-label:hover { 
  color: var(--hitam); 
}

@keyframes floatCircle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== FEATURES SECTION ===== */
.features {
  background: var(--putih);
  display: grid; 
  grid-template-columns: 1fr 1fr;
  gap: 5rem; 
  align-items: center;
}

.features-img-wrap { 
  position: relative; 
}

.features-img-main {
  width: 100%; 
  border-radius: 16px;
  aspect-ratio: 4/3; 
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
}

.features-badge {
  position: absolute; 
  bottom: -20px; 
  right: -20px;
  background: var(--kuning); 
  padding: 1.5rem 2rem;
  border-radius: 12px; 
  text-align: center;
  box-shadow: 0 8px 24px rgba(212,168,0,.3);
}

.features-badge .big { 
  font-family: 'Playfair Display', serif; 
  font-size: 2rem; 
  font-weight: 900; 
  display: block; 
}

.features-badge .sm { 
  font-size: 0.78rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
}

.features-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 1.25rem; 
  margin-top: 2rem; 
}

.feature-card {
  background: var(--abu-muda); 
  padding: 1.5rem;
  border-radius: 10px; 
  transition: all .3s;
  border-left: 4px solid transparent;
}

.feature-card:hover { 
  border-left-color: var(--kuning); 
  background: var(--kuning-muda); 
  transform: translateX(4px); 
}

.feature-icon { 
  font-size: 1.6rem; 
  margin-bottom: .6rem; 
  display: block; 
}

.feature-card h4 { 
  font-size: 0.95rem; 
  font-weight: 700; 
  color: var(--hitam); 
  margin-bottom: .3rem; 
}

.feature-card p { 
  font-size: 0.82rem; 
  color: var(--abu); 
  line-height: 1.6; 
}

/* ===== MENU SECTION ===== */
.menu-section { 
  background: var(--abu-muda); 
}

.menu-header { 
  text-align: center; 
  margin-bottom: 3rem; 
}

.menu-header .section-desc { 
  margin: 0 auto; 
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem; 
  max-width: 1200px; 
  margin: 0 auto;
}

.menu-card {
  background: var(--putih);
  border-radius: 14px; 
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: all .3s; 
  border: 2px solid transparent;
}

.menu-card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 16px 40px rgba(0,0,0,.1); 
  border-color: var(--kuning); 
}

.menu-card-img { 
  position: relative; 
  height: 200px; 
  overflow: hidden; 
}

.menu-card-img img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform .4s; 
}

.menu-card:hover .menu-card-img img { 
  transform: scale(1.07); 
}

.menu-card-icon {
  position: absolute; 
  top: 12px; 
  left: 12px;
  background: var(--kuning); 
  padding: 6px 10px;
  border-radius: 8px; 
  font-size: 1.4rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}

.menu-card-body { 
  padding: 1.25rem 1.5rem 1.5rem; 
}

.menu-card h3 { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.15rem; 
  font-weight: 700; 
  color: var(--hitam); 
  margin-bottom: .5rem; 
}

.menu-card p { 
  font-size: 0.83rem; 
  color: var(--abu); 
  line-height: 1.7; 
}

.menu-price {
  display: inline-block; 
  margin-top: 1rem;
  background: var(--kuning); 
  color: var(--hitam);
  padding: 5px 16px; 
  border-radius: 4px;
  font-size: 0.82rem; 
  font-weight: 800;
}

.menu-cta { 
  text-align: center; 
  margin-top: 2.5rem; 
}

/* ===== ULASAN (REVIEWS) SECTION ===== */
.ulasan { 
  background: var(--putih); 
}

.ulasan-inner { 
  max-width: 1100px; 
  margin: 0 auto; 
}

.ulasan-header { 
  text-align: center; 
  margin-bottom: 3rem; 
}

.ulasan-rating-big {
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 2rem;
  background: var(--kuning); 
  padding: 2rem 3rem;
  border-radius: 14px; 
  margin-bottom: 3rem;
  max-width: 500px; 
  margin-left: auto; 
  margin-right: auto;
}

.rating-num { 
  font-family: 'Playfair Display', serif; 
  font-size: 4rem; 
  font-weight: 900; 
  color: var(--hitam); 
  line-height: 1; 
}

.rating-stars { 
  font-size: 1.5rem; 
  color: var(--hitam); 
  letter-spacing: 3px; 
}

.rating-count { 
  font-size: 0.83rem; 
  color: var(--hitam); 
  font-weight: 600; 
  margin-top: .3rem; 
}

.ulasan-cards { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.5rem; 
}

.ulasan-card {
  background: var(--abu-muda); 
  padding: 2rem;
  border-radius: 14px; 
  border-top: 4px solid var(--kuning); 
  border-bottom: 4px solid var(--merah-bata);
  transition: transform .3s;
}

.ulasan-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 10px 30px rgba(0,0,0,.08); 
}

.ulasan-stars { 
  color: var(--kuning-gelap); 
  font-size: 1rem; 
  margin-bottom: .75rem; 
  letter-spacing: 2px; 
}

.ulasan-text { 
  color: var(--abu-tua); 
  font-size: 0.9rem; 
  line-height: 1.8; 
  font-style: italic; 
  margin-bottom: 1rem; 
}

.ulasan-author { 
  font-weight: 700; 
  color: var(--hitam); 
  font-size: 0.82rem; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
}

/* ===== INFO SECTION ===== */
.info { 
  background: var(--abu-muda); 
}

.info-inner { 
  max-width: 1100px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 4rem; 
  align-items: start; 
}

.info-box {
  background: var(--putih); 
  padding: 1.5rem;
  border-radius: 10px; 
  margin-bottom: 1rem;
  border-left: 4px solid var(--kuning);
}

.info-box h4 { 
  font-weight: 700; 
  margin-bottom: .5rem; 
  color: var(--hitam); 
  font-size: 0.95rem; 
}

.info-box p, 
.info-box a { 
  color: var(--abu); 
  font-size: 0.9rem; 
  line-height: 1.7; 
  text-decoration: none; 
}

.info-box a:hover { 
  color: var(--kuning-gelap); 
}

.map-placeholder {
  background: var(--kuning); 
  border-radius: 14px;
  padding: 3rem; 
  text-align: center;
}

.map-placeholder .icon { 
  font-size: 3.5rem; 
  display: block; 
  margin-bottom: 1rem; 
}

.map-placeholder h3 { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.4rem; 
  color: var(--hitam); 
  margin-bottom: .75rem; 
}

.map-placeholder p { 
  color: rgba(0,0,0,.6); 
  font-size: 0.9rem; 
  line-height: 1.6; 
  margin-bottom: 1.5rem; 
}

.map-link {
  display: inline-block; 
  background: var(--hitam); 
  color: var(--putih);
  padding: 12px 28px; 
  border-radius: 6px;
  text-decoration: none; 
  font-weight: 700; 
  font-size: 0.88rem;
  transition: all .25s;
}

.map-link:hover { 
  background: #333; 
  transform: translateY(-2px); 
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--hitam);
  text-align: center; 
  padding: 80px 6%;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--putih); 
  margin-bottom: 1rem;
}

.cta-banner h2 span { 
  color: var(--kuning); 
}

.cta-banner p { 
  color: rgba(255,255,255,.6); 
  font-size: 1rem; 
  margin-bottom: 2.5rem; 
}

.cta-banner .btn-outline { 
  border-color: var(--putih); 
  color: var(--putih); 
  margin-left: 1rem; 
}

.cta-banner .btn-outline:hover { 
  background: var(--putih); 
  color: var(--hitam); 
}

/* ===== SEWA GEDUNG SECTION ===== */
.sewa-section { 
  background: var(--abu-muda); 
  padding: 90px 6%; 
}

.sewa-inner { 
  max-width: 1200px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 5rem; 
  align-items: start; 
}

.sewa-highlights { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 1.1rem; 
  margin-top: 2rem; 
}

.sewa-hi { 
  display: flex; 
  align-items: flex-start; 
  gap: .85rem; 
  padding: 1rem 1.1rem; 
  background: var(--putih); 
  border-radius: 8px; 
  border-left: 3px solid var(--merah-bata); 
  transition: box-shadow .2s; 
}

.sewa-hi:hover { 
  box-shadow: 0 4px 16px rgba(0,0,0,.08); 
}

.sewa-hi > span { 
  font-size: 1.5rem; 
  flex-shrink: 0; 
  line-height: 1; 
  margin-top: .1rem; 
}

.sewa-hi strong { 
  font-size: .88rem; 
  font-weight: 700; 
  color: var(--hitam); 
  display: block; 
  margin-bottom: .2rem; 
}

.sewa-hi p { 
  font-size: .8rem; 
  color: var(--abu); 
  line-height: 1.5; 
  margin: 0; 
}

.sewa-visual { 
  display: flex; 
  flex-direction: column; 
  gap: 1.25rem; 
}

.sewa-img-main { 
  position: relative; 
  border-radius: 14px; 
  overflow: hidden; 
}

.sewa-img-main img { 
  width: 100%; 
  height: 350px; 
  object-fit: cover; 
  display: block; 
}

.sewa-overlay { 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  padding: 1rem 1.25rem; 
  background: linear-gradient(transparent, rgba(0,0,0,.65)); 
}

.sewa-tag { 
  background: var(--kuning); 
  color: var(--hitam); 
  font-size: .72rem; 
  font-weight: 800; 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
  padding: 5px 14px; 
  border-radius: 4px; 
}

.sewa-cards-mini { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 1rem; 
}

.sewa-mini-card { 
  background: var(--putih); 
  border-radius: 10px; 
  padding: 1.1rem 1.25rem; 
  display: flex; 
  align-items: center; 
  gap: .85rem; 
  border: 1.5px solid var(--border); 
  transition: all .25s; 
}

.sewa-mini-card:hover { 
  border-color: var(--merah-bata); 
  background: #fdf0f0; 
  transform: translateY(-2px); 
}

.smc-ico { 
  font-size: 1.75rem; 
  flex-shrink: 0; 
}

.sewa-mini-card strong { 
  font-size: .85rem; 
  font-weight: 700; 
  color: var(--hitam); 
  display: block; 
}

.sewa-mini-card p { 
  font-size: .75rem; 
  color: var(--abu); 
  margin: 0; 
}

/* ===== TENTANG (ABOUT) PAGE ===== */
.story { 
  background: var(--putih); 
}

.story-inner { 
  max-width: 1100px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 5rem; 
  align-items: center; 
}

.story-text {
}

.story-text .section-label {
  text-align: center;
  display: block;
}

.story-text .section-title {
  text-align: center;
}

.story-text p { 
  color: var(--abu); 
  line-height: 1.85; 
  margin-bottom: 1.2rem; 
  font-size: 0.97rem; 
  text-align: justify;
}

.story-paragraphs-mobile {
  display: none;
}

.story-paragraphs-mobile p {
  color: var(--abu); 
  line-height: 1.85; 
  margin-bottom: 1.2rem; 
  font-size: 0.97rem; 
  text-align: justify;
}

.story-img {
  border-radius: 16px; 
  overflow: hidden;
  aspect-ratio: 4/3; 
  background: var(--kuning);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 7rem; 
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
}

.highlight-box {
  background: var(--merah-bata); 
  padding: 2rem;
  border-radius: 10px; 
  margin-top: 1.5rem;
}

.highlight-box p { 
  font-style: italic; 
  font-size: 1rem; 
  line-height: 1.7; 
  color: #fff; 
  margin: 0; 
}

.highlight-box cite { 
  display: block; 
  margin-top: .75rem; 
  font-size: 0.82rem; 
  color: rgba(255,255,255,.75); 
  font-style: normal; 
  font-weight: 700; 
}

.values { 
  background: var(--abu-muda); 
}

.values-inner { 
  max-width: 1100px; 
  margin: 0 auto; 
}

.values-header { 
  text-align: center; 
  margin-bottom: 3rem; 
}

.values-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
  gap: 1.5rem; 
}

.value-card {
  background: var(--putih); 
  padding: 2rem; 
  border-radius: 12px;
  text-align: center; 
  border-top: 4px solid var(--kuning); 
  border-bottom: 4px solid var(--merah-bata);
  transition: all .3s; 
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}

.value-card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 12px 32px rgba(0,0,0,.1); 
}

.value-icon { 
  font-size: 2.5rem; 
  margin-bottom: 1rem; 
  display: block;
  text-align: center;
}

.value-icon img {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
  display: inline-block;
}

.value-card h3 { 
  font-family: 'Playfair Display', serif; 
  color: var(--hitam); 
  font-size: 1.15rem; 
  margin-bottom: .75rem; 
}

.value-card p { 
  color: var(--abu); 
  font-size: 0.88rem; 
  line-height: 1.7; 
}

.stats-bar { 
  background: linear-gradient(90deg, var(--kuning) 0%, var(--kuning) 60%, var(--merah-bata) 100%); 
  padding: 60px 6%; 
}

.stats-inner { 
  max-width: 900px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 2rem; 
  text-align: center; 
}

.stat-item .num { 
  font-family: 'Playfair Display', serif; 
  font-size: 2.5rem; 
  color: var(--hitam); 
  font-weight: 900; 
  display: block; 
}

.stat-item .label { 
  color: rgba(0,0,0,.65); 
  font-size: 0.8rem; 
  font-weight: 700; 
  letter-spacing: 1px; 
  text-transform: uppercase; 
  margin-top: .3rem; 
}

.promise { 
  background: var(--putih); 
}

.promise-inner { 
  max-width: 1100px; 
  margin: 0 auto; 
}

.promise-header { 
  text-align: center; 
  margin-bottom: 3rem; 
}

.promise-desc { 
  text-align: center; 
  color: var(--abu); 
  max-width: 580px; 
  margin: 0 auto 3rem; 
  line-height: 1.8; 
}

.promise-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 1.5rem; 
}

.promise-card {
  background: var(--abu-muda); 
  padding: 2rem; 
  border-radius: 12px; 
  text-align: center;
  transition: all .3s;
}

.promise-card:hover { 
  background: var(--kuning-muda); 
  transform: translateY(-4px); 
}

.promise-card .p-icon { 
  font-size: 2.5rem; 
  display: block; 
  margin-bottom: .75rem; 
}

.promise-card h4 { 
  font-family: 'Playfair Display', serif; 
  color: var(--hitam); 
  margin-bottom: .4rem; 
  font-size: 1rem; 
}

.promise-card p { 
  color: var(--abu); 
  font-size: 0.85rem; 
  line-height: 1.6; 
}

/* ===== KONTAK (CONTACT) PAGE ===== */
.contact-main { 
  background: var(--putih); 
}

.contact-inner { 
  max-width: 1100px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1fr 1.4fr; 
  gap: 4rem; 
  align-items: start; 
}

.contact-cards { 
  display: flex; 
  flex-direction: column; 
  gap: 1rem; 
}

.contact-card {
  background: var(--abu-muda); 
  padding: 1.5rem;
  border-radius: 10px; 
  display: flex; 
  align-items: flex-start; 
  gap: 1.25rem;
  border-left: 4px solid var(--merah-bata); 
  transition: all .2s;
}

.contact-card:hover { 
  background: var(--kuning-muda); 
  transform: translateX(4px); 
}

.contact-card .c-icon { 
  font-size: 1.75rem; 
  flex-shrink: 0; 
}

.contact-card h4 { 
  font-family: 'Playfair Display', serif; 
  color: var(--hitam); 
  margin-bottom: .3rem; 
}

.contact-card p, 
.contact-card a { 
  color: var(--abu); 
  font-size: 0.92rem; 
  line-height: 1.7; 
  text-decoration: none; 
}

.contact-card a:hover { 
  color: var(--kuning-gelap); 
}

.map-embed {
  margin-top: 1.5rem; 
  background: var(--merah-bata);
  border-radius: 14px; 
  padding: 2rem; 
  text-align: center;
}

.map-embed .icon { 
  font-size: 3rem; 
  margin-bottom: 1rem; 
  display: block; 
}

.map-embed h3 { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.2rem; 
  color: #fff; 
  margin-bottom: .5rem; 
}

.map-embed p { 
  color: rgba(255,255,255,.75); 
  font-size: 0.875rem; 
  margin-bottom: 1.25rem; 
  line-height: 1.6; 
}

.map-btn {
  display: inline-block; 
  background: #fff; 
  color: var(--merah-bata);
  padding: 12px 24px; 
  border-radius: 6px; 
  text-decoration: none;
  font-weight: 700; 
  font-size: 0.88rem; 
  transition: all .25s;
}

.map-btn:hover { 
  background: #333; 
  transform: translateY(-2px); 
}

.form-wrapper {
  background: var(--abu-muda); 
  padding: 2.5rem;
  border-radius: 14px; 
  border-top: 4px solid var(--kuning); 
  border-bottom: 4px solid var(--merah-bata);
}

.form-wrapper h3 { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.5rem; 
  color: var(--hitam); 
  margin-bottom: .5rem; 
}

.form-wrapper > p { 
  color: var(--abu); 
  font-size: 0.9rem; 
  margin-bottom: 2rem; 
  line-height: 1.6; 
}

.form-group { 
  margin-bottom: 1.25rem; 
}

.form-group label { 
  display: block; 
  font-size: 0.82rem; 
  font-weight: 700; 
  color: var(--hitam); 
  margin-bottom: .4rem; 
  letter-spacing: .5px; 
  text-transform: uppercase; 
}

.form-group input, 
.form-group textarea, 
.form-group select {
  width: 100%; 
  padding: 12px 16px;
  border: 2px solid var(--border); 
  border-radius: 8px;
  font-family: 'Sora', sans-serif; 
  font-size: 0.92rem;
  color: var(--hitam); 
  background: var(--putih);
  transition: border-color .2s; 
  outline: none;
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
  border-color: var(--kuning); 
  box-shadow: 0 0 0 3px rgba(245,197,24,.2);
}

.form-group textarea { 
  height: 140px; 
  resize: vertical; 
}

.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 1rem; 
}

.form-submit {
  width: 100%; 
  padding: 14px;
  background: var(--kuning); 
  color: var(--hitam);
  border: none; 
  border-radius: 8px;
  font-family: 'Sora', sans-serif; 
  font-size: 1rem; 
  font-weight: 800;
  cursor: pointer; 
  transition: all .25s; 
  margin-top: .5rem;
}

.form-submit:hover { 
  background: var(--kuning-gelap); 
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(212,168,0,.3); 
}

.form-success { 
  display: none; 
  text-align: center; 
  padding: 2rem; 
}

.form-success .s-icon { 
  font-size: 3rem; 
  display: block; 
  margin-bottom: 1rem; 
}

.form-success h4 { 
  font-family: 'Playfair Display', serif; 
  color: var(--hitam); 
  font-size: 1.5rem; 
  margin-bottom: .5rem; 
}

.form-success p { 
  color: var(--abu); 
}

.social-section { 
  background: var(--abu-muda); 
  text-align: center; 
}

.social-inner { 
  max-width: 700px; 
  margin: 0 auto; 
}

.social-inner h2 { 
  font-family: 'Playfair Display', serif; 
  font-size: 2rem; 
  color: var(--hitam); 
  margin-bottom: 1rem; 
}

.social-inner p { 
  color: var(--abu); 
  margin-bottom: 2rem; 
  line-height: 1.7; 
}

.social-links { 
  display: flex; 
  justify-content: center; 
  gap: 1rem; 
  flex-wrap: wrap; 
}

.social-link {
  display: flex; 
  align-items: center; 
  gap: .6rem;
  padding: 12px 24px; 
  border-radius: 8px;
  text-decoration: none; 
  font-weight: 700; 
  font-size: 0.88rem;
  transition: all .25s;
}

.social-link.wa { 
  background: #25D366; 
  color: var(--putih); 
}

/* ===== LAYANAN PAGE SECTIONS ===== */
.services {
  background: var(--putih);
  padding: 90px 6%;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--abu-muda);
  border-radius: 12px;
  padding: 2rem;
  transition: all .3s;
  border: 2px solid transparent;
  border-left: 4px solid var(--kuning);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
  border-color: var(--kuning);
  background: var(--kuning-muda);
}

.service-head {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.s-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.service-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--hitam);
  font-weight: 700;
  margin-bottom: .3rem;
}

.service-head p {
  color: var(--abu);
  font-size: 0.9rem;
}

.service-body ul {
  list-style: none;
  padding: 0;
}

.service-body li {
  color: var(--abu);
  font-size: 0.92rem;
  padding: 0.5rem 0;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.service-body li:last-child {
  border-bottom: none;
}

.service-body li::before {
  content: '✓ ';
  color: var(--kuning-gelap);
  font-weight: 800;
  margin-right: 0.5rem;
}

/* ===== FASILITAS SECTION ===== */
.fasilitas {
  background: var(--abu-muda);
  padding: 90px 6%;
}

.fasilitas-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.fasilitas-header {
  text-align: center;
  margin-bottom: 3rem;
}

.fasilitas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.fas-card {
  background: var(--putih);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all .3s;
  border-top: 4px solid var(--kuning);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}

.fas-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}

.f-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.fas-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--hitam);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.fas-card p {
  color: var(--abu);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== EXPERIENCE SECTION ===== */
.experience {
  background: var(--putih);
  padding: 90px 6%;
}

.experience-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.exp-text {
  padding-right: 2rem;
}

.exp-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.exp-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--abu-muda);
  border-radius: 10px;
  transition: all .3s;
  border-left: 4px solid var(--kuning);
}

.exp-item:hover {
  background: var(--kuning-muda);
  transform: translateX(8px);
}

.e-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.exp-item h4 {
  font-family: 'Playfair Display', serif;
  color: var(--hitam);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.exp-item p {
  color: var(--abu);
  font-size: 0.9rem;
  line-height: 1.6;
}

.exp-visual {
  background: url('../image/image3.jpg') center top / 100% 300px no-repeat;
  border-radius: 16px;
  padding: 320px 2rem 2rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  margin-bottom: 2rem;
  position: relative;
}

.exp-visual .big-icon {
  display: none;
}

.exp-visual h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--hitam);
  font-weight: 700;
  margin: 2rem 0 0.75rem 0;
  padding: 0;
  background: none;
  border-radius: 0;
}

.exp-visual p {
  color: rgba(0,0,0,.65);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  padding: 0;
  background: none;
}

.price-badge {
  background: var(--kuning);
  color: var(--hitam);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-block;
  margin: 0;
}

/* ===== CTA SECTION ===== */
.cta {
  background: var(--hitam);
  text-align: center;
  padding: 80px 6%;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--putih);
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta a {
  display: inline-block;
  background: var(--kuning);
  color: var(--hitam);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: all .25s;
  margin: 0 0.5rem;
}

.cta a:hover {
  background: var(--kuning-gelap);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,168,0,.3);
}

.social-link.wa:hover { 
  background: #1da851; 
  transform: translateY(-2px); 
}

.social-link.maps { 
  background: var(--hitam); 
  color: var(--putih); 
}

.social-link.maps:hover { 
  background: #333; 
  transform: translateY(-2px); 
}

.social-link.phone { 
  background: var(--merah-bata); 
  color: #fff; 
}

.social-link.phone:hover { 
  background: var(--merah-bata-tua); 
  transform: translateY(-2px); 
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.wa-float {
  position: fixed; 
  bottom: 28px; 
  right: 28px; 
  z-index: 9999;
  width: 58px; 
  height: 58px; 
  border-radius: 50%;
  background: #25D366;
  display: flex; 
  align-items: center; 
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .25s, box-shadow .25s;
}

.wa-float:hover { 
  transform: scale(1.1) translateY(-2px); 
  box-shadow: 0 8px 28px rgba(37,211,102,.55); 
}

/* ===== CHATBOT STYLES ===== */
#chatbot-container {
  position: fixed;
  bottom: 28px;
  right: 100px;
  z-index: 9998;
  font-family: 'Sora', sans-serif;
}

.chatbot-button {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--merah-bata);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(185,64,64,.45);
  transition: all .25s;
  position: relative;
}

.chatbot-button:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(185,64,64,.55);
  background: var(--merah-bata-tua);
}

.chatbot-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--kuning);
  color: var(--hitam);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  border: 2px solid white;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.chatbot-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  pointer-events: none;
  transition: all .3s ease;
}

.chatbot-open .chatbot-window {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}

.chatbot-open .chatbot-button {
  transform: rotate(90deg);
}

.chatbot-header {
  background: linear-gradient(135deg, var(--merah-bata), var(--merah-bata-tua));
  color: white;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.chatbot-header span {
  font-size: 0.75rem;
  opacity: 0.9;
}

.chatbot-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s;
}

.chatbot-close:hover {
  background: rgba(255,255,255,.2);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chatbot-message {
  display: flex;
  animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message-content {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  max-width: 80%;
  word-wrap: break-word;
  font-size: 0.9rem;
  line-height: 1.5;
}

.bot-message .message-content {
  background: white;
  color: var(--hitam);
  border: 1px solid #e0e0e0;
  border-bottom-left-radius: 4px;
}

.user-message {
  justify-content: flex-end;
}

.user-message .message-content {
  background: var(--merah-bata);
  color: white;
  border-bottom-right-radius: 4px;
}

.chatbot-input-area {
  display: flex;
  padding: 1rem;
  background: white;
  border-top: 1px solid #e0e0e0;
  gap: 0.5rem;
}

#chatbot-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color .2s;
}

#chatbot-input:focus {
  border-color: var(--merah-bata);
}

#chatbot-send {
  background: var(--merah-bata);
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}

#chatbot-send:hover {
  background: var(--merah-bata-tua);
  transform: translateY(-1px);
}

#chatbot-send:active {
  transform: translateY(0);
}

/* Chatbot Mobile Responsive */
@media (max-width: 768px) {
  #chatbot-container {
    right: 20px;
    bottom: 100px;
  }
  
  .chatbot-window {
    width: calc(100vw - 40px);
    max-width: 350px;
    height: 450px;
  }
  
  .wa-float {
    bottom: 20px;
    right: 20px;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
[data-anim] {
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

[data-anim="fade-up"] { 
  transform: translateY(20px); 
}

[data-anim="fade-left"] { 
  transform: translateX(-20px); 
}

[data-anim="fade-right"] { 
  transform: translateX(20px); 
}

[data-anim="fade-scale"] { 
  transform: scale(0.95); 
}

[data-anim="fade-in"] { 
  transform: translateY(0); 
}

[data-anim].anim-done {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ===== PORTFOLIO (MENU) PAGE ===== */
.filter-bar {
  background: var(--putih);
  padding: 1.5rem 6%;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}

.filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--abu);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-btn {
  background: var(--abu-muda);
  border: 2px solid transparent;
  padding: 8px 20px;
  border-radius: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--abu-tua);
  cursor: pointer;
  transition: all .25s;
}

.filter-btn:hover {
  background: var(--kuning-muda);
  color: var(--hitam);
}

.filter-btn.active {
  background: var(--kuning);
  color: var(--hitam);
  border-color: var(--kuning-gelap);
  font-weight: 700;
}

.menu-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 6%;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.menu-category {
  margin-bottom: 3rem;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--kuning);
}

.cat-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--kuning), var(--kuning-gelap));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(212,168,0,.3);
}

.cat-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--hitam);
  line-height: 1;
}

.cat-count {
  font-size: 0.85rem;
  color: var(--abu);
  font-weight: 600;
  margin-top: 0.3rem;
}

.cat-hero-img {
  display: none;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  background: var(--putih);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: all .3s;
  border: 2px solid transparent;
}

.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  border-color: var(--kuning);
}

.item-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--abu-muda);
}

.item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.menu-item:hover .item-img-wrap img {
  transform: scale(1.08);
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: var(--kuning-muda);
}

.price-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--kuning);
  color: var(--hitam);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
}

.item-body {
  padding: 1.25rem;
}

.item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hitam);
  margin-bottom: 0.5rem;
}

.item-price-text {
  font-size: 0.9rem;
  color: var(--abu);
  font-weight: 600;
}

.section-divider {
  background: linear-gradient(135deg, var(--merah-bata), var(--merah-bata-tua));
  padding: 60px 6%;
  text-align: center;
  margin: 60px 0;
}

.section-divider h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--putih);
  margin-bottom: 0.75rem;
}

.section-divider h2 em {
  font-style: italic;
  color: var(--kuning);
}

.section-divider p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section {
  background: var(--abu-muda);
  padding: 80px 6%;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--hitam);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--abu);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SEWA GEDUNG PAGE ===== */
.hero-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--kuning) 0%, var(--kuning-gelap) 70%, var(--merah-bata) 100%);
  border-radius: 12px;
  flex-wrap: wrap;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.hstat {
  text-align: center;
  padding: 0 1.5rem;
  border-right: 2px solid rgba(0,0,0,.15);
  flex: 1;
  min-width: 150px;
}

.hstat:last-child {
  border-right: none;
}

.hstat .n {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--hitam);
  display: block;
  line-height: 1;
}

.hstat .l {
  font-size: 0.8rem;
  color: var(--hitam);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  display: block;
}

.overview {
  background: var(--putih);
  padding: 90px 6%;
}

.overview-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.overview-content {
  display: flex;
  flex-direction: column;
}

.overview-features-wrapper {
  display: contents;
}

.overview-img {
  position: relative;
  margin-bottom: 2.75rem;
}

.overview-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  height: 450px;
  object-fit: cover;
}

.ov-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--kuning);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(212,168,0,.3);
}

.ov-badge .bn {
  font-size: 2.5rem;
  display: block;
  line-height: 1;
}

.ov-badge .bl {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  display: block;
}

.ov-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.ov-features-bottom {
  margin-top: 0;
  padding-left: 4rem;
}

.ov-feat-mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .ov-features-bottom {
    display: none !important;
  }
  
  .ov-feat-mobile-only {
    display: flex !important;
  }
}

.ov-feat {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1rem;
  background: var(--abu-muda);
  border-radius: 10px;
  border-left: 4px solid var(--kuning);
  transition: all .3s;
}

.ov-feat:hover {
  background: var(--kuning-muda);
  transform: translateX(6px);
}

.ov-feat > span {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.ov-feat h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hitam);
  margin-bottom: 0.3rem;
}

.ov-feat p {
  font-size: 0.88rem;
  color: var(--abu);
  line-height: 1.6;
  margin: 0;
}

.packages {
  background: var(--abu-muda);
  padding: 90px 6%;
}

.pkg-head {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pkg-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pkg-card {
  background: var(--putih);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: all .3s;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  border-color: var(--kuning);
}

.pkg-card.featured {
  border-color: var(--kuning);
  transform: scale(1.05);
}

.pkg-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pkg-top {
  padding: 2rem;
  background: var(--abu-muda);
  text-align: center;
}

.pkg-card.featured .pkg-top {
  background: linear-gradient(135deg, var(--kuning), var(--kuning-gelap));
}

.pkg-badge {
  display: inline-block;
  background: var(--kuning);
  color: var(--hitam);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.pkg-card.featured .pkg-badge {
  background: rgba(0,0,0,.2);
  color: var(--hitam);
}

.pkg-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.pkg-top h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--hitam);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pkg-sub {
  color: var(--abu);
  font-size: 0.9rem;
}

.pkg-body {
  padding: 2rem;
  flex-grow: 1;
}

.pkg-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pkg-body li {
  padding: 0.75rem 0;
  color: var(--abu-tua);
  font-size: 0.92rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
}

.pkg-body li:last-child {
  border-bottom: none;
}

.pkg-body li::before {
  content: '✓ ';
  color: var(--kuning-gelap);
  font-weight: 800;
  margin-right: 0.5rem;
}

.pkg-footer {
  padding: 2rem;
  background: var(--abu-muda);
  text-align: center;
}

.pkg-price {
  font-size: 0.95rem;
  color: var(--abu);
  margin-bottom: 1rem;
}

.pkg-price strong {
  color: var(--hitam);
  font-size: 1.1rem;
}

.pkg-btn {
  display: inline-block;
  background: var(--kuning);
  color: var(--hitam);
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all .25s;
}

.pkg-btn:hover {
  background: var(--kuning-gelap);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,168,0,.3);
}

.acara {
  background: var(--putih);
  padding: 90px 6%;
}

.acara-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.acara-head {
  text-align: center;
  margin-bottom: 3rem;
}

.acara-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.acara-card {
  background: var(--abu-muda);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all .3s;
  border-top: 4px solid var(--kuning);
}

.acara-card:hover {
  background: var(--kuning-muda);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}

.ac-ico {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.acara-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--hitam);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.acara-card p {
  color: var(--abu);
  font-size: 0.9rem;
  line-height: 1.6;
}

.galeri {
  background: var(--abu-muda);
  padding: 90px 6%;
}

.galeri-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.galeri-head {
  text-align: center;
  margin-bottom: 3rem;
}

.galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.galeri-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transition: all .3s;
}

.galeri-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0,0,0,.15);
}

.galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galeri-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--kuning);
  color: var(--hitam);
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
}

.fasilitas-sec {
  background: var(--putih);
  padding: 90px 6%;
}

.fas-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.fas-head {
  text-align: center;
  margin-bottom: 3rem;
}

.fas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.fas-card {
  background: var(--abu-muda);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all .3s;
  border-left: 4px solid var(--kuning);
}

.fas-card:hover {
  background: var(--kuning-muda);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}

.fi {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.fas-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--hitam);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.fas-card p {
  color: var(--abu);
  font-size: 0.88rem;
  line-height: 1.6;
}

.proses {
  background: var(--abu-muda);
  padding: 90px 6%;
}

.proses-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.proses-head {
  text-align: center;
  margin-bottom: 3rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.step {
  background: var(--putih);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all .3s;
  border-top: 4px solid var(--kuning);
  border-bottom: 4px solid var(--merah-bata);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--kuning);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--hitam);
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 16px rgba(212,168,0,.3);
}

.step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--hitam);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--abu);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cta-sewa {
  background: var(--kuning);
  padding: 90px 6%;
}

.cta-sewa-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-sewa h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--hitam);
  margin-bottom: 1rem;
}

.cta-sewa p {
  color: rgba(0,0,0,.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-dark {
  display: inline-block;
  background: var(--hitam);
  color: var(--putih);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all .25s;
  margin-right: 1rem;
}

.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
}

.btn-border {
  display: inline-block;
  background: transparent;
  color: var(--hitam);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--hitam);
  transition: all .25s;
}

.btn-border:hover {
  background: var(--hitam);
  color: var(--putih);
  transform: translateY(-2px);
}

.cta-contact-box {
  background: var(--putih);
  padding: 2.5rem;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.cta-contact-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--hitam);
  margin-bottom: 1.5rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-row:last-child {
  border-bottom: none;
}

.cr-ico {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.contact-row h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--hitam);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-row p {
  color: var(--abu);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.contact-row a {
  color: var(--abu);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color .2s;
}

.contact-row a:hover {
  color: var(--kuning-gelap);
}

/* ===== RESPONSIVE - MOBILE NAVIGATION ===== */
@media (max-width: 768px) {
  .nav-toggle { 
    display: flex; 
  }
  
  .nav-links {
    display: none; 
    position: absolute; 
    top: 72px; 
    left: 0; 
    right: 0;
    background: var(--putih); 
    flex-direction: column; 
    gap: 0; 
    margin: 0;
    padding: 1rem 6%; 
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
  }
  
  .nav-links.open { 
    display: flex; 
  }
  
  .nav-links li { 
    width: 100%; 
  }
  
  .nav-links a { 
    padding: 12px 0; 
    width: 100%; 
    display: inline-block; 
  }
  
  .nav-links a.nav-cta { 
    width: auto; 
    margin: 1rem 0 0 0; 
  }
  
  .nav-phone { 
    display: none; 
  }
  
  section { 
    padding: 60px 5%; 
  }
  
  .sewa-inner { 
    grid-template-columns: 1fr; 
    gap: 2.5rem; 
  }
  
  .sewa-visual {
    order: -1;
  }
  
  .sewa-img-main {
    height: auto;
  }
  
  .sewa-img-main img {
    height: auto;
    aspect-ratio: 4/3;
  }
  
  .sewa-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: auto;
    padding: 0;
    background: transparent;
  }
  
  .sewa-tag {
    display: inline-block;
  }
  
  .sewa-highlights { 
    grid-template-columns: 1fr; 
  }
  
  .story-inner { 
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  
  .story-text {
    order: 1;
  }
  
  .story-text .section-label {
    text-align: center;
    display: block;
  }
  
  .story-text .section-title {
    text-align: center;
  }
  
  .story-text p {
    text-align: justify;
  }
  
  .story-paragraphs {
    display: none;
  }
  
  .story-img-wrapper {
    order: 2;
  }
  
  .story-img {
    margin-bottom: 1.5rem;
  }
  
  .highlight-box {
    margin-top: 0;
  }
  
  .story-paragraphs-mobile {
    display: block;
    order: 3;
  }
  
  .story-paragraphs-mobile p {
    text-align: center;
  }
  
  .stats-inner { 
    grid-template-columns: repeat(2,1fr); 
  }
  
  .stat-item .num { 
    font-size: 1.5rem; 
  }
  
  .stat-item .label { 
    font-size: 0.7rem; 
  }
  
  .experience-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .exp-text {
    order: 2;
    padding-right: 0;
  }
  
  .exp-visual {
    order: 1;
  }
  
  .contact-inner { 
    grid-template-columns: 1fr; 
  }
  
  .form-row { 
    grid-template-columns: 1fr; 
  }
  
  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .overview-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .ov-features {
    grid-template-columns: 1fr;
  }
  
  .pkg-grid {
    grid-template-columns: 1fr;
  }
  
  .pkg-card.featured {
    transform: scale(1);
  }
  
  .pkg-card.featured:hover {
    transform: translateY(-8px);
  }
  
  .cta-sewa-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-stats-bar {
    gap: 0.8rem;
    padding: 0.75rem 0.5rem;
  }
  
  .hstat {
    padding: 0 0.5rem;
    min-width: 70px;
  }
  
  .hstat .n {
    font-size: 1.2rem;
  }
  
  .hstat .l {
    font-size: 0.6rem;
    letter-spacing: 0.3px;
  }
}

/* ===== RESPONSIVE - TABLET & MOBILE ===== */
@media (max-width: 900px) {
  .hero { 
    grid-template-columns: 1fr; 
    min-height: auto; 
    padding-top: 72px; 
  }
  
  .hero-left { 
    padding: 40px 5% 0; 
    text-align: center; 
  }
  
  .hero-btns { 
    justify-content: center; 
  }
  
  .hero-stats { 
    justify-content: center; 
  }
  
  .hero-center { 
    height: 380px; 
  }
  
  .hero-img-circle { 
    width: 300px; 
    height: 300px; 
  }
  
  .hero-mandala { 
    width: 340px; 
    height: 340px; 
  }
  
  .hero-right {
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px 5%;
    gap: 0.8rem;
    width: 100%;
    max-width: 100%;
  }
  
  .side-label {
    font-size: 0.7rem;
    white-space: nowrap;
  }
  
  .features { 
    grid-template-columns: 1fr; 
  }
  
  .ulasan-cards { 
    grid-template-columns: 1fr; 
  }
  
  .info-inner { 
    grid-template-columns: 1fr; 
  }
  
  .menu-main {
    padding: 40px 5%;
  }
  
  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
  }
  
  .filter-bar {
    padding: 1rem 5%;
  }
  
  .filter-inner {
    justify-content: center;
  }
}
