/* ==========================================================================
   LUMENSTAGE Productions — Event Organizer (non-wedding)
   Style: "LUMENSTAGE" (Cinematic Game Hub archetype, 3rd implementation)
   Palette: "Stage Violet & Spotlight Gold" — deep stage-lighting violet/indigo
   + spotlight gold + hot magenta accent on near-black — concert/festival
   poster energy, deliberately NOT cheerful-pastel (Wonderland Arena) and NOT
   crimson-lime-ice gym-intense (Ironclad Surge).
   ========================================================================== */

:root {
  --primary: #7c3aed;
  --primary-light: #a78bfa;
  --secondary: #e94aa0;
  --secondary-light: #f472b6;
  --accent: #f5b93d;
  --accent-light: #ffd873;
  --bg: #0b0710;
  --surface: #16101f;
  --surface-2: #1e1730;
  --border: #2f2545;
  --text: #f4eefc;
  --text-muted: #b3a3c9;
  --success: #35c17a;
  --warning: #f5b93d;
  --danger: #ef4460;
  --info: #4bb7e9;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 8px 26px rgba(0,0,0,0.45);
  --shadow-lg: 0 24px 56px rgba(0,0,0,0.55);
  --shadow-glow: 0 0 40px rgba(124,58,237,0.35);
  --font-head: 'Unbounded', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

/* Dark is the native/default identity of this template (stage-at-night
   concert energy) — "light" mode is a lifted/backstage-lounge variant rather
   than a full pastel inversion, per the archetype's cinematic character. */
:root[data-theme="light"] {
  --bg: #f5f2fb;
  --surface: #ffffff;
  --surface-2: #ece6f7;
  --border: #ded2f2;
  --text: #201434;
  --text-muted: #5d4f74;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition: background 0.3s ease, color 0.3s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0 0 0.5em; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section { padding: 76px 0; }
.section-tight { padding: 46px 0; }
.text-center { text-align: center; }
.eyebrow { display: inline-block; color: var(--accent); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.74rem; margin-bottom: 12px; }
.section-title { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
.section-desc { color: var(--text-muted); max-width: 640px; margin: 0 auto 36px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--accent); color: #16101f; padding: 10px 16px; z-index: 2000; font-weight: 700; }
.skip-link:focus { left: 10px; top: 10px; }

/* ---- Buttons (Sharp-ish elevated, festival-poster feel) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 10px; font-weight: 800; cursor: pointer;
  border: 2px solid transparent; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.03em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease; font-family: var(--font-body);
}
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.btn-primary { background: var(--secondary); color: #fff; box-shadow: 0 8px 22px rgba(233,74,160,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-gold { background: var(--accent); color: #241505; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-outline-dark { background: transparent; border-color: var(--primary); color: var(--primary-light); }
.btn-outline-dark:hover { background: var(--primary); color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 0.78rem; }
.btn-block { width: 100%; }

/* ---- Navbar: minimal horizontal, thickens + adds blur on scroll (pattern
   distinct from Lumira's transparent->solid and Ironclad's, tuned darker) ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(11,7,16,0.35); backdrop-filter: blur(6px); border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.navbar.is-solid { background: rgba(11,7,16,0.92); border-bottom-color: var(--border); box-shadow: var(--shadow); }
:root[data-theme="light"] .navbar { background: rgba(245,242,251,0.55); }
:root[data-theme="light"] .navbar.is-solid { background: rgba(245,242,251,0.95); }
.navbar-inner { display: flex; align-items: center; gap: 22px; padding: 16px 20px; max-width: 1240px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; color: #fff; text-transform: uppercase; letter-spacing: 0.02em; }
:root[data-theme="light"] .brand { color: var(--text); }
.brand-mark { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.nav-links { display: flex; gap: 24px; flex: 1; }
.nav-link { font-weight: 600; font-size: 0.88rem; color: #ece5f7; }
:root[data-theme="light"] .nav-link { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.theme-toggle { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #fff; }
:root[data-theme="light"] .theme-toggle { color: var(--text); background: var(--surface-2); border-color: var(--border); }
.hamburger { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: #fff; }
:root[data-theme="light"] .hamburger { color: var(--text); }
@media (max-width: 940px) { .nav-links { display: none; } .hamburger { display: block; } }

/* ---- Mobile menu ---- */
.mobile-menu { display: none; }
@media (max-width: 940px) {
  .mobile-menu {
    display: block; position: fixed; inset: 0 0 0 auto; width: min(320px, 88vw); height: 100vh;
    background: var(--surface); transform: translateX(100%); transition: transform 0.28s ease;
    overflow-y: auto; z-index: 950; box-shadow: var(--shadow-lg); padding: 90px 20px 20px;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a { display: block; padding: 10px 0; border-bottom: 1px solid var(--border); font-weight: 600; color: var(--text); }
}

/* ---- Cinematic hero: full-bleed stage/spotlight look ---- */
.hero {
  position: relative; overflow: hidden; color: #fff; padding-top: 150px;
  background:
    radial-gradient(circle at 18% 0%, rgba(233,74,160,0.35), transparent 55%),
    radial-gradient(circle at 85% 25%, rgba(245,185,61,0.22), transparent 45%),
    linear-gradient(180deg, #150c22 0%, #0b0710 70%);
}
.hero-beams { position: absolute; inset: 0; background:
    repeating-conic-gradient(from 200deg at 50% -10%, rgba(255,255,255,0.05) 0deg 6deg, transparent 6deg 24deg);
  opacity: 0.6; pointer-events: none; mix-blend-mode: screen; }
.hero-inner { position: relative; z-index: 2; padding: 30px 0 90px; text-align: center; max-width: 880px; margin: 0 auto; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); padding: 8px 18px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.2rem, 5.4vw, 4.1rem); line-height: 1.08; text-transform: uppercase; }
.hero h1 span { background: linear-gradient(120deg, var(--accent-light), var(--secondary-light)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { color: #ded3ef; font-size: 1.08rem; max-width: 620px; margin: 0 auto; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }
.hero-stats { display: flex; gap: 34px; justify-content: center; flex-wrap: wrap; margin-top: 52px; }
.hero-stat b { display: block; font-family: var(--font-head); font-size: 1.9rem; background: linear-gradient(120deg, var(--accent-light), var(--secondary-light)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stat span { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---- Badge marquee (client trust logos, mirrors award/rating marquee) ---- */
.marquee-row { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee-scroll 28s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 10px; padding: 0 34px; flex-shrink: 0; color: var(--text-muted); font-weight: 700; font-size: 0.9rem; white-space: nowrap; border-right: 1px solid var(--border); }
.marquee-item i { color: var(--accent); font-size: 1.15rem; }

/* ---- Countdown banner (next event) ---- */
.countdown-banner { background: linear-gradient(120deg, var(--primary), #4c1d95 60%, #1a0f2e); border-radius: var(--radius); overflow: hidden; position: relative; color: #fff; box-shadow: var(--shadow-glow); }
.countdown-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: center; padding: 40px; }
@media (max-width: 860px) { .countdown-inner { grid-template-columns: 1fr; padding: 30px; text-align: center; } }
.countdown-tag { display: inline-block; background: rgba(255,255,255,0.15); padding: 6px 14px; border-radius: 999px; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.countdown-title { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 8px; }
.countdown-meta { color: #e2d6f5; font-size: 0.92rem; }
.countdown-timer { display: flex; gap: 12px; justify-content: center; }
.countdown-unit { background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-sm); padding: 14px 10px; min-width: 74px; text-align: center; }
.countdown-unit b { display: block; font-family: var(--font-head); font-size: 1.8rem; }
.countdown-unit span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: #d9caf0; }

/* ---- Tab-carousel: event category spotlight ---- */
.tab-carousel-nav { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.tab-carousel-btn { background: var(--surface); border: 1px solid var(--border); color: var(--text-muted); padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 0.86rem; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.2s ease; }
.tab-carousel-btn i { color: var(--accent); }
.tab-carousel-btn.active { background: linear-gradient(120deg, var(--primary), var(--secondary)); color: #fff; border-color: transparent; }
.tab-carousel-btn.active i { color: #fff; }

.spotlight-panel { display: none; }
.spotlight-panel.active { display: block; }
.spotlight-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 900px) { .spotlight-card { grid-template-columns: 1fr; } }
.spotlight-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.spotlight-media img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,7,16,0.5), transparent 50%); }
.spotlight-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.spotlight-body .eyebrow { margin-bottom: 8px; }
.spotlight-body h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
.spotlight-body p { color: var(--text-muted); }
.spotlight-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 20px; }
.spotlight-tags span { background: var(--surface-2); border: 1px solid var(--border); padding: 6px 14px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; color: var(--text-muted); }

/* ---- Package tab-carousel + comparison ---- */
.package-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.package-tab-btn { background: var(--surface); border: 2px solid var(--border); color: var(--text-muted); padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 800; cursor: pointer; font-family: var(--font-head); font-size: 0.86rem; text-transform: uppercase; }
.package-tab-btn.active { border-color: var(--secondary); color: #fff; background: linear-gradient(120deg, var(--primary), var(--secondary)); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--secondary); box-shadow: var(--shadow-glow); position: relative; }
.price-card.featured::before { content: 'Paling Dipilih'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--secondary); color: #fff; font-size: 0.7rem; font-weight: 800; padding: 5px 16px; border-radius: 999px; text-transform: uppercase; }
.price-value { font-size: 2rem; font-family: var(--font-head); font-weight: 700; color: var(--accent); margin: 10px 0; }
.price-value span { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; font-family: var(--font-body); }
.price-list { list-style: none; padding: 0; margin: 16px 0 24px; flex: 1; }
.price-list li { padding: 7px 0; font-size: 0.9rem; display: flex; gap: 8px; align-items: flex-start; }
.price-list li i { color: var(--secondary); margin-top: 3px; }

/* ---- Facilities / equipment comparison table ---- */
.table-scroll { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 680px; background: var(--surface); }
.compare-table th, .compare-table td { padding: 16px 18px; border-bottom: 1px solid var(--border); text-align: left; font-size: 0.9rem; }
.compare-table thead th { font-family: var(--font-head); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.03em; background: var(--surface-2); }
.compare-table thead th:not(:first-child) { text-align: center; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tbody th { color: var(--text-muted); font-weight: 600; font-family: var(--font-body); }
.compare-table tr:last-child td, .compare-table tr:last-child th { border-bottom: none; }
.compare-table .col-featured { background: rgba(233,74,160,0.08); }
.compare-table i.fa-check { color: var(--success); }
.compare-table i.fa-xmark { color: var(--text-muted); opacity: 0.5; }

/* ---- Budget Estimator (signature feature) ---- */
.estimator-band { background: linear-gradient(150deg, var(--surface-2), var(--surface)); border: 1px solid var(--border); border-radius: var(--radius); padding: 42px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .estimator-band { grid-template-columns: 1fr; padding: 26px; } }
.estimator-field { margin-bottom: 18px; }
.estimator-field label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.9rem; }
.estimator-field select, .estimator-field input[type="range"] { width: 100%; }
.range-value { font-family: var(--font-head); color: var(--accent); font-weight: 700; }
.estimator-result { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.estimator-result-empty { color: var(--text-muted); font-size: 0.92rem; }
.estimator-price { font-family: var(--font-head); font-size: 1.8rem; color: var(--accent); margin: 10px 0; }
.estimator-breakdown { list-style: none; padding: 0; margin: 14px 0; }
.estimator-breakdown li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.estimator-breakdown li:last-child { border-bottom: none; }

/* ---- Cards / grid generic ---- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-body { padding: 20px; }
.card-tag { display: inline-block; background: var(--surface-2); color: var(--accent); font-size: 0.7rem; font-weight: 800; padding: 4px 10px; border-radius: var(--radius-sm); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ---- Portfolio case study card ---- */
.case-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.case-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.case-media img { width: 100%; height: 100%; object-fit: cover; }
.case-badge { position: absolute; top: 10px; left: 10px; background: var(--accent); color: #241505; font-size: 0.66rem; font-weight: 800; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; }
.case-body { padding: 18px 20px 20px; }
.case-cat { font-size: 0.72rem; color: var(--secondary); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.case-title { font-size: 1.04rem; margin: 6px 0; }
.case-meta { font-size: 0.8rem; color: var(--text-muted); display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Chips / search ---- */
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { background: var(--surface); border: 1px solid var(--border); padding: 9px 18px; border-radius: 999px; font-size: 0.86rem; font-weight: 700; cursor: pointer; color: var(--text-muted); }
.chip.active { background: linear-gradient(120deg, var(--primary), var(--secondary)); color: #fff; border-color: transparent; }
.no-result { text-align: center; padding: 40px 20px; color: var(--text-muted); display: none; }
.no-result.show { display: block; }
.search-box { flex: 1; min-width: 220px; position: relative; }
.search-box input { width: 100%; padding: 12px 16px 12px 42px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); color: var(--text); font-size: 0.95rem; }
.search-box i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.catalog-toolbar { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---- Timeline (About) ---- */
.timeline { position: relative; padding-left: 30px; border-left: 3px solid var(--border); }
.timeline-item { position: relative; margin-bottom: 30px; }
.timeline-item::before { content: ''; position: absolute; left: -38px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--secondary); border: 3px solid var(--surface); box-shadow: 0 0 0 2px var(--secondary); }
.timeline-year { color: var(--accent); font-weight: 800; font-family: var(--font-head); }

/* ---- Stat band ---- */
.stat-band { background: var(--surface-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat-grid b { font-size: 2rem; font-family: var(--font-head); display: block; color: var(--accent); }
@media (max-width: 720px) { .stat-grid { grid-template-columns: repeat(2,1fr); } }

/* ---- FAQ Accordion ---- */
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; background: var(--surface); }
.accordion-head { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; cursor: pointer; font-weight: 700; }
.accordion-head i { transition: transform 0.25s ease; color: var(--secondary); }
.accordion-item.open .accordion-head i { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--text-muted); }
.accordion-body-inner { padding: 0 20px 18px; }
.accordion-item.open .accordion-body { max-height: 400px; }

/* ---- Testimonials ---- */
.testi-single { max-width: 720px; margin: 0 auto; text-align: center; }
.testi-stars { color: var(--warning); margin-bottom: 14px; font-size: 1.1rem; }
.testi-quote { font-family: var(--font-head); font-size: 1.24rem; line-height: 1.5; }
.testi-who { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 20px; }
.testi-who img { width: 48px; height: 48px; border-radius: 50%; }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.testi-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--border); cursor: pointer; }
.testi-dots button.active { background: var(--secondary); width: 22px; border-radius: 6px; }

/* ---- Forms ---- */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 0.9rem; }
.form-control { width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--surface); color: var(--text); font-family: var(--font-body); font-size: 0.95rem; }
.form-control:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }

/* ---- Breadcrumb / page header ---- */
.page-header { background: linear-gradient(150deg, #201233, #0b0710); color: #fff; padding: 140px 0 50px; position: relative; overflow: hidden; }
.breadcrumb { font-size: 0.85rem; color: #d9caf0; margin-bottom: 10px; }
.breadcrumb a { color: #fff; font-weight: 600; }

/* ---- Detail split ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.spec-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.spec-table td { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.spec-table td:first-child { color: var(--text-muted); width: 42%; }

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---- Footer ---- */
footer { background: #0b0710; color: #cabfdc; padding: 56px 0 24px; margin-top: 40px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer-grid h5 { color: #fff; font-family: var(--font-head); margin-bottom: 14px; font-size: 0.95rem; text-transform: uppercase; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 36px; padding-top: 18px; text-align: center; font-size: 0.82rem; color: #877999; }
.social-icons { display: flex; gap: 10px; margin-top: 14px; }
.social-icons a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---- Floating elements ---- */
.float-wa { position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: var(--shadow-lg); z-index: 500; animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5);} 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }
.back-to-top { position: fixed; bottom: 24px; right: 92px; width: 48px; height: 48px; border-radius: 50%; background: var(--secondary); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); z-index: 500; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; cursor: pointer; border: none; }
.back-to-top.show { opacity: 1; pointer-events: auto; }

/* ---- Modal ---- */
.modal-overlay { position: fixed; inset: 0; background: rgba(5,3,10,0.75); display: flex; align-items: center; justify-content: center; z-index: 1200; opacity: 0; visibility: hidden; transition: all 0.2s ease; padding: 20px; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); max-width: 640px; width: 100%; max-height: 88vh; overflow-y: auto; padding: 30px; transform: translateY(20px); transition: transform 0.25s ease; position: relative; }
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close { position: absolute; top: 16px; right: 16px; background: var(--surface-2); border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1rem; color: var(--text); }
.modal-box img { border-radius: var(--radius-sm); margin-bottom: 16px; }

/* ---- Toast ---- */
.toast-wrap { position: fixed; top: 20px; right: 20px; z-index: 1500; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--success); box-shadow: var(--shadow-lg); border-radius: var(--radius-sm); padding: 14px 18px; min-width: 260px; max-width: 340px; display: flex; gap: 10px; align-items: flex-start; transform: translateX(120%); transition: transform 0.3s ease; color: var(--text); }
.toast.show { transform: translateX(0); }
.toast i { color: var(--success); margin-top: 2px; }
.toast.error { border-left-color: var(--danger); }
.toast.error i { color: var(--danger); }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---- Utility ---- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-accent { color: var(--secondary); }
.bg-surface { background: var(--surface); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
