/* ============================================================
   SINGK MALAYSIA — COMPONENTS
   Header, nav, hero, cards, badges, forms, etc.
   ============================================================ */

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  height: var(--header-h);
  background: color-mix(in srgb, var(--bg-0) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  max-width: 100vw;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--space-6);
  min-width: 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--text-1);
  flex-shrink: 1;
  min-width: 0;
}

.site-logo:hover { color: var(--neon-pink); text-decoration: none; }

.site-logo .logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* --- Primary Nav --- */
.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-nav > li {
  position: relative;
  margin: 0;
}

.primary-nav > li > a,
.nav-trigger {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color var(--duration-fast), background var(--duration-fast);
}

.primary-nav > li > a:hover,
.primary-nav > li > a:focus,
.nav-trigger:hover,
.nav-trigger:focus {
  color: var(--text-1);
  background: var(--bg-2);
  text-decoration: none;
}

.primary-nav > li > a[aria-current="page"],
.primary-nav > li > a.is-active {
  color: var(--neon-pink);
}

/* Dropdown chevron */
.nav-trigger .chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--duration-fast);
  flex-shrink: 0;
}

.nav-trigger[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

/* --- Mega Menu (Browse by State) --- */
.mega-menu {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-5);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  display: none;
  z-index: var(--z-dropdown);
}

.mega-menu.is-open { display: block; }

.mega-menu-title {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--space-3);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.mega-menu-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-2);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: background var(--duration-fast), color var(--duration-fast);
}

.mega-menu-link:hover, .mega-menu-link:focus {
  background: var(--bg-2);
  color: var(--text-1);
  text-decoration: none;
}

.mega-menu-link .state-badge {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--neon-pink);
  min-width: 28px;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.lang-btn {
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 600;
  background: none;
  border: 1px solid var(--line);
  color: var(--text-3);
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: none;
  transition: all var(--duration-fast);
}

.lang-btn.is-active,
.lang-btn:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  background: rgba(255, 62, 154, 0.08);
  text-decoration: none;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: none;
  cursor: pointer;
  color: var(--text-2);
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 var(--space-4);
    gap: 0;
  }

  /* Nav wrapper: zero flex basis so it takes no header space */
  .site-header nav {
    flex: 0 0 0px;
    overflow: visible;
  }

  .primary-nav {
    display: none;
  }

  .site-logo {
    font-size: var(--text-sm);
    gap: var(--space-2);
  }

  .site-logo .logo-icon {
    width: 24px;
    height: 24px;
  }

  .header-actions {
    flex-shrink: 0;
    gap: var(--space-2);
    margin-left: auto;
  }

  .lang-btn {
    padding: var(--space-1) var(--space-2);
    font-size: 0.625rem;
  }

  .nav-toggle {
    width: 34px;
    height: 34px;
  }

  .nav-toggle { display: flex; }

  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100vw;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    background: var(--bg-0);
    padding: var(--space-5) var(--space-6);
    overflow-y: auto;
    z-index: 99999;
    gap: 0;
    list-style: none;
  }

  .primary-nav.is-open > li {
    border-bottom: 1px solid var(--line);
  }

  .primary-nav.is-open > li:last-child {
    border-bottom: none;
  }

  .primary-nav.is-open > li > a,
  .primary-nav.is-open .nav-trigger {
    font-size: var(--text-base);
    font-weight: 600;
    padding: var(--space-4) 0;
    width: 100%;
    justify-content: space-between;
    color: var(--text-1);
  }

  .primary-nav.is-open > li > a:hover,
  .primary-nav.is-open .nav-trigger:hover {
    color: var(--neon-pink);
  }

  /* --- Mobile mega-menu (Browse by State submenu) --- */
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--bg-1);
    padding: var(--space-3) var(--space-4);
    margin-bottom: var(--space-3);
  }

  .mega-menu-title {
    font-size: 0.625rem;
    margin-bottom: var(--space-2);
    padding-left: var(--space-2);
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mega-menu-link {
    padding: var(--space-3) var(--space-2);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-2);
    border-bottom: 1px solid rgba(44, 33, 71, 0.5);
  }

  .mega-menu-link:last-child {
    border-bottom: none;
  }

  .mega-menu-link:hover,
  .mega-menu-link:focus {
    background: var(--bg-2);
    color: var(--neon-pink);
  }

  .mega-menu-link .state-badge {
    font-size: var(--text-xs);
    color: var(--neon-pink);
    min-width: 32px;
  }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-3);
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0;
}

.breadcrumb li::after {
  content: '/';
  color: var(--line);
}

.breadcrumb li:last-child::after { display: none; }

.breadcrumb a {
  color: var(--text-3);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--neon-cyan); }
.breadcrumb [aria-current="page"] { color: var(--text-2); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding: var(--space-24) var(--space-6) var(--space-20);
  overflow: hidden;
  text-align: center;
  max-width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 62, 154, 0.18) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 80% 80%, rgba(39, 225, 250, 0.10) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw-text);
  margin: 0 auto;
}

.hero h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: var(--text-xl);
  color: var(--text-2);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* Sound wave SVG */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  pointer-events: none;
  opacity: 0.3;
}

.wave-bar {
  fill: var(--neon-pink);
  transform-origin: bottom;
}

/* ============================================================
   BUTTONS & CTAs
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--neon-pink);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(255, 62, 154, 0);
}

.btn-primary:hover, .btn-primary:focus {
  background: #ff5aab;
  box-shadow: 0 4px 24px rgba(255, 62, 154, 0.45);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--line);
}

.btn-secondary:hover, .btn-secondary:focus {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

/* ============================================================
   BADGES
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.badge-family {
  background: rgba(91, 228, 155, 0.12);
  color: var(--family);
  border: 1px solid rgba(91, 228, 155, 0.3);
}

.badge-lounge {
  background: rgba(245, 196, 107, 0.12);
  color: var(--gold);
  border: 1px solid rgba(245, 196, 107, 0.3);
}

.badge-age {
  background: rgba(255, 107, 107, 0.12);
  color: #FF6B6B;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.badge-verify {
  background: rgba(143, 134, 168, 0.12);
  color: var(--text-3);
  border: 1px solid var(--line);
}

/* Price tier chips */
.price-tier {
  display: inline-flex;
  gap: 2px;
  font-size: var(--text-sm);
  font-weight: 700;
}

.price-tier .rm {
  color: var(--neon-pink);
}

.price-tier .rm.dim {
  color: var(--line);
}

/* ============================================================
   CARDS
   ============================================================ */

.card {
  background: color-mix(in srgb, var(--bg-1) 85%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-6);
  transition: box-shadow var(--duration-base) var(--ease-out),
              border-color var(--duration-base),
              transform var(--duration-base) var(--ease-out);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 62, 154, 0.3);
  transform: translateY(-2px);
}

/* Venue card */
.venue-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  text-decoration: none;
  color: inherit;
}

.venue-card:hover { text-decoration: none; color: inherit; }

.guide-card {
  text-decoration: none;
  color: inherit;
}

.guide-card:hover { text-decoration: none; color: inherit; }

.venue-card-image {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
  overflow: hidden;
  background: var(--bg-2);
  margin: calc(-1 * var(--space-6)) calc(-1 * var(--space-6)) var(--space-5);
}

.venue-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.venue-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  align-items: center;
}

.venue-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  color: var(--text-1);
}

.venue-card-meta {
  font-size: var(--text-sm);
  color: var(--text-3);
  margin-bottom: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  align-items: center;
}

.venue-card-meta svg {
  display: inline;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 2px;
  flex-shrink: 0;
}

.venue-card-desc {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.6;
  flex: 1;
}

.venue-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  font-size: var(--text-sm);
  gap: var(--space-3);
}

/* State card */
.state-card {
  text-decoration: none;
  color: inherit;
}

.state-card:hover { text-decoration: none; color: inherit; }

.state-card-count {
  font-size: var(--text-sm);
  color: var(--text-3);
  margin-top: var(--space-2);
}

.state-card h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

/* ============================================================
   RATING (MIC ICONS)
   ============================================================ */

.rating-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: var(--space-4);
}

.rating-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.rating-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}

.mic-row {
  display: flex;
  gap: 3px;
  align-items: center;
}

.mic-icon {
  width: 16px;
  height: 20px;
  flex-shrink: 0;
}

.mic-icon.filled path { fill: var(--gold); }
.mic-icon.empty path  { fill: var(--line); }
.mic-icon.half path:first-child { fill: var(--gold); }
.mic-icon.half path:last-child  { fill: var(--line); }

.rating-not-yet {
  font-size: var(--text-sm);
  color: var(--text-3);
  font-style: italic;
}

/* ============================================================
   QUICK FACTS BOX
   ============================================================ */

.quick-facts {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-6);
  margin: var(--space-8) 0;
}

.quick-facts-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--space-5);
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-5);
}

.quick-fact {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.quick-fact-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}

.quick-fact-value {
  font-size: var(--text-sm);
  color: var(--text-2);
  font-weight: 500;
}

.quick-fact-value a {
  color: var(--neon-cyan);
}

/* ============================================================
   PROS & CONS
   ============================================================ */

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin: var(--space-8) 0;
}

@media (max-width: 540px) {
  .pros-cons { grid-template-columns: 1fr; }
}

.pros-block, .cons-block {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-5);
}

.pros-block { border-top: 3px solid var(--family); }
.cons-block { border-top: 3px solid var(--error); }

.pros-cons-title {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.pros-block .pros-cons-title { color: var(--family); }
.cons-block .pros-cons-title { color: var(--error); }

.pros-cons-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pros-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-2);
  margin: 0;
}

.pros-cons-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.pros-block .pros-cons-list li::before {
  background-color: rgba(91, 228, 155, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%235BE49B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cons-block .pros-cons-list li::before {
  background-color: rgba(255, 107, 107, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5L8.5 8.5M8.5 1.5L1.5 8.5' stroke='%23FF6B6B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}

.faq-item {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--duration-fast);
}

.faq-item:hover {
  border-color: var(--neon-pink);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5);
  cursor: pointer;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-1);
  list-style: none;
  gap: var(--space-4);
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--text-3);
  transition: transform var(--duration-fast);
}

.faq-item[open] summary { color: var(--neon-pink); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--neon-pink); }

.faq-body {
  padding: 0 var(--space-5) var(--space-5);
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.7;
}

.faq-body p { max-width: none; }
.faq-body p:last-child { margin-bottom: 0; }

/* ============================================================
   SOURCES BOX
   ============================================================ */

.sources-box {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: var(--space-5);
  margin: var(--space-8) 0;
  font-size: var(--text-sm);
}

.sources-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--space-3);
}

.sources-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sources-list li { margin: 0; }

.sources-list a {
  color: var(--neon-cyan);
  word-break: break-all;
}

/* ============================================================
   AUTHOR BOX
   ============================================================ */

.author-box {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-6);
  margin: var(--space-8) 0;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-2);
  flex-shrink: 0;
  overflow: hidden;
}

.author-info { flex: 1; }

.author-name {
  font-weight: 700;
  color: var(--text-1);
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.author-bio {
  font-size: var(--text-sm);
  color: var(--text-3);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   VERIFICATION / NOINDEX BANNER
   ============================================================ */

.verify-banner {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: rgba(245, 196, 107, 0.08);
  border: 1px solid rgba(245, 196, 107, 0.25);
  border-radius: var(--radius-sm);
  padding: var(--space-4) var(--space-5);
  margin: var(--space-6) 0;
  font-size: var(--text-sm);
  color: var(--text-2);
}

.verify-banner svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */

.comparison-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin: var(--space-8) 0;
  width: 100%;
}

.comparison-table {
  white-space: nowrap;
  width: 100%;
  min-width: 100%;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  position: sticky;
  left: 0;
  background: var(--bg-1);
  z-index: 1;
  min-width: 180px;
  white-space: normal;
}

.comparison-table thead tr {
  background: var(--bg-2);
}

.check-yes { color: var(--family); font-weight: 700; }
.check-no  { color: var(--text-3); }

/* ============================================================
   RELATED VENUES RAIL
   ============================================================ */

.related-rail {
  margin: var(--space-10) 0;
}

.related-rail-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-5);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: var(--space-5);
}

/* ============================================================
   FILTER CHIPS
   ============================================================ */

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-6) 0;
}

.chip {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  background: none;
  color: var(--text-3);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--duration-fast);
}

.chip:hover,
.chip.is-active {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  background: rgba(255, 62, 154, 0.08);
}

/* ============================================================
   LAST VERIFIED / DISCLAIMER FOOTER
   ============================================================ */

.page-meta {
  font-size: var(--text-xs);
  color: var(--text-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--line);
  margin-top: var(--space-8);
}

.page-meta a { color: var(--text-3); }
.page-meta a:hover { color: var(--neon-cyan); }

/* ============================================================
   CALCULATOR (price page)
   ============================================================ */

.price-calc {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-6);
  margin: var(--space-8) 0;
}

.calc-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: var(--space-5);
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.calc-field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--space-2);
}

.calc-field input,
.calc-field select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text-1);
  font-size: var(--text-base);
  font-family: var(--font-body);
  transition: border-color var(--duration-fast);
}

.calc-field input:focus,
.calc-field select:focus {
  border-color: var(--neon-pink);
  outline: none;
}

.calc-result {
  padding: var(--space-4);
  background: var(--bg-2);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--text-2);
}

.calc-total {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-1);
  font-family: var(--font-head);
}

/* ============================================================
   GOOGLE MAPS EMBED
   ============================================================ */

.map-embed {
  margin: var(--space-5) 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-width: 100%;
}

.map-embed iframe {
  display: block;
  width: 100%;
}

/* ============================================================
   SECTION HEADING WITH NEON UNDERLINE
   ============================================================ */

.section-heading {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-6);
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  border-radius: 2px;
  transform-origin: left;
  /* GSAP animates scaleX from 0 to 1 */
}

/* ============================================================
   MALAYSIA MAP (inline SVG wrapper)
   ============================================================ */

.malaysia-map-wrap {
  max-width: 640px;
  margin: var(--space-10) auto;
}

.malaysia-map-wrap svg {
  width: 100%;
  height: auto;
}

.map-state {
  fill: var(--bg-2);
  stroke: var(--line);
  stroke-width: 1.5;
  cursor: pointer;
  transition: fill var(--duration-base);
}

.map-state.is-active {
  fill: rgba(255, 62, 154, 0.2);
  stroke: var(--neon-pink);
  filter: drop-shadow(0 0 8px rgba(255, 62, 154, 0.4));
}

.map-state:hover {
  fill: rgba(255, 62, 154, 0.15);
  stroke: var(--neon-pink);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */

.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-sticky);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-1);
  border: 1px solid var(--line);
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity var(--duration-base), transform var(--duration-base), box-shadow var(--duration-base);
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.back-to-top:hover {
  box-shadow: var(--shadow-glow);
  text-decoration: none;
  color: var(--neon-pink);
}

/* ============================================================
   GOOGLE MAPS CTA
   ============================================================ */

.map-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  transition: all var(--duration-fast);
}

.map-cta:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  text-decoration: none;
}

/* ============================================================
   CARD GRID (GSAP batch target)
   ============================================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: var(--space-6);
}

/* Hidden initial state — only applied when JS loads */
.js .gsap-reveal {
  opacity: 0;
  transform: translateY(24px);
}

/* ============================================================
   VENUE REVIEW IMAGE
   ============================================================ */

.venue-hero-img {
  margin: var(--space-6) 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-2);
}

.venue-hero-img figure {
  margin: 0;
  width: 100%;
  height: 100%;
}

.venue-hero-img picture {
  display: block;
  width: 100%;
  height: 100%;
}

.venue-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.venue-hero-img .img-credit {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-2) var(--space-4);
  background: rgba(0, 0, 0, 0.6);
  color: var(--text-3);
  font-size: var(--text-xs);
  margin: 0;
}

.venue-hero-img .img-credit a {
  color: var(--text-3);
}

/* ============================================================
   PLACEHOLDER IMAGE (SVG)
   ============================================================ */

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-2) 0%, #2a1d4a 100%);
  color: var(--text-3);
  gap: var(--space-3);
  font-size: var(--text-sm);
  text-align: center;
  padding: var(--space-4);
}

.img-placeholder .placeholder-icon {
  opacity: 0.4;
}

/* ============================================================
   UTILITIES
   ============================================================ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-right  { text-align: right; }

.mt-auto { margin-top: auto; }
.ml-auto { margin-left: auto; }

.font-head { font-family: var(--font-head); }

.neon-pink { color: var(--neon-pink); }
.neon-cyan { color: var(--neon-cyan); }
.gold      { color: var(--gold); }
.text-muted { color: var(--text-3); }
