/* ═══════════════════════════════════════════════════════════
   POPULAR LOCATIONS PAGE – PAGE-SPECIFIC STYLES
   นำเข้าเฉพาะ styles ที่เป็นของหน้านี้เท่านั้น
   Global styles (navbar, footer, buttons, utilities) อยู่ใน css/app.css
═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   BANGKOK HERO SLIDER
═══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ── Shell ── */
.bkk-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  background: #0a0a0a;
  margin-top: 68px;
  /* navbar height */
}

@media (max-width: 768px) {
  .bkk-hero {
    height: 92svh;
    min-height: 520px;
    max-height: none;
  }
}

/* ── Slides ── */
.bkk-slides {
  position: absolute;
  inset: 0;
}

.bkk-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .9s var(--ease);
  will-change: opacity;
}

.bkk-slide.active {
  opacity: 1;
}

.bkk-slide .bkk-slide-zoom {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 7s ease;
}

.bkk-slide.active .bkk-slide-zoom {
  transform: scale(1.06);
}

/* ── Master overlay ── */
.bkk-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(5, 5, 5, .80) 0%, rgba(5, 5, 5, .35) 55%, rgba(5, 5, 5, .10) 100%),
    linear-gradient(to top, rgba(5, 5, 5, .70) 0%, transparent 45%);
}

@media (max-width: 900px) {
  .bkk-overlay {
    background:
      linear-gradient(to top, rgba(5, 5, 5, .85) 0%, rgba(5, 5, 5, .50) 50%, rgba(5, 5, 5, .20) 100%);
  }
}

/* ── Progress bar ── */
.bkk-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, .12);
  z-index: 10;
}

.bkk-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
  transition: width linear;
}

/* ═══════════════════════════════════════════════════════════
   BKK HERO — CONTAINER WRAPPER
   ใช้ .bkk-inner เป็น container-xl สำหรับ content ทั้งหมด
   ยกเว้น slides (bg) และ rail ที่ต้องการ full-width / positioned
═══════════════════════════════════════════════════════════ */
.bkk-inner {
  position: absolute;
  inset: 0;
  z-index: 6;
  /* เหนือ overlay (z:1) แต่ใต้ rail (z:7) */
  pointer-events: none;
  /* ให้ pointer ทะลุถึง slide */
  display: flex;
  align-items: stretch;
}

/* wrapper ที่จำลอง container-xl พอดี */
.bkk-inner-xl {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  display: flex;
  align-items: stretch;
  pointer-events: none;
}

@media (max-width: 768px) {
  .bkk-inner-xl {
    padding: 0 16px;
  }
}

/* ── Header label (top) ── */
/* ย้ายเข้า bkk-inner-xl แล้ว ดังนั้น reset position เดิม */
.bkk-header-label {
  position: absolute;
  top: 28px;
  left: 24px;   /* align กับ container padding */
  right: 24px;  /* align กับ container padding */
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;

  /* constrain ตาม container-xl */
  max-width: calc(1280px - 48px);   /* 1280 - padding 2 ข้าง */
  margin-left: auto;
  margin-right: auto;
  /* left/right ทำหน้าที่ anchor แล้ว ใช้ margin:auto ด้วยไม่ได้พร้อมกัน
     ใช้ inset-inline แทน */
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 48px), 1280px);
}

@media (max-width: 768px) {
  .bkk-header-label {
    width: calc(100% - 32px);
    top: 20px;
  }
}

.bkk-hl-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

.bkk-dot-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: livePulse 1.6s ease-in-out infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .35;
  }
}

.bkk-hl-count {
  font-size: .9rem;
  color: rgba(255, 255, 255, .4);
  font-weight: 600;
  letter-spacing: .05em;
}

.bkk-hl-count #bkkCur {
  font-size: 1.15rem;
  color: var(--gold-light);
  font-weight: 800;
}

.bkk-sep {
  margin: 0 4px;
}

/* ── Main content ── */
/*
  เดิม: position absolute left:40px
  ใหม่: อยู่ใน container-xl wrapper (.bkk-inner-xl) แบบ absolute bottom
  ให้ pointer-events กลับมาที่ content เท่านั้น
*/
.bkk-content {
  position: absolute;
  bottom: 80px;
  /* ใช้ left ตาม container padding แทน 40px เดิม */
  left: 24px;
  z-index: 6;
  max-width: 560px;
  pointer-events: auto;

  /* constrain ให้อยู่ใน container-xl */
  /* technique: ขยับ left ให้ตรงกับ container */
  left: 50%;
  transform: translateX(calc(-640px));  /* -1280px/2 */
  padding-left: 24px;
  /* fallback สำหรับจอเล็กกว่า 1280px */
}

/*
  วิธีที่ clean กว่า: ใช้ pseudo-container
  reset แล้วใช้ margin-based centering
*/
.bkk-content {
  position: absolute;
  bottom: 80px;
  /* left: 0;
  right: 0; */
  z-index: 6;
  pointer-events: none;  /* container เองไม่ block */

  /* จำลอง container-xl */
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;

  /* content จริงอยู่ด้านซ้ายของ container */
  display: flex;
  align-items: flex-end;
}

.bkk-content-inner {
  max-width: 560px;
  pointer-events: auto;
  padding-right: 160px; /* เว้นที่ให้ rail + arrows */
}

@media (max-width: 900px) {
  .bkk-content {
    padding: 0 20px;
    bottom: 72px;
  }
  .bkk-content-inner {
    max-width: none;
    width: 100%;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .bkk-content {
    padding: 0 16px;
  }
}

.bkk-zone-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--dark);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  animation: fadeUp .5s var(--ease-out) both;
}

.bkk-name {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 12px;
  letter-spacing: -.01em;
  animation: fadeUp .5s var(--ease-out) .07s both;
}

.bkk-tagline {
  font-size: .92rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 420px;
  animation: fadeUp .5s var(--ease-out) .13s both;
}

@media (max-width: 600px) {
  .bkk-tagline {
    display: none;
  }
}

/* stats row */
.bkk-stats-row {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  animation: fadeUp .5s var(--ease-out) .18s both;
}

.bkk-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bkk-stat-n {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.bkk-stat-l {
  font-size: .62rem;
  color: rgba(255, 255, 255, .38);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* CTA button */
.bkk-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, .95);
  color: var(--dark);
  border-radius: 50px;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  overflow: hidden;
  transition: all .3s var(--ease);
  animation: fadeUp .5s var(--ease-out) .22s both;
  border: none;
  cursor: pointer;
  font-family: 'IBM Plex Sans Thai', sans-serif;
}

.bkk-cta-btn span:first-child {
  padding: 13px 24px;
  transition: background .3s;
}

.bkk-btn-arrow {
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background .3s, transform .25s;
}

.bkk-cta-btn:hover span:first-child {
  background: var(--gold-pale);
  color: var(--dark);
}

.bkk-cta-btn:hover .bkk-btn-arrow {
  background: var(--gold-dark);
  transform: translateX(3px);
}

/* ── Vertical thumbnail rail (desktop right / mobile bottom) ── */
/* Rail ยังคง full-width positioned เหมือนเดิม */
.bkk-rail {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 130px;
  z-index: 7;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(to left, rgba(0, 0, 0, .55), transparent);
  padding: 80px 12px 12px;
  gap: 8px;
  overflow-y: auto;
  scrollbar-width: none;
}

.bkk-rail::-webkit-scrollbar {
  display: none;
}

@media (max-width: 900px) {
  .bkk-rail {
    top: auto;
    right: 0;
    left: 0;
    bottom: 3px;
    width: auto;
    height: 72px;
    flex-direction: row;
    padding: 8px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    align-items: center;
  }
}

/* rail thumbnail card */
.bkk-rail-item {
  font-family: 'IBM Plex Sans Thai', 'Noto Sans Thai', 'Sarabun', sans-serif;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .3s var(--ease);
  position: relative;
  height: 72px;
}

@media (min-width: 901px) {
  .bkk-rail-item {
    width: 106px;
    height: 68px;
  }
}

@media (max-width: 900px) {
  .bkk-rail-item {
    width: 96px;
    height: 56px;
    flex-shrink: 0;
  }
}

.bkk-rail-item.active {
  border-color: var(--gold);
}

.bkk-rail-item.active .bkk-rail-img {
  transform: scale(1.05);
}

.bkk-rail-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .35s var(--ease);
}

.bkk-rail-label-wrap {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 6px 8px;
  transition: background .3s;
}

.bkk-rail-item:hover .bkk-rail-label-wrap {
  background: linear-gradient(to top, rgba(0, 0, 0, .5) 0%, transparent 55%);
}

.bkk-rail-item.active .bkk-rail-label-wrap {
  background: linear-gradient(to top, rgba(0, 0, 0, .4) 0%, transparent 50%);
}

.bkk-rail-label {
  font-size: .6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.bkk-rail-item.active .bkk-rail-label {
  color: #fff;
}

/* ── Arrow controls ── */
/*
  ย้าย arrows ให้อยู่ใน container-xl
  โดย position absolute ภายใน bkk-hero แต่คำนวณ right ให้ตรงกับ container
*/
.bkk-arrows {
  position: absolute;
  /* วางอยู่ทางขวา ด้านในของ container-xl ก่อนถึง rail */
  right: calc(130px + 18px);  /* rail width + gap */
  bottom: 40px;
  z-index: 8;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (min-width: 1280px) {
  /* เมื่อหน้าจอกว้างกว่า container ให้ arrows อยู่ที่ตำแหน่ง container right */
  .bkk-arrows {
    right: calc((100vw - 1280px) / 2 + 130px + 18px);
  }
}

@media (max-width: 900px) {
  .bkk-arrows {
    display: none;
  }
}

.bkk-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all .25s var(--ease);
  backdrop-filter: blur(6px);
}

.bkk-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

/* ── Scroll hint ── */
.bkk-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

@media (max-width: 900px) {
  .bkk-scroll-hint {
    display: none;
  }
}

.bkk-scroll-hint span {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .28);
}

.bkk-mouse {
  width: 20px;
  height: 32px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, .25);
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.bkk-mouse-wheel {
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .4);
  animation: mouseWheel 1.8s ease-in-out infinite;
}

@keyframes mouseWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   CINEMA SHOWCASE
═══════════════════════════════════════════════════════════ */
.loc-cinema {
  padding: 80px 0 0;
  background: var(--white);
}

.cinema-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
  flex-wrap: wrap;
}

.ch-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cinema-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all .25s var(--ease);
}

.cinema-nav-btn:hover {
  background: var(--gold);
  color: white;
}

.cinema-nav-btn:disabled {
  opacity: .25;
  cursor: not-allowed;
  border-color: var(--border);
  color: var(--text-light);
}

.cinema-counter {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 52px;
}

.cinema-counter span:first-child {
  color: var(--gold-dark);
  font-size: 1rem;
  font-weight: 700;
}

/* ── STAGE ── full-width cinematic, แต่ content ใน container-xl ── */
.cinema-stage {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
}

@media (max-width: 768px) {
  .cinema-stage {
    height: 420px;
  }
}

@media (max-width: 480px) {
  .cinema-stage {
    height: 320px;
  }
}

.cinema-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transform: scale(1.02);
}

.cinema-slide.active {
  opacity: 1;
  transform: scale(1);
}

.cinema-slide.prev {
  opacity: 0;
  transform: scale(.98);
}

.cinema-slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.cinema-slide.active .cinema-slide-img {
  transform: scale(1.05);
}

.cinema-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(10, 10, 10, .82) 0%,
      rgba(10, 10, 10, .4) 50%,
      rgba(10, 10, 10, .1) 100%);
}

@media (max-width: 768px) {
  .cinema-slide-overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, .85) 0%, rgba(10, 10, 10, .3) 60%, rgba(10, 10, 10, .1) 100%);
  }
}

/*
  cinema-slide-content: เดิม padding: 48px 56px
  ใหม่: ใช้ container-xl pattern — absolute inset-0, display flex, align bottom
  แล้ว inner div มี max-width + padding เหมือน container-xl
*/
.cinema-slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;

  /* จำลอง container-xl */
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 24px 48px;
  pointer-events: none;
}

/* inner wrapper เพื่อ pointer-events กลับมา */
.cinema-slide-content-inner {
  max-width: 640px;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .cinema-slide-content {
    padding: 0 20px 28px;
    left: 0;
    transform: none;
    max-width: none;
  }
  .cinema-slide-content-inner {
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cinema-slide-content {
    padding: 0 16px 24px;
  }
}

/* rank badge — ยังคง absolute ทางขวา แต่ใช้ container right edge */
.csc-badge {
  position: absolute;
  top: 40px;
  right: 24px;  /* align กับ container padding */
  text-align: right;
  z-index: 3;
  pointer-events: none;
}

/* center ตาม container */
@media (min-width: 1280px) {
  .csc-badge {
    right: calc((100vw - 1280px) / 2 + 24px);
  }
}

@media (max-width: 768px) {
  .csc-badge {
    top: 20px;
    right: 20px;
  }
}

.csc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--dark);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  width: -moz-fit-content;
  width: fit-content;
}

.csc-name {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 12px;
  font-family: 'IBM Plex Sans Thai', sans-serif;
}

.csc-name em {
  font-style: italic;
  font-family: 'IBM Plex Sans Thai', serif;
  color: var(--gold-light);
}

.csc-desc {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .csc-desc {
    display: none;
  }
}

.csc-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.csc-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.csc-stat-n {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.csc-stat-l {
  font-size: .68rem;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.csc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--dark);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s var(--ease);
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  font-family: 'IBM Plex Sans Thai', sans-serif;
}

.csc-btn:hover {
  background: var(--gold);
  color: white;
  transform: translateX(4px);
}

.csc-btn i {
  transition: transform .25s var(--ease);
}

.csc-btn:hover i {
  transform: translateX(4px);
}

.csc-badge-rank {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .06);
  line-height: 1;
  font-family: 'IBM Plex Sans Thai', serif;
}

.csc-badge-label {
  font-size: .65rem;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* THUMBNAIL STRIP */
.cinema-thumbs {
  display: flex;
  gap: 12px;
  padding: 24px 0 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.cinema-thumbs::-webkit-scrollbar {
  display: none;
}

.cinema-thumb {
  flex: 0 0 160px;
  height: 96px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all .3s var(--ease);
}

@media (max-width: 768px) {
  .cinema-thumb {
    flex: 0 0 120px;
    height: 72px;
  }
}

.cinema-thumb-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .4s var(--ease);
}

.cinema-thumb:hover .cinema-thumb-img {
  transform: scale(1.08);
}

.cinema-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  transition: background .3s;
  display: flex;
  align-items: flex-end;
  padding: 8px;
}

.cinema-thumb:hover .cinema-thumb-overlay,
.cinema-thumb.active .cinema-thumb-overlay {
  background: rgba(0, 0, 0, .2);
}

.cinema-thumb.active {
  border-color: var(--gold);
}

.cinema-thumb.active .cinema-thumb-overlay {
  background: rgba(0, 0, 0, .15);
}

.cinema-thumb-name {
  font-size: .65rem;
  font-weight: 600;
  color: white;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════════════════════ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.section-title-th {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  padding: 8px 18px;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  transition: all .25s;
  white-space: nowrap;
}

.btn-view-all:hover {
  background: var(--gold);
  color: white;
}

/* ═══════════════════════════════════════════════════════════
   EXPLORE GRID
═══════════════════════════════════════════════════════════ */
.loc-explore {
  padding: 80px 0;
  background: var(--bg-light);
}

.explore-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
  flex-wrap: wrap;
}

.explore-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ef-btn {
  padding: 7px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s var(--ease);
  font-family: 'IBM Plex Sans Thai', sans-serif;
}

.ef-btn:hover,
.ef-btn.active {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-pale);
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1100px) {
  .explore-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .explore-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

.eg-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .35s var(--ease);
  opacity: 0;
  transform: translateY(20px);
  text-decoration: none;
}

.eg-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.eg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(215, 166, 92, .3);
}

.eg-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  transition: transform .5s var(--ease);
  position: relative;
}

.eg-card:hover .eg-card-img {
  transform: scale(1.06);
}

@media (max-width: 480px) {
  .eg-card-img {
    height: 130px;
  }
}

.eg-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .5) 0%, transparent 60%);
}

.eg-rank {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
}

.eg-card-body {
  padding: 14px 16px 16px;
}

.eg-province {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

.eg-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

@media (max-width: 480px) {
  .eg-name {
    font-size: .9rem;
  }
}

.eg-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.eg-tag {
  font-size: .6rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 50px;
  background: var(--bg-light);
  color: var(--text-muted);
}

.eg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.eg-count {
  font-size: .72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.eg-count i {
  color: var(--gold);
  font-size: .78rem;
}

.eg-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .8rem;
  transition: all .25s;
}

.eg-card:hover .eg-arrow {
  border-color: var(--gold);
  background: var(--gold);
  color: white;
}

/* ═══════════════════════════════════════════════════════════
   INSIGHTS SECTION
═══════════════════════════════════════════════════════════ */
.loc-insights {
  padding: 80px 0;
  background: var(--white);
}

.insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
  flex-wrap: wrap;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .insights-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
}

@media (max-width: 600px) {
  .insights-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

.ins-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ins-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(215, 166, 92, .25);
}

.ins-card.featured {
  grid-row: span 1;
}

.ins-img {
  height: 200px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.ins-card.featured .ins-img {
  height: 220px;
}

.ins-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .45) 0%, transparent 50%);
}

.ins-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--dark);
  font-size: .65rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.ins-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.ins-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.ins-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  color: var(--text-muted);
}

.ins-meta i {
  color: var(--gold);
  font-size: .75rem;
}

.ins-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-shrink: 0;
}

.ins-card.featured .ins-title {
  font-size: 1.05rem;
  -webkit-line-clamp: 3;
}

.ins-excerpt {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.ins-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gold-dark);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap .2s;
  margin-top: 14px;
  flex-shrink: 0;
}

.ins-read-more:hover {
  gap: 10px;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════ */
.loc-cta-section {
  padding: 60px 0 80px;
  background: var(--bg-light);
}

.loc-cta-card {
  border-radius: var(--radius);
  background: var(--dark);
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

@media (max-width: 900px) {
  .loc-cta-card {
    flex-direction: column;
    padding: 40px 28px;
    gap: 32px;
  }
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 80% 50%, rgba(215, 166, 92, .08) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(215, 166, 92, .04) 0%, transparent 40%);
}

.cta-bg-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(215, 166, 92, .06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.cta-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.cta-eyebrow {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-title em {
  font-style: italic;
  color: var(--gold-light);
  font-family: 'IBM Plex Sans Thai', serif;
}

.cta-desc {
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .6);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.cta-link:hover {
  color: var(--gold);
}

.cta-link i {
  transition: transform .2s;
}

.cta-link:hover i {
  transform: translateX(4px);
}

.cta-visual {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 220px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .cta-visual {
    width: 100%;
    max-width: 360px;
    height: 160px;
  }
}

@media (max-width: 600px) {
  .cta-visual {
    display: none;
  }
}

.cta-map-dots {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: mapPulse 2s ease-in-out infinite;
}

.map-dot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(215, 166, 92, .2);
  animation: mapRing 2s ease-in-out infinite;
}

@keyframes mapPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: .7;
  }
}

@keyframes mapRing {
  0% {
    transform: scale(0.8);
    opacity: .6;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer-main {
  background: var(--dark);
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: .88rem;
  color: #8a8a8a;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-contact {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: #8a8a8a;
  margin-bottom: 8px;
}

.contact-item i {
  color: var(--gold);
  width: 16px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8a8a;
  text-decoration: none;
  font-size: .85rem;
  transition: all .25s;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.footer-heading {
  font-size: .85rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #8a8a8a;
  text-decoration: none;
  font-size: .85rem;
  transition: all .2s;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-bottom p {
  color: #666;
  font-size: .82rem;
  margin: 0;
}

.footer-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  color: #666;
  border: 1px solid #333;
  padding: 4px 10px;
  border-radius: 4px;
}

.footer-badge i {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   MOBILE BOTTOM NAV & FAB
═══════════════════════════════════════════════════════════ */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: white;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .08);
}

.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: .65rem;
  font-weight: 600;
  padding: 8px 12px;
}

.mob-nav-item i {
  font-size: 1.3rem;
}

.mob-nav-item.active {
  color: var(--gold-dark);
}

.mob-nav-item.active i {
  color: var(--gold);
}

.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 40px;
  z-index: 500;
}

.fab {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: all .2s;
}

.fab:hover {
  transform: scale(1.1) translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   TRANSITIONS & ANIMATIONS
═══════════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.eg-card {
  transition-delay: calc(var(--delay, 0) * .06s) !important;
}

