:root {
  --forest: #1a2e1a; --moss: #2d4a2d; --sage: #6b8f6b; --fern: #4a7c59;
  --gold: #c9a84c; --gold-light: #e8c97a; --cream: #f5f0e8; --warm-white: #faf7f2;
  --charcoal: #2c2c2c; --mist: #e8ede8; --bark: #8b6f47; --sky: #7ba7bc; --red-accent: #c0392b;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--charcoal); overflow-x: hidden; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 3px; }

/* ── NAVBAR ── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 2rem; height: 72px; display: flex; align-items: center; justify-content: space-between; transition: all 0.4s ease; }
#navbar.scrolled { background: rgba(250,247,242,0.97); backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(0,0,0,0.08); height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; text-decoration: none; }
.nav-logo img { width: 44px; height: 44px; object-fit: contain; }
.nav-logo-text { line-height: 1.1; }
.nav-logo-sub { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--fern); font-weight: 600; }
.nav-logo-main { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--forest); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--charcoal); text-decoration: none; position: relative; transition: color 0.2s; white-space: nowrap; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 100%; height: 1.5px; background: var(--fern); transition: right 0.3s ease; }
.nav-links a:hover { color: var(--fern); }
.nav-links a:hover::after { right: 0; }
.nav-transparent .nav-links a { color: rgba(255,255,255,0.9); }
.nav-transparent .nav-links a:hover { color: #fff; }
.nav-transparent .nav-logo-main { color: #fff; }
.nav-transparent .nav-logo-sub { color: var(--gold-light); }
.nav-transparent .nav-links a::after { background: var(--gold-light); }

.btn-nav-book { background: var(--gold); color: var(--forest) !important; padding: 10px 24px; border-radius: 100px; font-weight: 700 !important; font-size: 13px !important; transition: all 0.2s !important; border: none; cursor: pointer; white-space: nowrap; }
.btn-nav-book::after { display: none !important; }
.btn-nav-book:hover { background: var(--gold-light) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.4); }
.nav-lang-btn { background: transparent; border: 1.5px solid currentColor; padding: 5px 12px; border-radius: 100px; font-size: 12px; font-weight: 700; cursor: pointer; transition: all 0.2s; color: inherit; font-family: inherit; }
.nav-transparent .nav-lang-btn { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.5); }
.nav-lang-btn:hover { background: rgba(0,0,0,0.08); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; z-index: 101; position: relative; }
.hamburger span { display: block; width: 24px; height: 2px; background: currentColor; transition: all 0.3s; border-radius: 2px; }
.nav-transparent .hamburger span { background: white; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
#mobile-menu {
  display: flex; 
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--forest); z-index: 99;
  flex-direction: column; align-items: stretch; justify-content: flex-start;
  padding: 100px 24px 24px; 
  overflow-y: auto;
  transform: translateX(100%); 
  visibility: hidden; 
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s;
}
#mobile-menu.open {
  transform: translateX(0); 
  visibility: visible;
}
#mobile-menu a { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600; color: var(--cream); text-decoration: none; transition: all 0.2s; padding: 14px 4px; border-bottom: 1px solid rgba(245,240,232,0.1); display: block; }
#mobile-menu a:hover { color: var(--gold); padding-left: 8px; }
#mobile-menu a:last-child { border-bottom: none; margin-top: 8px; text-align: center; background: var(--gold); color: var(--forest) !important; border-radius: 100px; font-weight: 700; padding: 14px; }
#mobile-menu a:last-child:hover { background: var(--gold-light); padding-left: 14px; }

/* ── HERO ── */
#hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--forest); }
.hero-bg { position: absolute; inset: 0; background-image: url('img/banner.webp'); background-size: cover; background-position: center top; will-change: transform; filter: brightness(0.55); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(26,46,26,0.15) 0%,rgba(26,46,26,0.08) 35%,rgba(26,46,26,0.55) 75%,rgba(26,46,26,0.82) 100%); }
.hero-content { position: relative; text-align: center; padding: 0 1.5rem; max-width: 900px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 24px; opacity: 0; animation: fadeUp 0.8s 0.2s ease forwards; }
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; display: block; width: 32px; height: 1px; background: var(--gold-light); }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(48px,8vw,96px); font-weight: 900; line-height: 1.0; color: #fff; margin-bottom: 20px; opacity: 0; animation: fadeUp 0.8s 0.4s ease forwards; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle { font-size: 16px; color: rgba(255,255,255,0.82); line-height: 1.6; max-width: 520px; margin: 0 auto 40px; opacity: 0; animation: fadeUp 0.8s 0.6s ease forwards; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 0.8s ease forwards; }
.btn-primary { background: var(--gold); color: var(--forest); padding: 14px 32px; border-radius: 100px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; font-family: inherit; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-outline-white { background: transparent; color: #fff; padding: 14px 32px; border-radius: 100px; font-weight: 600; font-size: 14px; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.5); transition: all 0.2s; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.hero-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0; animation: fadeUp 0.8s 1.2s ease forwards; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom,rgba(255,255,255,0.6),transparent); animation: scrollPulse 2s infinite; }

/* ── SECTION BASE ── */
.section { padding: 96px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--fern); font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.section-eyebrow::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--fern); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(30px,4vw,50px); font-weight: 700; line-height: 1.15; color: var(--forest); margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--fern); }
.section-desc { font-size: 16px; color: #666; line-height: 1.7; max-width: 560px; }

/* ── ABOUT ── */
#about { background: var(--forest); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text .section-eyebrow { color: var(--gold-light); }
.about-text .section-eyebrow::before { background: var(--gold-light); }
.about-text .section-title { color: var(--cream); }
.about-text .section-title em { color: var(--gold-light); }
.about-text .section-desc { color: rgba(245,240,232,0.75); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.about-feat { display: flex; align-items: flex-start; gap: 14px; }
.about-feat-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 16px; flex-shrink: 0; }
.about-feat-label { font-size: 13px; font-weight: 600; color: var(--cream); }
.about-feat-sub { font-size: 12px; color: rgba(245,240,232,0.5); margin-top: 2px; }
.about-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.stat-card { background: rgba(245,240,232,0.06); border: 1px solid rgba(245,240,232,0.1); border-radius: 16px; padding: 28px 24px; transition: all 0.3s; }
.stat-card:hover { background: rgba(245,240,232,0.1); transform: translateY(-4px); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; color: var(--gold-light); line-height: 1; transition: all 0.3s; }
.stat-label { font-size: 13px; color: rgba(245,240,232,0.6); margin-top: 6px; line-height: 1.4; }

/* ── PACKAGES ── */
#packages { background: var(--warm-white); }
.packages-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 16px; }
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.pkg-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,0.06); transition: all 0.3s ease; display: flex; flex-direction: column; cursor: pointer; border: 1px solid rgba(0,0,0,0.05); }
.pkg-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.pkg-img-wrap { position: relative; height: 220px; overflow: hidden; background: var(--mist); }
.pkg-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pkg-card:hover .pkg-img-wrap img { transform: scale(1.06); }
.pkg-badge { position: absolute; top: 16px; left: 16px; background: rgba(26,46,26,0.85); backdrop-filter: blur(8px); color: var(--gold-light); padding: 5px 14px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; }
.pkg-badge.premium { background: linear-gradient(135deg,var(--gold),var(--bark)); color: #fff; }
.pkg-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.pkg-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--forest); margin-bottom: 8px; }
.pkg-desc { font-size: 14px; color: #888; line-height: 1.6; flex: 1; margin-bottom: 20px; }
.pkg-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--mist); }
.pkg-price { font-size: 20px; font-weight: 700; color: var(--fern); }
.pkg-price-sub { font-size: 12px; color: #aaa; font-weight: 400; }
.pkg-duration { font-size: 12px; color: #999; display: flex; align-items: center; gap: 5px; }
.btn-detail { background: var(--forest); color: #fff; padding: 10px 20px; border-radius: 100px; font-size: 13px; font-weight: 600; border: none; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 6px; }
.btn-detail:hover { background: var(--fern); }

/* ── HIGHLIGHTS CAROUSEL ── */
#highlights { background: var(--cream); overflow: hidden; }
.carousel-wrap { position: relative; margin-top: 48px; padding: 20px 0 60px; }
.carousel-track { display: flex; align-items: center; justify-content: center; gap: 0; position: relative; height: 480px; }
.carousel-slide { position: absolute; transition: all 0.55s cubic-bezier(0.25,0.46,0.45,0.94); border-radius: 20px; overflow: hidden; cursor: pointer; }
.carousel-slide.pos-center { width: 520px; height: 420px; z-index: 10; transform: translateX(0) scale(1); filter: none; box-shadow: 0 24px 64px rgba(0,0,0,0.25); }
.carousel-slide.pos-left { width: 360px; height: 320px; z-index: 5; transform: translateX(-420px) scale(0.88); filter: blur(3px) brightness(0.6); }
.carousel-slide.pos-right { width: 360px; height: 320px; z-index: 5; transform: translateX(420px) scale(0.88); filter: blur(3px) brightness(0.6); }
.carousel-slide.pos-far-left { width: 280px; height: 260px; z-index: 1; transform: translateX(-720px) scale(0.75); filter: blur(6px) brightness(0.4); opacity: 0.5; }
.carousel-slide.pos-far-right { width: 280px; height: 260px; z-index: 1; transform: translateX(720px) scale(0.75); filter: blur(6px) brightness(0.4); opacity: 0.5; }
.carousel-slide.pos-hidden { opacity: 0; pointer-events: none; transform: translateX(0) scale(0.5); }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-slide-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(26,46,26,0.92) 0%,rgba(26,46,26,0.3) 50%,transparent 100%); opacity: 0; transition: opacity 0.4s; }
.carousel-slide.pos-center .carousel-slide-overlay { opacity: 1; }
.carousel-slide-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; transform: translateY(8px); opacity: 0; transition: all 0.4s; }
.carousel-slide.pos-center .carousel-slide-content { transform: translateY(0); opacity: 1; }
.carousel-slide-num { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); font-weight: 700; margin-bottom: 8px; }
.carousel-slide-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.2; }
.carousel-slide-desc { font-size: 14px; color: rgba(245,240,232,0.8); line-height: 1.6; }
.carousel-nav { display: flex; gap: 16px; justify-content: center; margin-top: 24px; }
.carousel-btn { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--fern); background: #fff; color: var(--fern); cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.carousel-btn:hover { background: var(--fern); color: #fff; transform: scale(1.08); }
.carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mist); cursor: pointer; transition: all 0.3s; border: none; }
.carousel-dot.active { width: 24px; border-radius: 4px; background: var(--fern); }

/* ── STAY ── */
#stay { background: var(--warm-white); }
.stay-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.stay-card { border-radius: 16px; overflow: hidden; background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,0.06); transition: all 0.3s; border: 1px solid rgba(0,0,0,0.04); }
.stay-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.stay-img { height: 180px; background: var(--mist); overflow: hidden; }
.stay-img img { width: 100%; height: 100%; object-fit: cover; }
.stay-body { padding: 20px; }
.stay-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.stay-cap { font-size: 12px; color: var(--sage); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.stay-price { font-size: 20px; font-weight: 700; color: var(--fern); }
.stay-price-sub { font-size: 12px; color: #aaa; font-weight: 400; }

/* ── GALLERY ── */
#gallery { background: var(--forest); overflow: hidden; }
.gallery-header .section-eyebrow { color: var(--gold-light); }
.gallery-header .section-eyebrow::before { background: var(--gold-light); }
.gallery-header .section-title { color: var(--cream); }
.gallery-track-wrap { position: relative; margin-top: 48px; }
.gallery-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 8px; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item { flex: 0 0 320px; height: 240px; border-radius: 12px; overflow: hidden; scroll-snap-align: start; background: var(--moss); position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top,rgba(26,46,26,0.6),transparent); opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover::after { opacity: 1; }
.gallery-nav { display: flex; gap: 12px; margin-top: 28px; justify-content: center; }
.gallery-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(245,240,232,0.3); background: transparent; color: var(--cream); cursor: pointer; font-size: 16px; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.gallery-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--forest); }
.gallery-placeholder { flex: 0 0 320px; height: 240px; border-radius: 12px; background: var(--moss); display: flex; align-items: center; justify-content: center; color: rgba(245,240,232,0.3); font-size: 13px; border: 2px dashed rgba(245,240,232,0.15); }

/* ── VIDEO SECTION ── */
#video-section { background: var(--forest); }
.video-section-header .section-eyebrow { color: var(--gold-light); }
.video-section-header .section-eyebrow::before { background: var(--gold-light); }
.video-section-header .section-title { color: var(--cream); }
.video-section-header .section-desc { color: rgba(245,240,232,0.7); }
.video-featured { margin-top: 48px; border-radius: 20px; overflow: hidden; position: relative; background: var(--moss); aspect-ratio: 16/9; max-width: 900px; margin-left: auto; margin-right: auto; box-shadow: 0 24px 64px rgba(0,0,0,0.4); }
.video-featured iframe { width: 100%; height: 100%; border: none; display: block; }
.video-featured-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; cursor: pointer; background: var(--moss); position: relative; overflow: hidden; }
.video-featured-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.video-play-btn { width: 72px; height: 72px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--forest); z-index: 1; transition: all 0.3s; box-shadow: 0 8px 32px rgba(201,168,76,0.5); }
.video-featured-placeholder:hover .video-play-btn { transform: scale(1.1); background: var(--gold-light); }
.video-featured-caption { font-size: 14px; color: rgba(245,240,232,0.8); z-index: 1; text-align: center; padding: 0 20px; }
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
.video-card { border-radius: 14px; overflow: hidden; background: var(--moss); position: relative; cursor: pointer; transition: all 0.3s; }
.video-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.video-thumb { aspect-ratio: 16/9; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.video-thumb::before { content: '\f03d'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 32px; color: rgba(245,240,232,0.25); position: absolute; z-index: 0; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.video-card:hover .video-thumb img { transform: scale(1.06); }
.video-thumb-overlay { position: absolute; inset: 0; background: rgba(26,46,26,0.45); display: flex; align-items: center; justify-content: center; }
.video-thumb-play { width: 44px; height: 44px; border-radius: 50%; background: rgba(201,168,76,0.9); display: flex; align-items: center; justify-content: center; color: var(--forest); font-size: 16px; transition: all 0.3s; }
.video-card:hover .video-thumb-play { background: var(--gold-light); transform: scale(1.1); }
.video-card-body { padding: 14px 16px; }
.video-card-title { font-size: 13px; font-weight: 600; color: var(--cream); line-height: 1.4; margin-bottom: 4px; }
.video-card-src { font-size: 11px; color: rgba(245,240,232,0.4); display: flex; align-items: center; gap: 6px; }

/* ── VIDEO MODAL ── */
.video-modal-backdrop { position: fixed; inset: 0; z-index: 250; background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.video-modal-backdrop.open { opacity: 1; pointer-events: all; }
.video-modal-inner { width: 100%; max-width: 900px; position: relative; }
.video-modal-close { position: absolute; top: -48px; right: 0; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.15); border: none; color: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.video-modal-close:hover { background: rgba(255,255,255,0.3); }
.video-modal-frame { aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; background: #000; }
.video-modal-frame iframe { width: 100%; height: 100%; border: none; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.testi-card { background: #fff; border-radius: 16px; padding: 28px; box-shadow: 0 2px 16px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.04); transition: all 0.3s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
.testi-text { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-quote { font-family: 'Playfair Display', serif; font-size: 40px; color: var(--mist); line-height: 0; vertical-align: -14px; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--fern),var(--sage)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 600; color: var(--forest); }
.testi-from { font-size: 12px; color: #aaa; }
.testi-badge-real { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 700; color: var(--fern); background: rgba(74,124,89,0.1); padding: 3px 8px; border-radius: 100px; margin-top: 8px; }
.testi-cta-wrap { text-align: center; margin-top: 40px; }
.btn-write-review { display: inline-flex; align-items: center; gap: 10px; background: var(--forest); color: var(--cream); padding: 14px 32px; border-radius: 100px; font-weight: 700; font-size: 14px; border: none; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.btn-write-review:hover { background: var(--fern); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,46,26,0.25); }

/* ── REVIEW MODAL ── */
.review-modal-box { background: #fff; border-radius: 24px; max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto; }
.review-modal-header { padding: 24px 28px; border-bottom: 1px solid var(--mist); display: flex; justify-content: space-between; align-items: center; }
.review-modal-title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--forest); }
.review-modal-body { padding: 28px; }
.star-rating-input { display: flex; gap: 8px; justify-content: center; margin: 8px 0 20px; }
.star-rating-input .star { font-size: 36px; color: var(--mist); cursor: pointer; transition: all 0.15s; line-height: 1; }
.star-rating-input .star.filled { color: var(--gold); }
.star-rating-input .star:hover { transform: scale(1.15); }
.review-form-group { margin-bottom: 18px; }
.review-form-label { font-size: 12px; font-weight: 600; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; display: block; }
.review-textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--mist); border-radius: 10px; font-size: 14px; background: var(--warm-white); color: var(--charcoal); font-family: inherit; resize: vertical; min-height: 100px; }
.review-textarea:focus, .review-input:focus { outline: none; border-color: var(--fern); background: #fff; }
.review-input { width: 100%; padding: 12px 16px; border: 1.5px solid var(--mist); border-radius: 10px; font-size: 14px; background: var(--warm-white); color: var(--charcoal); font-family: inherit; }
.btn-submit-review { width: 100%; padding: 14px; background: var(--gold); color: var(--forest); border: none; border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.btn-submit-review:hover { background: var(--gold-light); }
.btn-submit-review:disabled { opacity: 0.5; cursor: not-allowed; }
.review-pending-note { background: #fff8e7; border: 1px solid var(--gold); border-radius: 10px; padding: 12px 16px; font-size: 12px; color: #886600; line-height: 1.6; margin-top: 16px; }

/* ── FAQ ── */
#faq { background: var(--warm-white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.faq-item { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid rgba(0,0,0,0.06); }
.faq-q { width: 100%; text-align: left; padding: 20px 24px; background: none; border: none; font-size: 15px; font-weight: 600; color: var(--forest); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit; }
.faq-q .faq-icon { transition: transform 0.3s; color: var(--fern); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a { font-size: 14px; color: #666; line-height: 1.7; padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ── BOOKING ── */
#booking { background: var(--cream); }
.booking-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.booking-info { padding: 40px 0; }
.booking-contact { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.bc-item { display: flex; align-items: center; gap: 14px; }
.bc-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--fern); color: #fff; display: flex; align-items: center; justify-content: center; }
.bc-label { font-size: 12px; color: #999; }
.bc-val { font-size: 14px; font-weight: 600; color: var(--forest); }
.booking-form { background: #fff; border-radius: 24px; padding: 40px; box-shadow: 0 4px 32px rgba(0,0,0,0.08); }
.form-title { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--forest); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; display: block; }
.form-control { width: 100%; padding: 12px 16px; border: 1.5px solid var(--mist); border-radius: 10px; font-size: 14px; background: var(--warm-white); color: var(--charcoal); transition: border-color 0.2s; font-family: inherit; }
.form-control:focus { outline: none; border-color: var(--fern); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-section-title { font-size: 13px; font-weight: 600; color: var(--sage); text-transform: uppercase; letter-spacing: 0.1em; margin: 24px 0 16px; border-top: 1px solid var(--mist); padding-top: 20px; }
.addon-item { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 8px; background: var(--warm-white); cursor: pointer; transition: background 0.2s; }
.addon-item:hover { background: var(--mist); }
.addon-item input { accent-color: var(--fern); width: 16px; height: 16px; cursor: pointer; }
.addon-label { font-size: 14px; color: var(--charcoal); flex: 1; cursor: pointer; }
.booking-summary { background: var(--forest); border-radius: 12px; padding: 20px; margin-top: 20px; }
.sum-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(245,240,232,0.7); padding: 6px 0; }
.sum-row.total { font-size: 16px; font-weight: 700; color: var(--gold-light); border-top: 1px solid rgba(245,240,232,0.15); margin-top: 8px; padding-top: 14px; }
.btn-book-wa { width: 100%; padding: 16px; background: #25D366; color: #fff; border: none; border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 16px; transition: all 0.2s; font-family: inherit; }
.btn-book-wa:hover { background: #1db954; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }

/* ── LOCATION ── */
#location { background: var(--forest); }
.location-header .section-eyebrow { color: var(--gold-light); }
.location-header .section-eyebrow::before { background: var(--gold-light); }
.location-header .section-title { color: var(--cream); }
.location-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; margin-top: 48px; align-items: start; }
.location-info { display: flex; flex-direction: column; gap: 28px; }
.loc-item { display: flex; gap: 16px; align-items: flex-start; }
.loc-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(201,168,76,0.2); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.loc-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,240,232,0.4); margin-bottom: 4px; }
.loc-val { font-size: 14px; color: var(--cream); line-height: 1.6; }
.loc-map { border-radius: 16px; overflow: hidden; height: 340px; background: var(--moss); }
.loc-map iframe { width: 100%; height: 100%; border: none; }
.btn-directions { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--forest); padding: 12px 28px; border-radius: 100px; font-weight: 700; font-size: 14px; text-decoration: none; margin-top: 28px; transition: all 0.2s; }
.btn-directions:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── FOOTER ── */
footer { background: #111a11; padding: 64px 24px 32px; color: rgba(245,240,232,0.6); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .brand-name { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--cream); margin: 16px 0 12px; }
.footer-brand p { font-size: 13px; line-height: 1.7; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(245,240,232,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-col ul li { font-size: 13px; display: flex; align-items: flex-start; gap: 8px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(245,240,232,0.08); display: flex; align-items: center; justify-content: center; color: rgba(245,240,232,0.6); font-size: 15px; text-decoration: none; transition: all 0.2s; }
.social-btn:hover { background: var(--fern); color: #fff; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(245,240,232,0.1); padding-top: 24px; text-align: center; font-size: 12px; }

/* ── WA FLOAT ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 90; }
.wa-btn { width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; cursor: pointer; border: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.2s; text-decoration: none; position: relative; }
.wa-btn:hover { transform: scale(1.1); }
.wa-btn::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: waPulse 2s infinite; z-index: -1; }
.wa-tooltip { position: absolute; right: 70px; top: 50%; transform: translateY(-50%); background: #fff; padding: 8px 14px; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.12); font-size: 13px; white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity 0.2s; }
.wa-float:hover .wa-tooltip { opacity: 1; }
.wa-tooltip strong { display: block; color: var(--forest); font-size: 12px; }
.wa-tooltip span { color: #25D366; font-size: 11px; }

/* ── PACKAGE MODAL ── */
.modal-backdrop { position: fixed; inset: 0; z-index: 200; background: rgba(26,46,26,0.7); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal-box { background: #fff; border-radius: 24px; max-width: 720px; width: 100%; max-height: 88vh; overflow-y: auto; position: relative; transform: translateY(24px) scale(0.97); transition: all 0.3s; }
.modal-backdrop.open .modal-box { transform: translateY(0) scale(1); }
.modal-header { position: sticky; top: 0; background: #fff; padding: 24px 28px; border-bottom: 1px solid var(--mist); display: flex; justify-content: space-between; align-items: center; z-index: 1; }
.modal-title { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--forest); }
.modal-price { font-size: 24px; font-weight: 700; color: var(--fern); }
.modal-close { width: 36px; height: 36px; border-radius: 50%; background: var(--mist); border: none; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.modal-close:hover { background: var(--charcoal); color: #fff; }
.modal-body { padding: 28px; }
.modal-sec { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--sage); margin: 24px 0 14px; display: flex; align-items: center; gap: 8px; }
.modal-sec::before { content: ''; flex: 0 0 20px; height: 1.5px; background: var(--sage); }
.modal-sec.green { color: var(--fern); }
.modal-sec.green::before { background: var(--fern); }
.modal-sec.red { color: var(--red-accent); }
.modal-sec.red::before { background: var(--red-accent); }
.include-list, .exclude-list { display: flex; flex-direction: column; gap: 8px; }
.include-item, .exclude-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #555; line-height: 1.5; }
.include-item i { color: var(--fern); margin-top: 1px; }
.exclude-item i { color: var(--red-accent); margin-top: 1px; }
.kegiatan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.kegiatan-item { background: var(--warm-white); border-radius: 10px; padding: 12px 14px; font-size: 13px; color: var(--forest); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.kegiatan-item::before { content: '🌿'; }
.itinerary-list { display: flex; flex-direction: column; }
.itinerary-day-header { background: var(--forest); color: var(--gold-light); padding: 10px 16px; border-radius: 8px; font-size: 13px; font-weight: 700; margin: 16px 0 4px; letter-spacing: 0.05em; }
.itinerary-item { display: flex; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--mist); }
.itinerary-item:last-child { border-bottom: none; }
.itinerary-time { font-size: 12px; font-weight: 600; color: var(--fern); white-space: nowrap; padding-top: 2px; min-width: 120px; }
.itinerary-desc { font-size: 14px; color: #555; line-height: 1.6; }
.modal-footer { padding: 20px 28px; border-top: 1px solid var(--mist); position: sticky; bottom: 0; background: #fff; }
.btn-book-this { width: 100%; padding: 14px; background: var(--gold); color: var(--forest); border: none; border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s; font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-book-this:hover { background: var(--gold-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.7); opacity: 0; } }
.reveal { opacity: 0; transform: translateY(32px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) { .packages-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) {
  .about-grid, .booking-wrap, .location-grid, .footer-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 48px; }
  .faq-grid { grid-template-columns: 1fr; }
  .stay-grid, .highlights-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 20px; }
  #navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .packages-header { flex-direction: column; align-items: flex-start; }
  .packages-grid { grid-template-columns: 1fr; }
  .gallery-item { flex: 0 0 260px; height: 200px; }
  .form-row, .edit-row { grid-template-columns: 1fr; }
  .kegiatan-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .highlights-grid, .testi-grid, .stay-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}

/* ── LANG TOGGLE ── */
[data-lang-en] { display: none !important; }
body.lang-en [data-lang-id] { display: none !important; }
body.lang-en [data-lang-en] { display: revert !important; }
span[data-lang-en], strong[data-lang-en], small[data-lang-en] { display: none !important; }
body.lang-en span[data-lang-id], body.lang-en strong[data-lang-id], body.lang-en small[data-lang-id] { display: none !important; }
body.lang-en span[data-lang-en], body.lang-en strong[data-lang-en], body.lang-en small[data-lang-en] { display: inline !important; }

/* ── STICKY WA MOBILE ── */
.sticky-wa { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 88; padding: 12px 16px; background: rgba(26,46,26,0.97); backdrop-filter: blur(10px); border-top: 1px solid rgba(201,168,76,0.3); }
.sticky-wa-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 14px; background: #25D366; color: #fff; border: none; border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.sticky-wa-btn:active { background: #1db954; transform: scale(0.98); }
.sticky-wa-dismiss { position: absolute; top: 8px; right: 12px; background: none; border: none; color: rgba(245,240,232,0.4); font-size: 18px; cursor: pointer; padding: 4px; }
@media (min-width: 769px) { .sticky-wa { display: none !important; } }
@media (max-width: 768px) { .sticky-wa { display: block; } .wa-float { bottom: 90px; right: 16px; } }
body.sticky-wa-active .wa-float { bottom: 90px; }

/* ── EXIT INTENT POPUP ── */
.exit-popup { position: fixed; inset: 0; z-index: 350; background: rgba(0,0,0,0.75); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.exit-popup.open { opacity: 1; pointer-events: all; }
.exit-box { background: #fff; border-radius: 24px; max-width: 440px; width: 100%; overflow: hidden; transform: scale(0.95); transition: transform 0.3s; }
.exit-popup.open .exit-box { transform: scale(1); }
.exit-header { background: var(--forest); padding: 28px; text-align: center; }
.exit-emoji { font-size: 48px; display: block; margin-bottom: 12px; }
.exit-title { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--cream); margin-bottom: 6px; }
.exit-sub { font-size: 13px; color: rgba(245,240,232,0.7); }
.exit-body { padding: 24px; }
.exit-offer { background: var(--cream); border-radius: 12px; padding: 16px; margin-bottom: 20px; text-align: center; }
.exit-offer-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage); font-weight: 700; margin-bottom: 6px; }
.exit-offer-val { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--forest); font-weight: 700; }
.exit-offer-sub { font-size: 12px; color: #888; margin-top: 4px; }
.exit-cta { width: 100%; padding: 14px; background: #25D366; color: #fff; border: none; border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; font-family: inherit; margin-bottom: 10px; transition: all 0.2s; }
.exit-cta:hover { background: #1db954; }
.exit-dismiss { width: 100%; padding: 10px; background: none; border: none; color: #aaa; font-size: 13px; cursor: pointer; font-family: inherit; }
.exit-dismiss:hover { color: #666; }

/* ── TOAST NOTIFICATION ── */
.toast-container { position: fixed; top: 88px; right: 20px; z-index: 999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { background: #fff; border-radius: 12px; padding: 14px 18px; box-shadow: 0 8px 32px rgba(0,0,0,0.15); display: flex; align-items: flex-start; gap: 12px; min-width: 280px; max-width: 360px; pointer-events: all; transform: translateX(120%); transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); border-left: 4px solid var(--fern); }
.toast.show { transform: translateX(0); }
.toast.toast-error { border-left-color: var(--red-accent); }
.toast.toast-warning { border-left-color: var(--gold); }
.toast-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.toast-body { flex: 1; }
.toast-title { font-size: 14px; font-weight: 700; color: var(--forest); margin-bottom: 2px; }
.toast-msg { font-size: 13px; color: #666; line-height: 1.4; }
.toast-close { background: none; border: none; cursor: pointer; color: #ccc; font-size: 16px; padding: 0; line-height: 1; flex-shrink: 0; transition: color 0.2s; }
.toast-close:hover { color: #999; }
.toast-progress { height: 3px; background: var(--fern); border-radius: 0 0 0 4px; margin: -14px -18px 10px -18px; margin-top: 10px; animation: toastProgress linear forwards; }
.toast.toast-error .toast-progress { background: var(--red-accent); }
.toast.toast-warning .toast-progress { background: var(--gold); }
@keyframes toastProgress { from { width: 100%; } to { width: 0%; } }
@media (max-width: 480px) { .toast-container { left: 16px; right: 16px; } .toast { min-width: unset; max-width: 100%; } }

/* ── FORM VALIDATION ── */
.form-control.invalid { border-color: var(--red-accent) !important; background: #fff5f5 !important; animation: shake 0.4s ease; }
.form-control.valid { border-color: var(--fern) !important; }
.field-error { font-size: 11px; color: var(--red-accent); margin-top: 5px; display: none; font-weight: 600; }
.field-error.show { display: block; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 20%, 60% { transform: translateX(-5px); } 40%, 80% { transform: translateX(5px); } }

/* ── DYNAMIC PRICING BANNER ── */
.pricing-banner { background: linear-gradient(135deg,#fff8e7,#fffbf0); border: 1.5px solid var(--gold); border-radius: 12px; padding: 14px 18px; margin-bottom: 16px; display: none; }
.pricing-banner.show { display: block; }
.pb-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.pb-label { color: #886600; font-weight: 600; }
.pb-val { font-size: 16px; font-weight: 700; color: var(--bark); }
.pb-note { font-size: 11px; color: #aaa; margin-top: 6px; line-height: 1.5; }

/* ── DATE WARNING ── */
.date-warn { background: #fff5f5; border: 1.5px solid var(--red-accent); border-radius: 10px; padding: 12px 16px; margin-top: 12px; display: none; font-size: 13px; color: var(--red-accent); line-height: 1.5; }
.date-warn.show { display: block; }
.date-warn strong { display: block; margin-bottom: 4px; }

/* ── PERBAIKAN TAMPILAN HP (MOBILE RESPONSIVE) ── */
@media (max-width: 768px) {
  /* Bikin Video Grid Ngejajar ke Bawah (Satu-satu) */
  .video-grid { grid-template-columns: 1fr; }

  /* Sesuaikan Ukuran Carousel Biar Pas di HP */
  .carousel-track { height: 380px; }
  .carousel-slide.pos-center { width: 320px; height: 320px; }
  .carousel-slide.pos-left { transform: translateX(-240px) scale(0.85); opacity: 0.5; }
  .carousel-slide.pos-right { transform: translateX(240px) scale(0.85); opacity: 0.5; }
  .carousel-slide.pos-far-left, .carousel-slide.pos-far-right { opacity: 0; pointer-events: none; }
  .carousel-slide-title { font-size: 20px; }
}

@media (max-width: 480px) {
  /* Penyesuaian Ekstra buat HP Layar Sempit */
  .carousel-track { height: 360px; }
  
  /* Lebar kotak tengah dikecilin dikit biar yang kiri-kanan bisa ngintip */
  .carousel-slide.pos-center { width: 250px; height: 300px; }
  
  /* Munculin gambar kiri-kanan dengan efek blur di HP */
  .carousel-slide.pos-left { opacity: 0.6; pointer-events: none; transform: translateX(-180px) scale(0.85); }
  .carousel-slide.pos-right { opacity: 0.6; pointer-events: none; transform: translateX(180px) scale(0.85); }
}

/* ── PAKSA SPINNER MUNCUL DI INPUT NUMBER (MOBILE) ── */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  opacity: 1 !important; 
  display: block !important; 
}

/* ── STYLE TOMBOL BAHASA DI MOBILE MENU ── */
.mobile-lang-btn {
  display: none; /* Sembunyiin di PC biar gak dobel */
}

@media (max-width: 768px) {
  .mobile-lang-btn {
    display: inline-block;
    margin-right: 16px; /* Jarak ke ikon garis tiga */
    padding: 4px 10px;
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  /* ... kodingan yang udah ada ... */

  /* Bikin Maps di HP jadi lebih tinggi biar kotak nama wisatanya nongol */
  .loc-map { height: 420px; }
}

@media (max-width: 480px) {
  /* ... kodingan yang udah ada ... */

  /* Di layar HP yang lebih kecil lagi, gedein dikit lagi tinggi maps-nya */
  .loc-map { height: 460px; }
}