/* ===== Taman Bermain Anak — style "Wonderland Arena" (Cinematic Game Hub archetype) ===== */

:root {
  --bg: #fff9f0;
  --bg-alt: #fff1de;
  --surface: #ffffff;
  --surface-2: #fff6ea;
  --ink: #2b2140;
  --ink-muted: #6b6180;
  --hairline: #f0e3cf;
  --primary: #ff6b6b;
  --primary-dark: #e14d4d;
  --secondary: #21c4b8;
  --accent: #ffd93d;
  --violet: #a78bfa;
  --dark: #1a1530;
  --dark-alt: #251f42;
  --success: #43a047;
  --warning: #fb8c00;
  --danger: #e53935;
  --info: #2f9ee0;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow: 0 18px 40px rgba(43, 33, 64, 0.12);
  --shadow-lg: 0 28px 60px rgba(43, 33, 64, 0.18);
  --ease: 260ms cubic-bezier(.22, .61, .36, 1);
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--accent));
  --gradient-cool: linear-gradient(135deg, var(--secondary), var(--violet));
}

[data-theme="dark"] {
  --bg: #1a1530;
  --bg-alt: #221c3d;
  --surface: #251f42;
  --surface-2: #2b2449;
  --ink: #f5f0ff;
  --ink-muted: #b3a8cc;
  --hairline: #362c56;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  transition: background var(--ease), color var(--ease);
  overflow-x: hidden;
}

h1, h2, h3, .brand, .pkg-tier { font-family: "Baloo 2", "Nunito", sans-serif; margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
table { border-collapse: collapse; width: 100%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.eyebrow.light-on-dark { color: var(--accent); }

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head p { color: var(--ink-muted); font-size: 1.02rem; line-height: 1.6; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 6px 0 12px; }

/* ===== Buttons (pill style) ===== */
.btn-solid, .btn-outline, .btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
  white-space: nowrap;
}
.btn-solid { background: var(--gradient-primary); color: #2b1620; box-shadow: 0 12px 26px rgba(255, 107, 107, 0.35); }
.btn-solid:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 34px rgba(255, 107, 107, 0.45); }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--hairline); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }
.btn-lg { padding: 17px 32px; font-size: 1rem; }
.btn-pill { background: var(--surface); color: var(--ink); box-shadow: var(--shadow); font-size: 0.85rem; padding: 11px 20px; }
.btn-nav-cta { background: var(--gradient-primary); color: #2b1620; }

.link-cta { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--primary); font-size: 0.9rem; }

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all var(--ease);
}
.navbar.nav-shrink { border-bottom-color: var(--hairline); box-shadow: 0 6px 24px rgba(43, 33, 64, 0.08); }
.navbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: padding var(--ease);
}
.navbar.nav-shrink .navbar-inner { padding: 11px 28px; }
.brand { font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; gap: 8px; color: var(--primary); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-weight: 700; font-size: 0.94rem; color: var(--ink-muted); transition: color var(--ease); }
.nav-links a:hover { color: var(--primary); }
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; border: none; background: var(--surface); color: var(--ink); display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow); transition: transform var(--ease); }
.icon-btn:hover { transform: scale(1.08) rotate(-6deg); }
.hamburger { display: none; }

@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 72px 16px auto 16px; background: var(--surface); border-radius: var(--radius); padding: 16px; flex-direction: column; gap: 6px; box-shadow: var(--shadow-lg); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all var(--ease); }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 10px 12px; border-radius: var(--radius-sm); }
  .hamburger { display: grid; }
  .btn-nav-cta { display: none; }
}

/* ===== Hero (cinematic full-bleed) ===== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 80px 24px 60px; }
.hero-bg-layer { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; animation: floatBlob 9s ease-in-out infinite; }
.blob-1 { width: 380px; height: 380px; background: var(--primary); top: -80px; left: -60px; }
.blob-2 { width: 320px; height: 320px; background: var(--secondary); bottom: -60px; right: -40px; animation-delay: 1.5s; }
.blob-3 { width: 260px; height: 260px; background: var(--accent); top: 40%; right: 10%; animation-delay: 3s; }
@keyframes floatBlob { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.08); } }

.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--surface); padding: 9px 18px; border-radius: var(--radius-pill); font-weight: 800; font-size: 0.85rem; color: var(--primary-dark); box-shadow: var(--shadow); margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.08; margin-bottom: 20px; }
.hero p { font-size: 1.12rem; color: var(--ink-muted); max-width: 560px; margin: 0 auto 30px; line-height: 1.65; }
.hero-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scrollcue { margin-top: 46px; font-size: 1.3rem; color: var(--ink-muted); animation: bounce 1.8s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

/* ===== Badge marquee ===== */
.badge-marquee { background: var(--dark); color: #fff; padding: 16px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 48px; white-space: nowrap; animation: marquee 26s linear infinite; width: max-content; }
.marquee-track span { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.92rem; color: #fff; opacity: 0.92; }
.marquee-track i { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== News strip (featured news horizontal-scroll bertag) ===== */
.news-strip { padding: 80px 24px 20px; max-width: 1240px; margin: 0 auto; }
.news-strip-head { text-align: center; max-width: 560px; margin: 0 auto 32px; }
.news-strip-head h2 { font-size: 1.9rem; display: flex; gap: 10px; align-items: center; justify-content: center; }
.news-strip-head p { color: var(--ink-muted); }
.news-scroll { display: flex; gap: 20px; overflow-x: auto; padding: 8px 4px 20px; scroll-snap-type: x mandatory; }
.news-scroll::-webkit-scrollbar { height: 8px; }
.news-scroll::-webkit-scrollbar-thumb { background: var(--hairline); border-radius: 10px; }
.news-card { flex: 0 0 280px; scroll-snap-align: start; background: var(--surface); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); transition: transform var(--ease); }
.news-card:hover { transform: translateY(-6px); }
.news-tag { display: inline-block; padding: 5px 12px; border-radius: var(--radius-pill); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; }
.tag-promo { background: color-mix(in srgb, var(--accent) 30%, transparent); color: #8a6300; }
.tag-event { background: color-mix(in srgb, var(--secondary) 25%, transparent); color: #0d6e66; }
.tag-info { background: color-mix(in srgb, var(--violet) 25%, transparent); color: #5b3fc4; }
[data-theme="dark"] .tag-promo { color: var(--accent); }
[data-theme="dark"] .tag-event { color: var(--secondary); }
[data-theme="dark"] .tag-info { color: var(--violet); }
.news-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--bg-alt); display: grid; place-items: center; color: var(--primary); font-size: 1.1rem; margin-bottom: 12px; }
.news-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.news-card p { color: var(--ink-muted); font-size: 0.88rem; line-height: 1.55; margin: 0; }

/* ===== Zona Bermain — tab-carousel + spotlight ===== */
.zone-section { padding: 80px 24px; max-width: 1240px; margin: 0 auto; }
.zone-tabs { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.zone-tab { display: flex; align-items: center; gap: 9px; padding: 12px 20px; border-radius: var(--radius-pill); border: 2px solid var(--hairline); background: var(--surface); color: var(--ink-muted); font-weight: 800; font-size: 0.88rem; cursor: pointer; transition: all var(--ease); }
.zone-tab i { font-size: 1rem; }
.zone-tab.active, .zone-tab:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.zone-tab.active { background: color-mix(in srgb, var(--primary) 12%, var(--surface)); }

.zone-spotlight { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; background: var(--surface); border-radius: 28px; padding: 40px; box-shadow: var(--shadow-lg); min-height: 380px; }
.spotlight-media img { border-radius: var(--radius); width: 100%; }
.spotlight-age { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-alt); color: var(--primary-dark); font-weight: 800; font-size: 0.82rem; padding: 7px 14px; border-radius: var(--radius-pill); margin-bottom: 14px; }
.spotlight-body h3 { font-size: 1.9rem; margin-bottom: 10px; }
.spotlight-tagline { color: var(--ink-muted); font-size: 1.02rem; line-height: 1.6; margin-bottom: 24px; }
.spotlight-actions { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .zone-spotlight { grid-template-columns: 1fr; padding: 24px; }
}

/* ===== Event countdown banner ===== */
.event-banner { margin: 0 24px 80px; max-width: 1192px; margin-left: auto; margin-right: auto; }
.event-banner-inner { background: var(--gradient-cool); border-radius: 28px; padding: 46px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; color: #fff; box-shadow: var(--shadow-lg); }
.event-banner-text h2 { font-size: 1.9rem; color: #fff; margin: 8px 0; }
.event-banner-text p { color: rgba(255,255,255,0.9); max-width: 380px; }
.countdown { display: flex; gap: 14px; }
.countdown div { background: rgba(255,255,255,0.18); border-radius: var(--radius-sm); padding: 14px 16px; text-align: center; min-width: 66px; }
.countdown span { display: block; font-size: 1.6rem; font-weight: 800; }
.countdown small { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.85; }

/* ===== Gallery visual-dominant ===== */
.gallery-visual { background: var(--dark); padding: 80px 24px; }
.gallery-visual .section-head h2 { color: #fff; }
.gallery-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption { position: absolute; inset: auto 0 0 0; padding: 16px; background: linear-gradient(to top, rgba(0,0,0,0.75), transparent); color: #fff; font-weight: 700; font-size: 0.88rem; opacity: 0; transition: opacity var(--ease); }
.gallery-item:hover .gallery-caption { opacity: 1; }

@media (max-width: 800px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Paket Ulang Tahun ===== */
.package-section { padding: 80px 24px; max-width: 1240px; margin: 0 auto; }
.package-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 36px; }
.pkg-tab { padding: 12px 26px; border-radius: var(--radius-pill); border: 2px solid var(--hairline); background: var(--surface); font-weight: 800; cursor: pointer; color: var(--ink-muted); transition: all var(--ease); }
.pkg-tab.active { background: var(--gradient-primary); color: #2b1620; border-color: transparent; }

.package-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pkg-card { position: relative; background: var(--surface); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); text-align: center; border: 2px solid transparent; transition: all var(--ease); }
.pkg-card.focused { border-color: var(--primary); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg-card.highlight { background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 18%, var(--surface)), var(--surface)); }
.pkg-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient-primary); color: #2b1620; font-size: 0.72rem; font-weight: 800; padding: 6px 16px; border-radius: var(--radius-pill); box-shadow: var(--shadow); white-space: nowrap; }
.pkg-img { width: 100%; border-radius: var(--radius-sm); margin-bottom: 18px; aspect-ratio: 16/10; object-fit: cover; }
.pkg-tier { display: inline-block; color: var(--secondary); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.78rem; margin-bottom: 8px; }
.pkg-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.pkg-tagline { color: var(--ink-muted); font-size: 0.9rem; margin-bottom: 18px; min-height: 40px; }
.pkg-price { font-size: 1.7rem; font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.pkg-price small { display: block; font-size: 0.78rem; font-weight: 600; color: var(--ink-muted); }
.pkg-includes { text-align: left; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.pkg-includes li { display: flex; gap: 10px; font-size: 0.88rem; color: var(--ink); }
.pkg-includes i { color: var(--success); margin-top: 3px; }
.pkg-cta { width: 100%; justify-content: center; }

@media (max-width: 940px) { .package-cards { grid-template-columns: 1fr; } }

.compare-wrap { margin-top: 60px; }
.compare-title { text-align: center; font-size: 1.3rem; margin-bottom: 20px; display: flex; gap: 10px; justify-content: center; align-items: center; }
.compare-scroll { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.compare-table { min-width: 620px; background: var(--surface); }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--hairline); font-size: 0.9rem; }
.compare-table thead th { background: var(--dark); color: #fff; font-weight: 800; }
.compare-table .row-label { text-align: left; font-weight: 700; color: var(--ink-muted); }
.compare-table .col-highlight { background: color-mix(in srgb, var(--accent) 14%, transparent); font-weight: 700; }
.compare-table tbody tr:last-child td { border-bottom: none; }

/* ===== Stat strip ===== */
.stat-strip { max-width: 1120px; margin: 0 auto 90px; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat { background: var(--surface); border-radius: var(--radius); padding: 30px 16px; box-shadow: var(--shadow); }
.stat-num { display: block; font-size: 2.2rem; font-weight: 800; color: var(--primary); font-family: "Baloo 2", sans-serif; }
.stat-label { color: var(--ink-muted); font-size: 0.85rem; font-weight: 700; }
@media (max-width: 800px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }

/* ===== About section ===== */
.about-section { max-width: 1180px; margin: 0 auto; padding: 40px 24px 90px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about-media img { border-radius: 28px; box-shadow: var(--shadow-lg); }
.about-body h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 16px; }
.about-body p { color: var(--ink-muted); line-height: 1.7; margin-bottom: 16px; }
.about-points { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.about-points div { display: flex; gap: 10px; font-weight: 700; font-size: 0.92rem; }
.about-points i { color: var(--success); margin-top: 3px; }
@media (max-width: 900px) { .about-section { grid-template-columns: 1fr; } }

/* ===== Article section ===== */
.article-section { max-width: 1240px; margin: 0 auto; padding: 20px 24px 90px; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); cursor: pointer; transition: transform var(--ease); }
.article-card:hover { transform: translateY(-6px); }
.article-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.article-body { padding: 22px; }
.article-date { font-size: 0.78rem; color: var(--ink-muted); font-weight: 700; }
.article-body h3 { font-size: 1.08rem; margin: 10px 0; line-height: 1.4; }
.article-body p { color: var(--ink-muted); font-size: 0.88rem; line-height: 1.55; margin-bottom: 14px; }
@media (max-width: 900px) { .article-grid { grid-template-columns: 1fr; } }

/* ===== Testimonial section ===== */
.testimonial-section { background: var(--dark); padding: 80px 24px; }
.testimonial-section .section-head h2 { color: #fff; }
.testi-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.testi-card { background: var(--dark-alt); border-radius: var(--radius); padding: 26px; color: #fff; }
.testi-stars { color: var(--accent); margin-bottom: 14px; font-size: 0.9rem; }
.testi-quote { font-size: 0.92rem; line-height: 1.6; color: rgba(255,255,255,0.9); margin-bottom: 20px; min-height: 90px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-person img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testi-person strong { display: block; font-size: 0.9rem; }
.testi-person span { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
@media (max-width: 1000px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testi-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq-section { max-width: 820px; margin: 0 auto; padding: 20px 24px 90px; }
.faq-item { background: var(--surface); border-radius: var(--radius-sm); margin-bottom: 12px; box-shadow: var(--shadow); overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 18px 22px; background: none; border: none; font-weight: 800; font-size: 0.96rem; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question i { color: var(--primary); transition: transform var(--ease); }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--ease); }
.faq-answer p { padding: 0 22px 20px; color: var(--ink-muted); line-height: 1.6; margin: 0; font-size: 0.9rem; }

/* ===== Contact section ===== */
.contact-section { max-width: 1120px; margin: 0 auto; padding: 20px 24px 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.contact-info p { color: var(--ink-muted); line-height: 1.65; margin-bottom: 24px; }
.contact-detail-list { display: flex; flex-direction: column; gap: 14px; }
.contact-detail-list a, .contact-detail-list span { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 0.94rem; }
.contact-detail-list i { color: var(--primary); width: 20px; }
.contact-form { background: var(--surface); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm); border: 2px solid var(--hairline);
  background: var(--bg); color: var(--ink); font-family: inherit; font-size: 0.92rem; resize: vertical;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); }
@media (max-width: 860px) { .contact-section { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 60px 24px 24px; }
.footer-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand { color: #fff; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; margin-top: 12px; color: rgba(255,255,255,0.6); }
.footer-col h4 { color: #fff; font-size: 0.9rem; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 0.88rem; padding: 6px 0; color: rgba(255,255,255,0.65); transition: color var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; }
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-bottom { max-width: 1240px; margin: 0 auto; padding-top: 20px; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: var(--accent); font-weight: 700; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ===== Floating WA + back to top ===== */
.wa-float {
  position: fixed; bottom: 26px; left: 26px; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center; font-size: 1.5rem;
  box-shadow: var(--shadow-lg); z-index: 50; animation: pulseWa 2.4s infinite;
}
@keyframes pulseWa { 0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } }
.back-to-top {
  position: fixed; bottom: 26px; right: 26px; width: 50px; height: 50px; border-radius: 50%;
  background: var(--surface); color: var(--primary); border: none; cursor: pointer; box-shadow: var(--shadow-lg); z-index: 50;
  transition: transform var(--ease);
}
.back-to-top:hover { transform: translateY(-4px); }

/* ===== Toast ===== */
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--surface); color: var(--ink); padding: 14px 20px; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 0.88rem; animation: toastIn 0.25s ease; }
.toast i { color: var(--success); }
.toast.leaving { animation: toastOut 0.22s ease forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { to { opacity: 0; transform: translateX(30px); } }

/* ===== Overlay / modal chrome ===== */
.overlay-backdrop { position: fixed; inset: 0; background: rgba(26,21,48,0.6); backdrop-filter: blur(3px); z-index: 90; opacity: 0; transition: opacity var(--ease); }
.overlay-backdrop.show { opacity: 1; }
.modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -46%); width: min(520px, 92vw);
  max-height: 86vh; overflow-y: auto; background: var(--surface); border-radius: var(--radius); padding: 34px;
  box-shadow: var(--shadow-lg); z-index: 100; opacity: 0; transition: opacity var(--ease), transform var(--ease);
}
.modal.show { opacity: 1; transform: translate(-50%, -50%); }
.modal-close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%; border: none; background: var(--bg-alt); color: var(--ink); cursor: pointer; }

.promo-modal { text-align: center; }
.promo-badge { width: 60px; height: 60px; border-radius: 50%; background: var(--gradient-primary); display: grid; place-items: center; font-size: 1.5rem; color: #fff; margin: 0 auto 16px; }
.promo-modal p { color: var(--ink-muted); line-height: 1.6; }
.promo-form { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.promo-form input { padding: 13px 16px; border-radius: var(--radius-sm); border: 2px solid var(--hairline); background: var(--bg); color: var(--ink); font-family: inherit; }
.promo-note { font-size: 0.76rem; color: var(--ink-muted); margin-top: 12px; }

.lightbox-modal img { border-radius: var(--radius-sm); margin-bottom: 14px; }
.lightbox-modal p { text-align: center; color: var(--ink-muted); font-weight: 700; }
.lightbox-nav { display: flex; justify-content: space-between; margin-top: 14px; }
.lightbox-nav button { width: 44px; height: 44px; border-radius: 50%; border: none; background: var(--bg-alt); color: var(--ink); cursor: pointer; }

.zone-detail-img { width: 100%; border-radius: var(--radius-sm); margin-bottom: 16px; }
.zone-facility-list { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 22px; }
.zone-facility-list li { display: flex; gap: 10px; font-size: 0.9rem; }
.zone-facility-list i { color: var(--success); margin-top: 3px; }

.article-modal-img { width: 100%; border-radius: var(--radius-sm); margin-bottom: 16px; aspect-ratio: 16/9; object-fit: cover; }
.article-modal p { color: var(--ink-muted); line-height: 1.7; margin-top: 12px; }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
