/* =========================================================
   LUXURY INTERIOR SHOWCASE — Premium Curtain & Interior Design
   Optimized for Sales Conversion & Trust Building
========================================================= */

:root {
  /* Luxury Color Palette — refined */
  --primary-gold: #B8892D;
  --primary-dark: #2B2926;
  /* Minimal palette: fokus pada putih, hitam, dan emas */
  --accent-cream: #FFFFFF;
  --accent-warm: #FFFFFF;
  --neutral-dark: #111111;
  --neutral-medium: #5A5A5A;
  --neutral-light: #F4F4F4;
  --white: #FFFFFF;
  --success: #27AE60;
  --trust-blue: #2E86C1;

  /* Gradients */
  --gradient-gold: #B8892D;
  /* Warm gradient subtle untuk kesan mewah elegan */
  --gradient-warm: linear-gradient(180deg, #FFFFFF 0%, #F7F7F7 100%);
  /* Overlay halus untuk kedalaman visual ringan */
  --gradient-overlay: linear-gradient(135deg, rgba(10, 10, 10, 0.12) 0%, rgba(10, 10, 10, 0.06) 100%);

  /* Typography */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Inter', sans-serif;
  --font-size-hero: clamp(2.2rem, 4.5vw, 3.4rem);
  --font-size-h1: clamp(1.75rem, 3.5vw, 2.5rem);
  --font-size-h2: clamp(1.4rem, 3vw, 2rem);
  --font-size-h3: clamp(1.1rem, 2.4vw, 1.5rem);
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;

  /* Spacing */
  --space-xs: 0.4rem;
  --space-sm: 0.8rem;
  --space-md: 1.2rem;
  --space-lg: 1.6rem;
  --space-xl: 2.4rem;
  --space-2xl: 3.2rem;
  --space-3xl: 5rem;

  /* Layout */
  --nav-height: 112px;

  /* Shadows & Effects */
  --shadow-soft: none;
  --shadow-medium: none;
  --shadow-strong: none;
  --border-radius: 0px;
  --border-radius-lg: 0px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  line-height: 1.75;
  color: var(--neutral-dark);
  /* Latar putih untuk tampilan bersih dan cepat */
  background: var(--white);
  overflow-x: hidden;
  padding-top: var(--nav-height);
}

.container {
  /* Sedikit lebih sempit untuk fokus konten dan keterbacaan */
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.section {
  padding: var(--space-3xl) 0;
  scroll-margin-top: calc(var(--nav-height) + 10px);
}

/* Subtle section reveal (respect reduced motion) */
@media (prefers-reduced-motion: no-preference) {
  .section { opacity: 0; transform: translateY(8px); transition: opacity .4s ease, transform .4s ease; }
  .section.in-view { opacity: 1; transform: none; }
}

/* Typography — lebih sederhana, kuat, dan mudah dibaca */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.25;
  color: var(--neutral-dark);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-size: var(--font-size-hero);
  font-weight: 700;
  color: var(--white);
  /* Perkuat keterbacaan di atas video terang */
  text-shadow: 0 3px 16px rgba(0,0,0,0.65);
  margin-bottom: var(--space-lg);
}

.section-title {
  font-size: var(--font-size-h1);
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  letter-spacing: 0.2px;
}

/* Hilangkan garis dekoratif di bawah judul section */
.section-title::after { display: none; }

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FFFFFF;
  /* Blur dihilangkan untuk tampilan yang lebih bersih */
  backdrop-filter: none;
  border-bottom: 1px solid rgba(184, 137, 45, 0.16);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xs) var(--space-md);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
}

.brand-logo {
  height: 88px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid rgba(184, 137, 45, 0.3);
  background: var(--white);
  color: var(--neutral-dark);
  cursor: pointer;
}

.nav-link {
  color: var(--neutral-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width .24s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: transparent;
  color: var(--primary-gold);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: none;
  border: 1.5px solid var(--primary-gold);
}

.nav-cta:hover {
  background: var(--primary-gold);
  color: var(--white);
}

/* Scrolled navbar effect for depth */
.navbar.scrolled {
  background: #FFFFFF;
  box-shadow: var(--shadow-soft);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--space-lg);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  display: block;
}

/* Tambahkan ruang vertikal pada container di dalam hero */
.hero .container {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  /* Gelapkan video agar teks lebih kontras di atas latar terang */
  filter: brightness(0.6) contrast(1.05);
}

.hero-video.visible {
  opacity: 1;
}

.hero-overlay { display: none; }

/* Fade/overlay di atas video untuk keterbacaan teks */
.hero-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  /* Overlay diperkuat agar teks lebih kontras */
  background: linear-gradient(to bottom, rgba(0,0,0,0.72), rgba(0,0,0,0.46));
  opacity: 1;
}
.hero-fade.active {
  background: linear-gradient(to bottom, rgba(0,0,0,0.78), rgba(0,0,0,0.52));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 540px;
  padding-bottom: var(--space-2xl); /* beri ruang bawah agar CTA tidak nempel */
  background: transparent; /* tidak ada panel/box warna */
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  padding: 0; /* kembali natural tanpa box */
  border-radius: 0;
  border: none;
}

.hero-subtitle {
  font-size: var(--font-size-h3);
  color: var(--white);
  margin-bottom: var(--space-xl);
  font-weight: 400;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}
/* Info layanan area untuk hero */
.hero-service-area {
  font-size: var(--font-size-small);
  color: rgba(255,255,255,0.95);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}

.hero-cta-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl); /* jarak bawah CTA agar proporsional */
}

.btn-primary {
  background: var(--primary-gold);
  color: var(--white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-small);
  transition: var(--transition);
  box-shadow: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  /* Drop-shadow yang lebih ringan agar tetap elegan */
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
  border: none;
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--neutral-dark);
  padding: 8px 14px;
  border: 1px solid var(--neutral-medium);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-secondary:hover {
  opacity: 0.85;
}

/* Trust Indicators */
.trust-section {
  display: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-lg);
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.trust-icon {
  display: none;
}

.trust-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-gold);
  font-family: var(--font-primary);
}

.trust-label {
  font-weight: 500;
  color: var(--neutral-medium);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: var(--space-2xl);
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.service-card:hover {
  transform: none;
  box-shadow: none;
}

.service-header {
  background: var(--gradient-warm);
  padding: var(--space-lg);
  text-align: center;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* Service Accordion — unified styles */
.svc-head {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr 24px;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
}
.svc-icon img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  display: block;
}
.svc-meta h3 {
  font-size: var(--font-size-h3);
  margin: 0 0 4px 0;
}
.svc-subtitle {
  font-size: var(--font-size-small);
  color: var(--neutral-medium);
}
.chev {
  font-size: 18px;
  color: var(--primary-gold);
  font-weight: 700;
}
.svc-body {
  padding: 0 var(--space-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
  border-top: 1px solid rgba(184, 137, 45, 0.14);
}
.service-card.open {
  box-shadow: var(--shadow-medium);
}

/* Accessibility: screen reader only utility */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
/* Keyboard accessibility: focus visibility */
:focus-visible {
  outline: 2px solid rgba(184,137,45,0.6);
  outline-offset: 3px;
}

/* Responsive adjustments */
@media (max-width: 960px) {
  .nav-menu { display: none; }
  .nav-menu.show {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    position: absolute;
    top: var(--nav-height); right: var(--space-md); left: var(--space-md);
    background: var(--white);
    padding: var(--space-sm);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
  }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero { min-height: 420px; }
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-title {
  font-size: var(--font-size-h3);
  margin-bottom: var(--space-sm);
  color: var(--neutral-dark);
}

.service-subtitle {
  color: var(--neutral-medium);
  font-size: var(--font-size-small);
  margin-bottom: var(--space-md);
}

.service-body {
  padding: var(--space-xl);
}

.service-features {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.service-features li {
  padding: var(--space-xs) 0;
  position: relative;
  padding-left: var(--space-lg);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.service-cta {
  background: transparent;
  color: var(--primary-gold);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  width: 100%;
  text-align: center;
  border: 1.5px solid var(--primary-gold);
}

.service-cta:hover {
  background: var(--primary-gold);
  color: var(--white);
}

/* Service card wrapper for better visual hierarchy */
.service-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius-lg);
  box-shadow: none;
  overflow: hidden;
}

/* Service accordion (legacy markup support: .svc-*) */
.svc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border: 0;
  width: 100%;
  cursor: pointer;
}
.svc-icon {
  width: 96px;
  height: 96px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  flex: 0 0 auto;
}
.svc-icon img { width: 100%; height: 100%; object-fit: cover; }
.svc-meta h3 { margin: 0; font-size: var(--font-size-h3); color: var(--neutral-dark); }
.svc-subtitle { color: var(--neutral-medium); font-size: var(--font-size-small); }
.svc-body {
  padding: var(--space-lg) var(--space-xl);
  transition: max-height .3s ease;
  overflow: hidden;
}
.chev { font-weight: 700; color: var(--primary-gold); }

/* Portfolio Gallery */
.gallery-section {
  display: block;
}

/* Judul kategori gallery */
.gallery-category-title {
  font-size: var(--font-size-h3);
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--neutral-dark);
  /* Badge ringan agar judul kategori lebih menonjol */
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 6px;
  background: rgba(201,169,110,0.06);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 280px));
  justify-content: start;
  gap: var(--space-md);
}

/* Single-row carousel wrapper per category */
.gallery-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  /* Kotak tipis pembeda setiap kategori */
  border: 1px solid rgba(201,169,110,0.16);
  border-radius: var(--border-radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  background: var(--white);
}

/* Horizontal track turning grid into one-row scroller */
.gallery-track {
  grid-template-columns: none !important;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
  padding-inline: 24px; /* ruang kiri/kanan lebih kecil karena tombol digeser keluar */
  /* sembunyikan scrollbar di semua browser */
  scrollbar-width: none; /* Firefox */
}
.gallery-track::-webkit-scrollbar { display: none; } /* WebKit */
.gallery-track { -ms-overflow-style: none; } /* IE/Edge legacy */


.gallery-track .portfolio-card { scroll-snap-align: start; }

.scroll-btn {
  appearance: none;
  border: 1.5px solid var(--primary-gold);
  background: rgba(255,255,255,0.96);
  color: var(--primary-gold);
  width: 44px;
  height: 44px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: none; /* no hover/active animation */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  backdrop-filter: blur(6px);
}
.scroll-btn.hidden { display: none; }

/* Show More categories: button and collapsed state */
.collapsed-category { display: none !important; }
.gallery-more { display: flex; justify-content: center; gap: 10px; margin: 12px 0 24px; }
.gallery-more-btn {
  appearance: none;
  border: 1.5px solid var(--primary-gold);
  background: #fff;
  color: var(--primary-gold);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}
.gallery-more-btn:focus-visible { outline: 2px solid var(--primary-gold); outline-offset: 2px; }
.scroll-btn.left { left: -16px; }
.scroll-btn.right { right: -16px; }
.scroll-btn:hover { transform: translateY(-50%); box-shadow: 0 6px 16px rgba(0,0,0,0.18); background: rgba(255,255,255,0.96); color: var(--primary-gold); }
.scroll-btn:active { transform: translateY(-50%); box-shadow: 0 6px 16px rgba(0,0,0,0.18); }
.scroll-btn:focus-visible { outline: 2px solid var(--primary-gold); outline-offset: 3px; }

@media (max-width: 768px) {
  .scroll-btn { width: 48px; height: 48px; font-size: 22px; }
  .scroll-btn.left { left: -10px; }
  .scroll-btn.right { right: -10px; }
}

.gallery-item {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.gallery-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.gallery-image img,
.gallery-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover .gallery-image img,
.gallery-item:hover .gallery-image video {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  text-align: center;
  color: var(--white);
}

.gallery-overlay-title {
  font-size: var(--font-size-h4);
  margin-bottom: var(--space-xs);
}

.gallery-overlay-btn {
  background: var(--gradient-gold);
  color: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.gallery-info {
  padding: var(--space-md);
}

.gallery-title {
  font-size: var(--font-size-h4);
  margin-bottom: var(--space-xs);
  color: var(--neutral-dark);
}

.gallery-location {
  color: var(--neutral-medium);
  font-size: var(--font-size-small);
  margin-bottom: var(--space-md);
}

.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.gallery-tag {
  background: var(--accent-warm);
  color: var(--primary-dark);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 20px;
  font-size: var(--font-size-small);
  font-weight: 500;
}

/* Portfolio card — compact premium style */
.portfolio-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.pc-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--neutral-light);
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: inset 0 0 0 1px rgba(184, 137, 45, 0.08);
}

.pc-thumb img,
.pc-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 240ms ease, filter 240ms ease;
}

.pc-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(0,0,0,0.06) 100%);
  opacity: 0.35;
}

.pc-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(184, 137, 45, 0.14);
  border-bottom: none;
  border-radius: inherit;
}

.portfolio-card:hover .pc-thumb img,
.portfolio-card:hover .pc-thumb video {
  transform: scale(1.03);
  filter: saturate(1.03) contrast(1.03);
}

.pc-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pc-title {
  font-size: var(--font-size-h4);
  line-height: 1.25;
  color: var(--neutral-dark);
  margin: 0;
}

.pc-desc {
  font-size: var(--font-size-small);
  color: var(--neutral-medium);
  margin: 0;
}

.pc-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.pc-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(184, 137, 45, 0.12);
  color: var(--primary-gold);
  font-size: 0.75rem;
  font-weight: 600;
}

.pc-count {
  font-size: 0.75rem;
  color: var(--neutral-medium);
}

.pc-btn {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 0;
  background: var(--gradient-gold);
  color: #fff;
  font-size: var(--font-size-small);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.pc-btn:hover {
  opacity: 0.92;
}

@media (max-width: 768px) {
  .pc-body { padding: var(--space-sm); }
  .pc-title { font-size: var(--font-size-h3); }
  .pc-desc { font-size: var(--font-size-small); }
}

/* About values & FAQ */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
.values > div {
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  padding: var(--space-lg);
}
.values strong { color: var(--neutral-dark); }
.muted { color: var(--neutral-medium); }

.faq-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
.faq-grid details {
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  padding: var(--space-md) var(--space-lg);
}
.faq-grid summary { cursor: pointer; font-weight: 600; color: var(--neutral-dark); }
.faq-grid p { margin-top: var(--space-sm); color: var(--neutral-medium); }

/* Hide FAQ section for extreme minimalist layout */
#faq { display: none; }

/* Contact form */
.contact-form { display: grid; gap: var(--space-md); }
.contact-form label { display: grid; gap: var(--space-xs); font-weight: 600; color: var(--neutral-dark); }
.contact-form input,
.contact-form textarea {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--border-radius);
  border: 1px solid rgba(0,0,0,0.12);
  outline: none;
  font-family: var(--font-secondary);
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: rgba(201,169,110,0.6); box-shadow: 0 0 0 3px rgba(201,169,110,0.15); }
.form-actions { display: flex; gap: var(--space-md); align-items: center; flex-wrap: wrap; }

/* Gallery Teaser Section */
#gallery-teaser {
  background-image: url("/static/img/gallery.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
}

#gallery-teaser::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

#gallery-teaser .container {
  position: relative;
  z-index: 1;
}

#gallery-teaser-title {
  font-size: var(--font-size-h2);
  color: var(--white);
  margin-bottom: var(--space-md);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

#gallery-teaser .muted {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

#gallery-teaser .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: rgba(0,0,0,0.25);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}

/* WhatsApp circular CTA for teaser */
#gallery-teaser .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366; /* WhatsApp green */
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#gallery-teaser .btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@media (max-width: 480px) {
  #gallery-teaser .btn-whatsapp { width: 52px; height: 52px; }
}

#gallery-teaser .btn-outline::after {
  content: '→';
  margin-left: var(--space-xs);
  transition: transform 0.3s ease;
}

#gallery-teaser .btn-outline:hover::after {
  transform: translateX(4px);
}

#gallery-teaser .btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 137, 45, 0.25);
}

/* New Gallery Page Styling */
.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-subtitle {
  color: var(--neutral-medium);
  font-size: 1.1rem;
  margin-top: 0.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Gallery Filters */
.gallery-filters {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  padding: 0 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}

.filter-btn {
  background: var(--white);
  border: 2px solid rgba(184, 137, 45, 0.2);
  color: var(--neutral-dark);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  scroll-snap-align: start;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(184, 137, 45, 0.3);
}

/* Collapsible Filters Toolbar */
.filters-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  padding: 0 1rem;
}

.filters-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 2px solid rgba(184, 137, 45, 0.2);
  color: var(--neutral-dark);
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filters-toggle:hover {
  border-color: var(--primary-gold);
}

.filters-toggle .caret {
  transition: transform 0.2s ease;
}

.filters-toggle[aria-expanded="true"] .caret {
  transform: rotate(180deg);
}

.filters-active-label {
  color: var(--primary-gold);
  font-weight: 600;
}

.filters-reset {
  padding: 6px 12px;
}

.filters-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.filters-panel.collapsed {
  max-height: 0;
  padding-top: 0;
}

.filters-panel:not(.collapsed) {
  max-height: 300px; /* cukup untuk beberapa baris chips */
  padding-top: 0.5rem;
}

/* Overrides inside filters panel: vertical grid + scroll */
.filters-panel .gallery-filters {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.25rem;
  align-items: start;
  padding: 0 0.5rem 0.25rem;
  overflow-y: auto;
  max-height: 260px;
}

.filters-panel .filter-btn {
  width: 100%;
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

/* Quick filters (popular categories) */
.quick-filters {
  display: flex;
  gap: 0.5rem;
  padding: 0 1rem;
  margin-bottom: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.quick-filters .filter-btn {
  flex: 0 0 auto;
}

/* Gallery item category tags */
.gi-tags {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.gi-tag {
  display: inline-block;
  background: var(--primary-gold);
  color: var(--white);
  border: 0;
  padding: 3px 10px;
  font-size: 0.78rem;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(184, 137, 45, 0.35);
}

/* Gallery Search */
.gallery-search {
  position: relative;
  max-width: 400px;
  margin: 0 auto 3rem;
}

.gallery-search input {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 2px solid rgba(184, 137, 45, 0.2);
  border-radius: 25px;
  font-size: 1rem;
  background: var(--white);
  color: var(--neutral-dark);
  transition: all 0.3s ease;
}

.gallery-search input:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(184, 137, 45, 0.1);
}

.search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--neutral-medium);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: all 0.2s ease;
  display: none;
}

.search-clear:hover {
  background: var(--neutral-light);
  color: var(--neutral-dark);
}

.search-clear.show {
  display: block;
}

/* Gallery Masonry Grid */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gallery-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  margin: 0;
  height: 0;
  overflow: hidden;
  display: none !important;
}

.gi-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gi-thumb img,
.gi-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gi-thumb img,
.gallery-item:hover .gi-thumb video {
  transform: scale(1.05);
}

.gi-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gi-overlay {
  opacity: 1;
}

.gi-play-btn {
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gi-play-btn {
  transform: scale(1);
}

.gi-count {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.gi-info {
  padding: 1rem;
}

.gi-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.gi-location {
  color: var(--neutral-medium);
  font-size: 0.9rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.gi-location::before {
  content: '📍';
  font-size: 0.8rem;
}

/* Gallery Load More */
.gallery-load-more {
  text-align: center;
  margin-top: 2rem;
}

.gallery-count {
  color: var(--neutral-medium);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Animation for filtering */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item.show {
  animation: fadeInUp 0.4s ease forwards;
}

/* Buttons (outline/white already exist) */
.btn-outline {
  background: transparent;
  color: var(--primary-gold);
  padding: var(--space-md) var(--space-xl);
  border: 2px solid var(--primary-gold);
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--primary-gold); color: var(--white); }

/* Testimonials */
.testimonials-section {
  display: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial-quote {
  font-size: var(--font-size-body);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-style: italic;
  color: var(--neutral-medium);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
}

.testimonial-info h4 {
  margin: 0;
  font-size: var(--font-size-body);
  color: var(--neutral-dark);
}

.testimonial-info p {
  margin: 0;
  font-size: var(--font-size-small);
  color: var(--neutral-medium);
}

.testimonial-stars {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  color: #FFD700;
}

/* CTA Section */
.cta-section {
  background: var(--gradient-warm);
  color: var(--neutral-dark);
  text-align: center;
}

.cta-title {
  font-size: var(--font-size-h2);
  margin-bottom: var(--space-md);
  color: var(--neutral-dark);
}

.cta-subtitle {
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  opacity: 0.85;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--primary-gold);
  padding: var(--space-md) var(--space-xl);
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.btn-white:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

/* Footer */
.footer {
  background: #0a0d16;
  color: var(--white);
  padding: var(--space-2xl) 0 var(--space-lg);
  box-shadow: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

/* Footer simple layout (when using a single centered column) */
.footer-content { text-align: left; }
.footer-content h3 {
  color: var(--primary-gold);
  letter-spacing: 0.2px;
  margin-bottom: var(--space-sm);
}
.footer-content p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: var(--space-xs);
}
.footer-content a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition);
}
.footer-content a:hover {
  color: var(--primary-gold);
  text-decoration: underline;
}

.footer-section {
  background: transparent;
  border: 0;
  border-radius: var(--border-radius);
  padding: var(--space-lg);
}

.footer-section h3 {
  color: var(--primary-gold);
  margin-bottom: var(--space-md);
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-lg);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-small);
}

@media (max-width: 768px) {
  .footer-content { text-align: center; }
}

/* Mobile CTA */
.mobile-cta {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  background: var(--gradient-gold);
  padding: var(--space-md);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-strong);
  z-index: 999;
  display: none;
}

.mobile-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.mobile-cta-text {
  color: var(--white);
  font-weight: 600;
}

.mobile-cta-buttons {
  display: flex;
  gap: var(--space-sm);
}

.mobile-cta-btn {
  background: var(--white);
  color: var(--primary-gold);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-small);
  transition: var(--transition);
}

/* WhatsApp original icon style for mobile CTA */
.mobile-cta-btn.wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25D366; /* WhatsApp green */
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  padding: 0; /* icon-only */
}
.mobile-cta-btn.wa-icon:hover { background: #1ebe57; }
.mobile-cta-btn.wa-icon:focus-visible { outline: 2px solid #128C7E; outline-offset: 2px; }

@media (max-width: 480px) {
  .mobile-cta-btn.wa-icon { width: 42px; height: 42px; }
}

/* Floating WhatsApp button (global, bottom-left) */
.floating-wa {
  position: fixed;
  left: var(--space-md);
  bottom: var(--space-md);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  z-index: 1001;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.floating-wa svg { width: 30px; height: 30px; }
.floating-wa:hover { background: #1ebe57; transform: translateY(-1px); }
.floating-wa:focus-visible { outline: 2px solid #128C7E; outline-offset: 2px; }
@media (max-width: 480px) { 
  .floating-wa { width: 36px; height: 36px; }
  .floating-wa svg { width: 20px; height: 20px; }
}
@media (min-width: 992px) {
  .floating-wa { width: 80px; height: 80px; }
  .floating-wa svg { width: 36px; height: 36px; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .brand-logo { height: 72px; }
  .nav-menu {
    display: none;
  }
  .nav-toggle {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(201,169,110,0.2);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--border-radius);
    color: var(--neutral-dark);
  }
  .nav-menu.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    padding: var(--space-md);
    border-bottom: 1px solid rgba(201,169,110,0.2);
    gap: var(--space-sm);
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  /* Hero mobile typography and CTA sizing */
  .hero-title { font-size: 1.8rem; line-height: 1.25; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 0.75rem; }
  /* Pertahankan desain anchor (CTA) konsisten di mobile */
  
  /* Mobile: gunakan latar warna, matikan video agar tidak mencoba autoplay */
  /* Tampilkan video di mobile; gunakan poster/overlay sebagai fallback */
  .hero-bg { background: var(--neutral-dark); }
  
  /* Hero mobile spacing agar tidak terlalu nempel bawah */
  .hero { min-height: 80vh; padding: var(--space-xl) 0; }
  .hero-content { padding-bottom: var(--space-lg); }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .mobile-cta {
    display: none !important;
  }
  
  body {
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  /* Gallery Teaser Mobile */
  #gallery-teaser {
    padding: 1.5rem 0.75rem;
  }
  /* Perkuat overlay di mobile agar konten lebih kontras */
  #gallery-teaser::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.65) 100%);
  }
  /* Tambahkan panel semi-transparan di belakang teks */
  #gallery-teaser .container {
    background: rgba(0,0,0,0.28);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: inline-block;
    backdrop-filter: blur(2px);
  }
  
  #gallery-teaser-title {
    font-size: 1.5rem;
  }
  
  #gallery-teaser .muted {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  #gallery-teaser .btn-outline {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
    background: rgba(0,0,0,0.25);
    color: #fff;
    border-color: rgba(255,255,255,0.7);
  }
  
  /* Gallery Page Mobile */
  .gallery-header {
    margin-bottom: 1.5rem;
  }
  
  .gallery-subtitle {
    font-size: 0.9rem;
  }
  
  .gallery-filters {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0 0.75rem;
  }
  
  .filter-btn {
    min-width: 120px;
    text-align: center;
    flex: 0 0 auto;
    white-space: nowrap;
  }
  
  .gallery-search {
    margin: 0 0.75rem 1.5rem;
  }
  
  .gallery-masonry {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0 0.75rem;
  }
  
  .gi-thumb {
    aspect-ratio: 16/9;
  }
  
  .gi-play-btn {
    width: 45px;
    height: 45px;
  }
  
  /* Lightbox mobile: improve caption readability and bigger tap targets */
  .lightbox .caption {
    font-size: 0.9rem;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(0,0,0,0.6);
  }
  .lightbox .close,
  .lightbox .nav.prev,
  .lightbox .nav.next {
    width: 44px;
    height: 44px;
  }
  
  .gi-count {
    top: 8px;
    right: 8px;
    padding: 3px 6px;
    font-size: 0.7rem;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

/* ---------------------
   Services collapse & Section animated background (append overrides)
----------------------*/
.services-grid.collapsed .service-card:nth-child(n+7) {
  display: none;
}

.services-toggle {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: center;
}

.btn-outline.small {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.9rem;
  border-width: 1.5px;
}

.section { position: relative; }
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 400px at 10% 10%, rgba(201, 169, 110, 0.06), transparent 70%),
    radial-gradient(700px 300px at 90% 15%, rgba(0, 0, 0, 0.04), transparent 60%);
  opacity: 0.7;
  animation: sectionGlow 18s ease-in-out infinite alternate;
}

@keyframes sectionGlow {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(0, 6px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .section::before { animation: none; }
}

.lightbox.show {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.lightbox-media {
  width: 100%;
  height: auto;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--gradient-gold);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.lightbox-close:hover {
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gradient-gold);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  transition: var(--transition);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: var(--space-md);
}

.lightbox-next {
  right: var(--space-md);
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  font-weight: 600;
}
/* Footer brand logo */
.footer-logo { height: 96px; width: auto; display: block; margin-bottom: var(--space-sm); }

/* Footer links */
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-xs); }
.footer-links { grid-template-columns: repeat(2, minmax(160px, 1fr)); }
.footer-links li { padding: 6px 0; }
.footer-links a { color: rgba(255,255,255,0.9); text-decoration: none; transition: var(--transition); display: inline-flex; align-items: center; gap: var(--space-xs); }
.footer-links a::before { content: '›'; color: var(--primary-gold); opacity: 0.9; }
.footer-links a:hover { color: var(--primary-gold); text-decoration: underline; }

/* Footer buttons */
.footer-btn { display: inline-flex; align-items: center; gap: var(--space-xs); padding: var(--space-xs) var(--space-md); border-radius: 0; font-weight: 600; transition: var(--transition); }
.footer-btn .icon { width: 18px; height: 18px; }
.footer-btn.whatsapp { background: #25D366; color: #0a0d16; box-shadow: var(--shadow-soft); }
.footer-btn.whatsapp:hover { transform: translateY(-2px); box-shadow: var(--shadow-medium); }

/* Tambahkan kotak untuk link Hubungi Kami */
.footer-btn.contact {
  background: transparent;
  color: rgba(255,255,255,0.92);
  border: 1.5px solid rgba(201,169,110,0.45);
  padding: calc(var(--space-xs) + 2px) var(--space-md);
}
.footer-btn.contact:hover {
  background: var(--primary-gold);
  color: #0a0d16;
  box-shadow: var(--shadow-soft);
}

/* Footer map link */
.footer-map { color: rgba(255,255,255,0.9); text-decoration: none; transition: var(--transition); }
.footer-map:hover { color: var(--primary-gold); text-decoration: underline; }

/* Gallery Teaser Responsive */
@media (max-width: 768px) {
  #gallery-teaser {
    padding: var(--space-2xl) 0;
  }
  
  #gallery-teaser-title {
    font-size: var(--font-size-h3);
    margin-bottom: var(--space-sm);
  }
  
  #gallery-teaser .muted {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    padding: 0 var(--space-sm);
  }
  
  #gallery-teaser .btn-outline {
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  #gallery-teaser .btn-outline {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.95rem;
    background: rgba(0,0,0,0.25);
    color: #fff;
    border-color: rgba(255,255,255,0.7);
  }
  
  #gallery-teaser .muted {
    font-size: 0.95rem;
  }

  /* Gallery Page Responsive */
  .gallery-header {
    margin-bottom: 2rem;
  }
  
  .gallery-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .gallery-filters {
    gap: 0.25rem;
    margin-bottom: 1.5rem;
  }
  
  .filter-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .gallery-search {
    margin: 0 1rem 2rem;
    max-width: none;
  }
  
  .gallery-masonry {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
  
  .gi-thumb {
    aspect-ratio: 3/2;
  }
  
  .gi-play-btn {
    width: 50px;
    height: 50px;
  }
  
  .gi-info {
    padding: 0.75rem;
  }
  
  .gi-title {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .footer-content { text-align: center; }
  .footer-logo { margin-left: auto; margin-right: auto; height: 80px; }
  .footer-links { grid-template-columns: 1fr; }
}
.footer-brand p { font-size: var(--font-size-small); opacity: 0.75; max-width: 460px; }

/* Map embed */
.footer-map-embed { border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-soft); margin-top: var(--space-sm); }
.footer-map-embed iframe { width: 100%; aspect-ratio: 16/9; border: 0; }
/* Lightbox structure (current HTML: .lb-stage, .lb-media, .nav, .close) */
.lightbox .lb-stage {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.lightbox .lb-media img,
.lightbox .lb-media video {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  box-shadow: var(--shadow-strong);
}

.lightbox .close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}

.lightbox .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}
.lightbox .nav.prev { left: 16px; }
.lightbox .nav.next { right: 16px; }

.lightbox .caption {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  z-index: 2;
}

@media (max-width: 768px) {
  .lightbox .nav { width: 48px; height: 48px; font-size: 24px; }
  .lightbox .nav.prev { left: 8px; }
  .lightbox .nav.next { right: 8px; }
  .lightbox .close { width: 40px; height: 40px; top: 12px; right: 12px; }
}
