/* VR Fun House Bangkok — Styles v6 */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&family=Sarabun:wght@400;500;600;700&display=swap');

:root {
  --bg:     #060610;
  --bg2:    #0b0b1a;
  --bg3:    #0e0e20;
  --cyan:   #21d7e8;
  --pink:   #ff3dec;
  --gold:   #FF3DEC;  /* accent = cyber pink */
  --white:  #ffffff;
  --text:   rgba(255,255,255,.9);
  --muted:  rgba(255,255,255,.5);
  --card:   rgba(12,12,28,1);
  --card-b: rgba(255,255,255,.1);
  --font-d: 'Bebas Neue', sans-serif;
  --font-b: 'Inter', sans-serif;
  --font-th:'Sarabun', sans-serif;
  --r: 12px;
  --max: 1280px;
}

/* Image rendering optimisation */
img {
  image-rendering: auto;
  decoding: async;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--font-b);
  background: #060610;
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 15px;
}

/* Google Translate — hide the ugly default bar */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon { display:none !important; }
body { top: 0 !important; }
.goog-te-gadget { font-size: 0 !important; }
.goog-te-gadget select {
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  color: #fff !important;
  border-radius: 4px !important;
  padding: .35rem .6rem !important;
  font-size: .8rem !important;
  font-family: var(--font-b) !important;
  cursor: pointer;
  outline: none;
}

::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:var(--bg); }
::-webkit-scrollbar-thumb { background:var(--cyan); border-radius:2px; }

/* ── UTILITY ───────────────────────────────── */
.container { max-width:var(--max); margin:0 auto; padding:0 2rem; }
.text-gradient { background:linear-gradient(90deg,var(--cyan),var(--pink)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.section-label { font-size:.68rem; letter-spacing:4px; text-transform:uppercase; color:var(--cyan); margin-bottom:.75rem; display:block; font-weight:600; }
.section-header { text-align:center; margin-bottom:2rem; }
.section-title { font-family:var(--font-d); font-size:clamp(2rem,4.5vw,3.5rem); text-transform:uppercase; line-height:1.05; }
.section-sub { color:var(--muted); font-size:.95rem; margin-top:.7rem; max-width:600px; margin-left:auto; margin-right:auto; }

/* ── ANIMATIONS ────────────────────────────── */
@keyframes fadeUp    { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes glowPulse { 0%,100%{box-shadow:0 0 20px rgba(33,215,232,.15)} 50%{box-shadow:0 0 40px rgba(33,215,232,.35)} }
@keyframes floatUp   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes shimmer   { 0%{background-position:-200% center} 100%{background-position:200% center} }
@keyframes pulseDot { 0%,100%{opacity:.5} 50%{opacity:1} }
@keyframes scan { 0%{transform:translateY(-100%)} 100%{transform:translateY(100vh)} }

.animate-in { opacity:0; transform:translateY(20px); transition:opacity .55s ease, transform .55s ease; }
.animate-in.visible { opacity:1; transform:translateY(0); }
.animate-in:nth-child(2){transition-delay:.08s}
.animate-in:nth-child(3){transition-delay:.16s}
.animate-in:nth-child(4){transition-delay:.24s}

/* ── BUTTONS ───────────────────────────────── */
.btn-primary {
  display:inline-flex; align-items:center; gap:.45rem;
  padding:.72rem 1.75rem;
  background:var(--cyan); color:var(--bg);
  font-family:var(--font-b); font-size:.85rem; font-weight:700; letter-spacing:.5px;
  text-decoration:none; border:none; border-radius:5px;
  cursor:pointer; transition:all .25s; white-space:nowrap;
  position:relative; overflow:hidden;
}
.btn-primary::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent); transform:translateX(-100%); transition:transform .5s; }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(33,215,232,.4); }
.btn-primary:hover::after { transform:translateX(100%); }

.btn-outline {
  display:inline-flex; align-items:center; gap:.45rem;
  padding:.68rem 1.6rem;
  border:1px solid rgba(255,255,255,.25); color:var(--white);
  font-family:var(--font-b); font-size:.85rem; font-weight:600;
  text-decoration:none; border-radius:5px; background:transparent;
  cursor:pointer; transition:all .25s; white-space:nowrap;
}
.btn-outline:hover { border-color:var(--cyan); color:var(--cyan); background:rgba(33,215,232,.06); }

/* ── NAVBAR ────────────────────────────────── */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:9998;
  height:88px; background:transparent;
  transition:background .3s, backdrop-filter .3s;
}
.navbar.scrolled {
  background:rgba(6,6,16,.96);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(33,215,232,.08);
}
.navbar .container { display:flex; align-items:center; justify-content:space-between; height:100%; gap:1rem; padding-top:10px; padding-bottom:10px; }
.brand { display:flex; align-items:center; text-decoration:none; flex-shrink:0; }
.logo { height:42px; width:auto; }
.logo-fallback { display:none; font-family:var(--font-d); font-size:1.4rem; letter-spacing:2px; color:var(--cyan); }
.nav-menu { display:flex; align-items:center; gap:1.75rem; flex-wrap:nowrap; }
.nav-link {
  color:var(--muted); text-decoration:none; font-size:.85rem; font-weight:600;
  transition:color .25s; white-space:nowrap; position:relative;
}
.nav-link::after { content:''; position:absolute; bottom:-3px; left:0; width:0; height:1px; background:var(--cyan); transition:width .25s; }
.nav-link:hover, .nav-link.active { color:var(--cyan); }
.nav-link:hover::after, .nav-link.active::after { width:100%; }
.nav-btn { padding:.5rem 1.25rem; font-size:.82rem; }

/* Google Translate in navbar */
.nav-translate { display:flex; align-items:center; }

.menu-button { display:none; background:none; border:none; cursor:pointer; padding:.75rem; flex-shrink:0; position:relative; z-index:10000; -webkit-tap-highlight-color:transparent; touch-action:manipulation; }



/* ── HERO ──────────────────────────────────── */
.hero {
  min-height:100vh; position:relative;
  display:flex; align-items:center;
  background:var(--bg); overflow:hidden;
  padding:4px 0 0;
  isolation:isolate;
}
/* Outer page keeps the dark grid background */
.hero-bg {
  position:absolute; inset:0;
  background:var(--bg);
  pointer-events:none;
  z-index:0;
}
/* The hero CARD wraps all content in a rounded dark container */
.hero-card-wrap {
  position:relative; z-index:2;
  background:rgba(10,10,24,.92);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  overflow:hidden;
  padding:0;
  margin-top:0;
}
.hero-grid-lines { display:none; }
.hero-scan { display:none; }
.hero .container { position:relative; z-index:2; padding-top:0; width:100%; max-width:var(--max); padding-left:2rem; padding-right:2rem; }
.hero-inner { display:grid; grid-template-columns:1fr 1fr; gap:0; align-items:stretch; min-height:560px; }

/* LEFT CONTENT — padded inside the rounded card */
.hero-content { padding:3.5rem 3rem 3.5rem 3.5rem; display:flex; flex-direction:column; justify-content:center; }
.hero-badge-wrap { display:inline-flex; align-items:center; gap:.5rem; background:rgba(33,215,232,.08); border:1px solid rgba(33,215,232,.28); padding:.35rem .9rem; border-radius:3px; font-size:.62rem; letter-spacing:3px; text-transform:uppercase; color:var(--cyan); margin-bottom:1.1rem; font-weight:700; }
.hero-badge-dot { width:7px; height:7px; border-radius:50%; background:var(--cyan); animation:pulseDot 2s ease infinite; flex-shrink:0; }

/* Title: "ESCAPE" white, "REALITY" cyan — huge Bebas Neue */
.hero-title { font-family:var(--font-d); font-size:clamp(5rem,9vw,8.5rem); line-height:.88; text-transform:uppercase; margin-bottom:1rem; }
.hero-title .line1 { display:block; color:var(--white); }
.hero-title .line2 { display:block; color:var(--cyan); text-shadow:0 0 40px rgba(33,215,232,.35); }
.hero-title .line3 { display:block; color:var(--cyan); }

.hero-subtitle { color:var(--muted); font-size:.93rem; margin-bottom:1.75rem; line-height:1.7; max-width:460px; }
.hero-actions { display:flex; gap:.85rem; flex-wrap:wrap; margin-bottom:2rem; }

/* Stats: boxed pill style like screenshot */
.hero-stats { display:flex; gap:.75rem; flex-wrap:wrap; }
.hero-stat-pill {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:.7rem .9rem;
  border:1px solid rgba(255,255,255,.12);
  border-radius:8px;
  background:rgba(255,255,255,.03);
  min-width:80px; text-align:center;
}
.hero-stat-num { font-family:var(--font-d); font-size:1.9rem; color:var(--cyan); display:block; line-height:1; }
.hero-stat-label { font-size:.55rem; letter-spacing:1.5px; text-transform:uppercase; color:var(--muted); font-weight:600; margin-top:.25rem; line-height:1.3; }

/* ── HERO VISUAL — RIGHT PANEL (fully static, no animations) ── */
.hero-visual { position:relative; overflow:hidden; }
.hero-card-grid { height:100%; display:flex; flex-direction:column; gap:.75rem; }
/* Full-height right panel — flush, no border, no radius (card handles that) */
.hero-card-large {
  overflow:hidden; border:none; border-radius:0;
  position:relative; flex:1; min-height:560px; cursor:pointer;
}
/* Small row cards (kept for future use) */
.hero-card-row { display:grid; grid-template-columns:1fr 1fr; gap:.85rem; }
.hero-card {
  border-radius:14px; overflow:hidden; border:1px solid rgba(255,255,255,.1);
  position:relative; height:190px; cursor:pointer;
}
/* ALL images in hero: 100% fill, static, no motion */
.hero-card-large img,
.hero-card img {
  width:100%; height:100%; object-fit:cover; object-position:center; opacity:.92;
  display:block;
  transition:none !important; transform:none !important; animation:none !important;
}
/* Subtle gradient from left only (left text side bleeds slightly) */
.hero-card-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to right,rgba(10,10,24,.25) 0%,transparent 40%);
  pointer-events:none;
}
/* Label — bottom left */
.hero-card-label {
  position:absolute; bottom:1rem; left:1rem;
  font-family:var(--font-d); font-size:.82rem; letter-spacing:2.5px;
  text-transform:uppercase; color:var(--white); z-index:2;
}
/* Play button — static, cyan circle bottom right */
.hero-card-play {
  position:absolute; bottom:1rem; right:1rem;
  width:48px; height:48px;
  background:rgba(33,215,232,.2); border:1.5px solid rgba(33,215,232,.55);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:var(--cyan); z-index:2;
  transition:none !important; transform:none !important;
}
/* HARD LOCK — zero motion on entire hero-visual */
.hero-visual, .hero-visual *, .hero-visual *::before, .hero-visual *::after {
  transition:none !important; transform:none !important;
  animation:none !important; will-change:auto !important;
}
@media(max-width:900px) {
  .hero-inner { grid-template-columns:1fr; }
  .hero-visual { display:block; }
  .hero-content { padding:2.5rem 2rem 3rem; }
  .hero-stats { flex-wrap:wrap; gap:.65rem; }
  .hero-stat-pill { min-width:70px; }
  .hero-card-wrap { border-radius:14px; }
  .hero { padding-top:88px; }
}

/* ── HOMEPAGE PROMOTION CARDS ─────────────── */
.homepage-cards { padding:0 0 3rem; background:var(--bg); }
.homepage-cards .container { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }

.hp-card {
  border-radius:18px; padding:2.5rem 2rem 2rem;
  position:relative; overflow:hidden;
  min-height:260px; display:flex; flex-direction:column; justify-content:space-between;
}
.hp-card.teal { background:linear-gradient(135deg,rgba(0,40,50,.95) 0%,rgba(0,30,45,.9) 100%); border:1px solid rgba(33,215,232,.18); }
.hp-card.purple { background:linear-gradient(135deg,rgba(45,0,80,.95) 0%,rgba(35,0,65,.9) 100%); border:1px solid rgba(255,61,236,.18); }
.hp-card-tag {
  display:inline-block; padding:.22rem .75rem; border-radius:50px;
  font-size:.6rem; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  margin-bottom:1.2rem; width:fit-content;
}
.hp-card.teal .hp-card-tag { background:rgba(33,215,232,.15); color:var(--cyan); border:1px solid rgba(33,215,232,.3); }
.hp-card.purple .hp-card-tag { background:rgba(255,61,236,.15); color:var(--pink); border:1px solid rgba(255,61,236,.3); }
.hp-card-heading { font-family:var(--font-d); text-transform:uppercase; line-height:1; margin-bottom:.5rem; }
.hp-card-heading .main { font-size:3rem; color:var(--white); display:block; }
.hp-card.teal .hp-card-heading .accent { font-size:3rem; color:var(--cyan); display:block; }
.hp-card.purple .hp-card-heading .accent { font-size:3rem; color:var(--pink); display:block; }
.hp-card-sub { color:rgba(255,255,255,.55); font-size:.85rem; margin-bottom:1.6rem; }
.hp-card-btns { display:flex; gap:.75rem; flex-wrap:wrap; }
.hp-btn-primary { padding:.6rem 1.3rem; border-radius:5px; font-size:.78rem; font-weight:700; cursor:pointer; border:none; text-decoration:none; display:inline-block; transition:all .25s; }
.hp-card.teal .hp-btn-primary { background:var(--cyan); color:var(--bg); }
.hp-card.teal .hp-btn-primary:hover { box-shadow:0 6px 20px rgba(33,215,232,.4); }
.hp-card.purple .hp-btn-primary { background:var(--pink); color:var(--white); }
.hp-card.purple .hp-btn-primary:hover { box-shadow:0 6px 20px rgba(255,61,236,.4); }
.hp-btn-outline { padding:.58rem 1.25rem; border-radius:5px; font-size:.78rem; font-weight:600; cursor:pointer; text-decoration:none; display:inline-block; transition:all .25s; border:1px solid rgba(255,255,255,.25); color:var(--white); background:transparent; }
.hp-btn-outline:hover { border-color:rgba(255,255,255,.5); }

@media(max-width:640px) { .homepage-cards .container { grid-template-columns:1fr; } }

/* ── EXPERIENCES GRID ──────────────────────── */
.experiences { padding:3.5rem 0; background:var(--bg); }
.filter-bar { display:flex; flex-wrap:wrap; gap:.5rem; justify-content:center; margin-bottom:2.5rem; }
.filter-btn { padding:.42rem 1.1rem; border:1px solid rgba(255,255,255,.14); background:transparent; color:var(--muted); font-family:var(--font-b); font-size:.78rem; font-weight:600; cursor:pointer; border-radius:3px; transition:all .2s; }
.filter-btn:hover { border-color:rgba(33,215,232,.4); color:var(--white); }
.filter-btn.active { background:var(--cyan); border-color:var(--cyan); color:var(--bg); }

.exp-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }

/* Card — exactly matching screenshots */
.exp-card {
  background:var(--card);
  border:1px solid rgba(255,255,255,.06);
  border-radius:16px; overflow:hidden;
  display:flex; flex-direction:column;
  transition:all .35s;
}
.exp-card:hover { border-color:rgba(33,215,232,.3); transform:translateY(-5px); box-shadow:0 18px 50px rgba(0,0,0,.4); }

/* Image area */
.exp-card-img { position:relative; height:200px; overflow:hidden; cursor:pointer; }
.exp-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .55s, filter .35s; filter:brightness(.8); }
.exp-card-img:hover img { transform:scale(1.06); filter:brightness(1); }
.exp-card-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(10,10,28,.75) 0%,transparent 55%); }

/* Tags top-left */
.exp-card-cats { position:absolute; top:.75rem; left:.75rem; display:flex; gap:.35rem; flex-wrap:wrap; z-index:2; }
.exp-tag { background:rgba(0,40,70,.85); border:1px solid rgba(33,215,232,.4); color:var(--cyan); font-size:.58rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:.18rem .55rem; border-radius:4px; }

/* Age badge bottom-left (pink pill) */
.exp-age-badge { position:absolute; bottom:.75rem; left:.75rem; background:var(--pink); color:#fff; font-size:.6rem; font-weight:700; padding:.22rem .65rem; border-radius:20px; z-index:2; }

/* Play button bottom-right */
.exp-play-btn { position:absolute; bottom:.75rem; right:.75rem; width:34px; height:34px; background:rgba(33,215,232,.15); border:1px solid rgba(33,215,232,.4); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--cyan); transition:all .25s; z-index:2; }
.exp-card-img:hover .exp-play-btn { background:var(--cyan); color:var(--bg); transform:scale(1.1); }

/* Card body */
.exp-card-body { padding:1.25rem 1.25rem 1.5rem; display:flex; flex-direction:column; flex:1; }
.exp-card-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:.55rem; gap:.5rem; }
.exp-card-title { font-size:1.1rem; font-weight:700; line-height:1.25; color:var(--white); }
.exp-card-price { color:var(--cyan); font-size:1.05rem; font-weight:700; white-space:nowrap; flex-shrink:0; }
.exp-card-desc { color:var(--muted); font-size:.82rem; line-height:1.55; margin-bottom:.9rem; flex:1; }
.exp-card-meta { display:flex; gap:1.1rem; margin-bottom:.9rem; }
.exp-meta-item { display:flex; align-items:center; gap:.35rem; font-size:.7rem; color:var(--cyan); font-weight:600; text-transform:uppercase; letter-spacing:.3px; }
.exp-meta-item svg { opacity:.8; flex-shrink:0; }

/* Book Now button — full width, outlined dark style */
.exp-book-btn {
  display:block; width:100%; padding:.8rem;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  border-radius:8px; color:var(--white);
  font-size:.78rem; font-weight:700; text-align:center;
  text-decoration:none; letter-spacing:2px; text-transform:uppercase;
  transition:all .25s; cursor:pointer;
}
.exp-book-btn:hover { background:var(--cyan); border-color:var(--cyan); color:var(--bg); }

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

/* ── WHY SECTION ───────────────────────────── */
.why { padding:3.5rem 0; background:var(--bg); position:relative; overflow:hidden; }
.why::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 80% 60% at 50% 50%,rgba(33,215,232,.04) 0%,transparent 70%); pointer-events:none; }
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; position:relative; }
.why-card { padding:1.75rem 1.5rem; border:1px solid var(--card-b); border-radius:var(--r); background:rgba(255,255,255,.02); transition:all .3s; text-align:center; }
.why-card:hover { border-color:rgba(33,215,232,.28); transform:translateY(-4px); }
.why-icon { font-size:2rem; margin-bottom:.9rem; display:block; }
.why-title { font-family:var(--font-d); font-size:1.05rem; letter-spacing:1px; text-transform:uppercase; margin-bottom:.6rem; color:var(--cyan); }
.why-desc { color:var(--muted); font-size:.84rem; line-height:1.6; }
@media(max-width:900px) { .why-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:500px) { .why-grid { grid-template-columns:1fr; } }

/* ── TOURIST SECTION ───────────────────────── */
.tourist-section { padding:3.5rem 0; background:var(--bg); }
.tourist-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
.tourist-card { border:1px solid var(--card-b); border-radius:var(--r); overflow:hidden; background:rgba(255,255,255,.02); }
.tourist-card-img { height:185px; overflow:hidden; position:relative; }
.tourist-card-img img { width:100%; height:100%; object-fit:cover; opacity:.75; transition:all .5s; }
.tourist-card:hover .tourist-card-img img { transform:scale(1.05); opacity:.9; }
.tourist-card-img::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(6,6,16,.85) 0%,transparent 50%); }
.tourist-card-body { padding:1.4rem; }
.tourist-card-icon { font-size:1.5rem; margin-bottom:.5rem; display:block; }
.tourist-card-title { font-family:var(--font-d); font-size:1.15rem; letter-spacing:1px; text-transform:uppercase; margin-bottom:.45rem; color:var(--cyan); }
.tourist-card-desc { color:var(--muted); font-size:.84rem; line-height:1.6; }
@media(max-width:768px) { .tourist-grid { grid-template-columns:1fr; } }

/* ── PRICING SNAP ──────────────────────────── */
.price-snap-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:.85rem; }
.price-snap-note { text-align:center; color:var(--muted); font-size:.8rem; margin-top:1rem; }
.price-snap-card { border:1px solid var(--card-b); border-radius:var(--r); padding:1.2rem .7rem; text-align:center; background:rgba(255,255,255,.02); position:relative; transition:all .28s; }
.price-snap-card:hover { border-color:rgba(33,215,232,.3); transform:translateY(-3px); }
.price-snap-card.featured { border-color:var(--cyan); background:rgba(33,215,232,.05); }
.price-snap-badge { position:absolute; top:-.55rem; left:50%; transform:translateX(-50%); background:var(--cyan); color:var(--bg); font-size:.5rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; padding:.16rem .5rem; border-radius:2px; white-space:nowrap; }
.price-snap-label { font-family:var(--font-d); font-size:.88rem; text-transform:uppercase; margin-bottom:.35rem; }
.price-snap-amount { font-family:var(--font-d); font-size:1.75rem; color:var(--cyan); line-height:1; }
.price-snap-per { font-size:.65rem; color:var(--muted); margin-top:.2rem; }
@media(max-width:1024px) { .price-snap-grid { grid-template-columns:repeat(3,1fr); } }
@media(max-width:560px)  { .price-snap-grid { grid-template-columns:repeat(2,1fr); } }

/* ── CTA BOX ───────────────────────────────── */
.cta-section { padding:3rem 0; background:var(--bg); }
.cta-box {
  background:linear-gradient(135deg,rgba(0,20,40,.95),rgba(20,0,40,.9));
  border:1px solid rgba(255,255,255,.1); border-radius:18px;
  padding:3.5rem 2rem; text-align:center;
}
.cta-box h2 { font-family:var(--font-d); font-size:clamp(1.8rem,4vw,2.8rem); text-transform:uppercase; margin-bottom:.75rem; }
.cta-box p { color:var(--muted); margin-bottom:1.75rem; font-size:.95rem; }

/* ── FOOTER ────────────────────────────────── */
.site-footer { background:rgba(6,6,16,.98); border-top:1px solid rgba(255,255,255,.06); padding:4.5rem 0 2rem; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3.5rem; }
.footer-logo { height:40px; margin-bottom:1rem; }
.footer-brand p { color:var(--muted); font-size:.88rem; line-height:1.7; margin-top:.7rem; }
.footer-social-block { margin-top:1.25rem; }
.footer-title-sm { font-size:.62rem; text-transform:uppercase; letter-spacing:2px; color:var(--muted); font-weight:700; margin-bottom:.6rem; }
.footer-social { display:flex; gap:.6rem; flex-wrap:wrap; margin-top:.5rem; }
.footer-social a { color:var(--muted); text-decoration:none; width:34px; height:34px; border:1px solid rgba(255,255,255,.1); border-radius:6px; display:flex; align-items:center; justify-content:center; transition:all .2s; }
.footer-social a:hover { color:var(--cyan); border-color:var(--cyan); background:rgba(33,215,232,.06); }
.footer-title { font-family:var(--font-d); font-size:.88rem; letter-spacing:2px; text-transform:uppercase; color:var(--cyan); margin-bottom:1.1rem; }
.footer-links { display:flex; flex-direction:column; gap:.6rem; }
.footer-links a { color:var(--muted); text-decoration:none; font-size:.86rem; transition:color .2s; }
.footer-links a:hover { color:var(--cyan); }
.footer-address { color:var(--muted); font-size:.85rem; line-height:1.85; font-style:normal; }
.lift-badge { display:inline-flex; align-items:center; gap:.35rem; color:var(--gold); font-weight:700; font-size:.78rem; margin-top:.4rem; }
.footer-hours { margin-top:.85rem; }
.footer-hours > div { display:flex; justify-content:space-between; gap:1rem; padding:.3rem 0; border-bottom:1px solid rgba(255,255,255,.05); font-size:.82rem; }
.footer-hours > div:last-child { border-bottom:none; }
.footer-hours span { color:var(--muted); }
.footer-hours strong { color:var(--cyan); }
.footer-book-links { display:flex; flex-direction:column; gap:.5rem; }
.footer-book-link { display:flex; align-items:center; gap:.6rem; color:var(--muted); text-decoration:none; font-size:.84rem; padding:.4rem .6rem; border-radius:5px; transition:all .2s; border:1px solid transparent; }
.footer-book-link:hover { color:var(--white); background:rgba(255,255,255,.04); border-color:rgba(255,255,255,.1); }
.footer-book-link svg { flex-shrink:0; opacity:.75; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:2rem; border-top:1px solid rgba(255,255,255,.05); color:var(--muted); font-size:.78rem; flex-wrap:wrap; gap:1rem; }
.footer-badge { color:var(--cyan); font-size:.72rem; font-weight:600; }
@media(max-width:900px) { .footer-grid { grid-template-columns:1fr 1fr; gap:2rem; } }
@media(max-width:560px) { .footer-grid { grid-template-columns:1fr; } }

/* ── PAGE HERO ─────────────────────────────── */
.page-hero { padding:6rem 0 2rem; background:var(--bg); position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 60% at 50% 50%,rgba(33,215,232,.05) 0%,transparent 70%); }
.page-hero-inner { position:relative; }
.page-title { font-family:var(--font-d); font-size:clamp(2.8rem,6vw,5rem); text-transform:uppercase; line-height:.95; margin-bottom:.85rem; }
.page-sub { color:var(--muted); font-size:.97rem; max-width:600px; line-height:1.65; }

/* ── BOOKING PAGE ──────────────────────────── */
.booking-page { padding:5.5rem 0 3rem; min-height:100vh; background:var(--bg); }
.booking-hero { text-align:center; margin-bottom:3.5rem; }
.booking-hero h1 { font-family:var(--font-d); font-size:clamp(2.5rem,6vw,4.8rem); text-transform:uppercase; line-height:.95; margin-bottom:.9rem; }
.booking-hero p { color:var(--muted); font-size:.97rem; max-width:520px; margin:0 auto; }
.channel-section { max-width:860px; margin:0 auto; }

.booking-channels { display:grid; grid-template-columns:repeat(2,1fr); gap:1.25rem; margin:2rem 0; }
.channel-card { display:flex; align-items:center; gap:1.25rem; padding:1.4rem; border:1px solid var(--card-b); border-radius:var(--r); background:rgba(255,255,255,.02); text-decoration:none; color:var(--white); transition:all .28s; }
.channel-card:hover { transform:translateY(-4px); border-color:var(--channel-color,var(--cyan)); box-shadow:0 12px 35px rgba(0,0,0,.28); background:rgba(255,255,255,.04); }
.channel-name { font-family:var(--font-d); font-size:1.2rem; letter-spacing:1px; text-transform:uppercase; }
.channel-sub { font-size:.8rem; color:var(--muted); margin-top:.15rem; }
.channel-arrow { margin-left:auto; color:var(--muted); transition:transform .25s; flex-shrink:0; }
.channel-card:hover .channel-arrow { transform:translateX(4px); color:var(--white); }
.channel-card.wa   { --channel-color:#25D366; }
.channel-card.line { --channel-color:#06C755; }
.channel-card.ph   { --channel-color:var(--cyan); }
.channel-card.wc   { --channel-color:#09B83E; }
@media(max-width:640px) { .booking-channels { grid-template-columns:1fr; } }

.rates-hint { background:rgba(33,215,232,.04); border:1px solid rgba(33,215,232,.16); border-radius:var(--r); padding:1.6rem; margin-bottom:2.5rem; }
.rates-hint h3 { font-family:var(--font-d); font-size:1.3rem; text-transform:uppercase; margin-bottom:1rem; display:flex; align-items:center; gap:1rem; }
.rates-mini-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:.55rem; }
.rates-mini-item { text-align:center; background:rgba(255,255,255,.02); border:1px solid var(--card-b); border-radius:5px; padding:.6rem .35rem; }
.rates-mini-item.featured { border-color:var(--cyan); background:rgba(33,215,232,.06); }
.rates-mini-label { font-family:var(--font-d); font-size:.8rem; text-transform:uppercase; letter-spacing:.4px; margin-bottom:.2rem; }
.rates-mini-price { font-family:var(--font-d); font-size:1.25rem; color:var(--cyan); }
.rates-mini-per { font-size:.6rem; color:var(--muted); }
@media(max-width:900px) { .rates-mini-grid { grid-template-columns:repeat(3,1fr); } }
@media(max-width:460px) { .rates-mini-grid { grid-template-columns:repeat(2,1fr); } }

.how-to { background:rgba(255,255,255,.02); border:1px solid var(--card-b); border-radius:var(--r); padding:2rem; margin-top:2.5rem; }
.how-to h3 { font-family:var(--font-d); font-size:1.2rem; text-transform:uppercase; margin-bottom:1.5rem; }
.steps-list { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.step-item { text-align:center; }
.step-num { width:42px; height:42px; border-radius:50%; background:var(--cyan); color:var(--bg); font-family:var(--font-d); font-size:1.25rem; display:flex; align-items:center; justify-content:center; margin:0 auto .65rem; }
.step-title { font-family:var(--font-d); font-size:.92rem; text-transform:uppercase; letter-spacing:.5px; margin-bottom:.35rem; }
.step-desc { font-size:.8rem; color:var(--muted); line-height:1.5; }
@media(max-width:768px) { .steps-list { grid-template-columns:repeat(2,1fr); } }

/* ── LIFT NOTICE ───────────────────────────── */
.lift-notice {
  background:linear-gradient(90deg,rgba(255,215,0,.1),rgba(255,215,0,.06));
  border:1px solid rgba(255,215,0,.32); border-radius:var(--r);
  padding:.95rem 1.4rem; display:flex; align-items:center; gap:1rem; margin-bottom:2rem;
}
.lift-text { font-weight:700; color:var(--gold); font-size:.92rem; }
.lift-sub { font-size:.78rem; color:var(--muted); margin-top:.18rem; }

/* ── CONTACT ───────────────────────────────── */
.contact-section { padding:2.5rem 0 3.5rem; background:var(--bg); }
.contact-layout { display:grid; grid-template-columns:1fr 1.65fr; gap:4rem; align-items:start; }
.ci-block { display:flex; gap:1rem; margin-bottom:1.75rem; }
.ci-icon { flex-shrink:0; margin-top:.15rem; }
.ci-label { font-size:.6rem; text-transform:uppercase; letter-spacing:2px; color:var(--cyan); margin-bottom:.25rem; display:block; font-weight:700; }
.ci-value { font-size:.88rem; color:var(--muted); line-height:1.8; }
.ci-value a { color:var(--cyan); text-decoration:none; }
.ci-value a:hover { text-decoration:underline; }
.map-wrapper { border-radius:var(--r); overflow:hidden; border:1px solid var(--card-b); }
.map-wrapper iframe { display:block; width:100%; height:450px; }
@media(max-width:900px) { .contact-layout { grid-template-columns:1fr; } .map-wrapper iframe { height:300px; } }

/* ── RATES PAGE ────────────────────────────── */
.rates-section { padding:2.5rem 0 3.5rem; background:var(--bg); }
.pricing-full-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-bottom:3.5rem; }
.price-card { border:1px solid var(--card-b); border-radius:var(--r); padding:2.2rem 1.75rem; background:rgba(255,255,255,.02); text-align:center; transition:all .28s; position:relative; overflow:hidden; }
.price-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:rgba(255,255,255,.07); }
.price-card.featured::before { background:linear-gradient(90deg,var(--cyan),var(--pink)); }
.price-card.featured { border-color:rgba(33,215,232,.28); background:rgba(33,215,232,.04); }
.price-card:hover { transform:translateY(-5px); border-color:rgba(33,215,232,.28); }
.price-pop-badge { display:inline-block; background:linear-gradient(90deg,var(--cyan),var(--pink)); color:var(--bg); font-size:.58rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; padding:.22rem .65rem; border-radius:2px; margin-bottom:.9rem; }
.price-name { font-family:var(--font-d); font-size:1.65rem; letter-spacing:1px; text-transform:uppercase; margin-bottom:.2rem; }
.price-amount { font-family:var(--font-d); font-size:4rem; color:var(--cyan); line-height:1; margin:.7rem 0; }
.price-amount small { font-size:1.75rem; }
.price-per { color:var(--muted); font-size:.83rem; margin-bottom:.45rem; }
.price-savings { font-size:.76rem; color:var(--pink); font-weight:700; margin-bottom:1.25rem; }
.price-features { list-style:none; text-align:left; margin-bottom:1.75rem; }
.price-features li { display:flex; align-items:center; gap:.6rem; padding:.42rem 0; border-bottom:1px solid rgba(255,255,255,.04); font-size:.86rem; color:var(--muted); }
.price-features li::before { content:'✓'; color:var(--cyan); font-weight:700; flex-shrink:0; }
.note-box { background:rgba(33,215,232,.03); border:1px solid rgba(33,215,232,.15); border-radius:var(--r); padding:2rem; text-align:center; }
@media(max-width:1024px) { .pricing-full-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px)  { .pricing-full-grid { grid-template-columns:1fr; } }

/* ── CONTENT CARD ──────────────────────────── */
.content-card { background:rgba(255,255,255,.02); border:1px solid var(--card-b); border-radius:var(--r); padding:1.75rem; }
.content-card h3 { color:var(--cyan); font-family:var(--font-d); letter-spacing:1px; text-transform:uppercase; margin-bottom:.9rem; font-size:1.05rem; display:flex; align-items:center; gap:.5rem; }

/* ── BOOKING PLATFORMS ─────────────────────── */
.footer-booking-platforms { display:flex; flex-wrap:wrap; gap:.5rem; margin-top:.25rem; }
.booking-platform-badge {
  display:inline-block; padding:.28rem .7rem; border-radius:4px;
  font-size:.68rem; font-weight:700; text-decoration:none; letter-spacing:.3px;
  transition:opacity .2s; white-space:nowrap;
}
.booking-platform-badge:hover { opacity:.8; }
.booking-platform-badge.klook       { background:#ff5722; color:#fff; }
.booking-platform-badge.tripadvisor { background:#00a680; color:#fff; }
.booking-platform-badge.viator      { background:#1a7dc3; color:#fff; }
.booking-platform-badge.gyg         { background:#ff8000; color:#fff; }
.booking-platform-badge.trip        { background:#1677ff; color:#fff; }

/* ── VIDEO MODAL ───────────────────────────── */
.video-modal { position:fixed; inset:0; z-index:9999; display:none; align-items:center; justify-content:center; }
.video-modal.active { display:flex; }
.vm-backdrop { position:absolute; inset:0; background:rgba(0,0,0,.88); backdrop-filter:blur(6px); }
.vm-inner { position:relative; z-index:1; width:90%; max-width:900px; aspect-ratio:16/9; }
.vm-inner iframe { width:100%; height:100%; border-radius:var(--r); }
.vm-close { position:absolute; top:-44px; right:0; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); color:var(--white); width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all .2s; }
.vm-close:hover { background:rgba(255,61,236,.3); border-color:var(--pink); }

/* ── GRID HELPERS ──────────────────────────── */
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
@media(max-width:768px) { .grid-2 { grid-template-columns:1fr; } }

/* ── CONTACT PAGE NEW LAYOUT ─────────────────────────────── */
.contact-section { padding:2rem 0 3rem; background:var(--bg); }

/* Top row: info card + form — equal height, top-aligned */
.contact-top-row {
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:1.5rem;
  align-items:stretch;   /* both cards grow to same height */
  margin-bottom:1.5rem;
}
@media(max-width:900px){ .contact-top-row { grid-template-columns:1fr; } }

/* Location info card */
.contact-info-card {
  background:rgba(10,10,24,.95);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:2.25rem 2rem;
  box-sizing:border-box;
}
.contact-card-title {
  font-family:var(--font-d); font-size:1.35rem;
  text-transform:uppercase; letter-spacing:1px;
  color:var(--cyan); margin-bottom:.55rem; margin-top:1.5rem;
}
.contact-card-title:first-child { margin-top:0; }
.contact-card-body {
  color:rgba(255,255,255,.7); font-size:.9rem; line-height:1.75;
}
.contact-card-body a { color:rgba(255,255,255,.7); text-decoration:none; }
.contact-card-body a:hover { color:var(--cyan); }

/* Form card — matches info card height exactly */
.contact-form-card {
  background:rgba(10,10,24,.95);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:2.25rem 2rem;
  box-sizing:border-box;
  display:flex;
  flex-direction:column;
}
.contact-form-card form { flex:1; display:flex; flex-direction:column; }
.contact-form-card h2 {
  font-family:var(--font-d); font-size:1.8rem;
  text-transform:uppercase; letter-spacing:1px;
  color:var(--cyan); margin-bottom:1.5rem;
}
.cf-label { display:block; font-size:.88rem; font-weight:600; color:rgba(255,255,255,.75); margin-bottom:.5rem; }
.cf-input, .cf-textarea {
  width:100%;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius:10px;
  color:var(--white);
  font-family:var(--font-b); font-size:.92rem;
  padding:.85rem 1rem;
  outline:none; display:block;
  transition:border-color .2s;
}
.cf-input:focus, .cf-textarea:focus { border-color:var(--cyan); background:rgba(33,215,232,.03); }
.cf-textarea { min-height:130px; resize:vertical; }
.cf-group { margin-bottom:1.25rem; }
.cf-submit {
  width:100%; padding:.95rem;
  background:var(--cyan); color:var(--bg);
  border:none; border-radius:10px;
  font-family:var(--font-b); font-size:.82rem; font-weight:700;
  letter-spacing:2px; text-transform:uppercase;
  cursor:pointer; margin-top:.5rem;
}
.cf-submit:hover { opacity:.88; }
.cf-success {
  display:none; text-align:center; padding:2rem 1rem;
  color:var(--cyan); font-weight:700; font-size:1rem;
}

/* Full-width map below */
.contact-map-full {
  border-radius:14px; overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  padding-bottom:1.5rem;
}
.contact-map-full iframe { display:block; width:100%; }

/* ── WHY ICONS — cyan SVGs ───────────────────────────────── */
.why-icon-svg {
  display:flex; align-items:center; justify-content:center;
  width:52px; height:52px;
  background:rgba(33,215,232,.08);
  border:1px solid rgba(33,215,232,.2);
  border-radius:12px;
  margin:0 auto 1rem;
}

/* ── HP-CARD WITH IMAGE BG ──────────────────────────────── */
.hp-card-bg-img {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; opacity:.35;
  transition:none !important; transform:none !important;
}
.hp-card-media-overlay {
  position:absolute; inset:0; z-index:1;
}
.teal-overlay {
  background:linear-gradient(135deg,rgba(0,40,50,.88) 0%,rgba(0,30,45,.75) 100%);
}
.purple-overlay {
  background:linear-gradient(135deg,rgba(55,0,90,.88) 0%,rgba(40,0,75,.75) 100%);
}
.hp-card-media { min-height:280px; }

/* Play button on hp-cards */
.hp-play-btn {
  width:42px; height:42px; border-radius:50%;
  background:rgba(33,215,232,.2); border:1.5px solid rgba(33,215,232,.5);
  color:var(--cyan); display:flex; align-items:center; justify-content:center;
  cursor:pointer; flex-shrink:0;
  transition:none !important; transform:none !important;
}
.hp-play-btn-pink {
  background:rgba(255,61,236,.2); border-color:rgba(255,61,236,.5); color:var(--pink);
}

/* Tourist card — no icon space needed */
.tourist-card-body { padding:1.25rem 1.4rem; }

/* ── HP MEDIA CARDS (pure image + play) ─────── */
.hp-media-section {
  padding:0;
  margin-top:0;
  background:var(--bg); /* same as all sections */
}
.hp-media-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
  padding:.75rem 0 0;
}
.hp-media-card {
  position:relative;
  border-radius:14px;
  overflow:hidden;
  aspect-ratio:16/9;
  cursor:pointer;
  background:var(--bg);
}
/* Image fully fills the card — static, no animation */
.hp-media-card img {
  width:100%; height:100%; object-fit:cover;
  display:block; opacity:.88;
  transition:none !important;
  transform:none !important;
  animation:none !important;
}
/* Dark gradient from bottom so play button reads clearly */
.hp-media-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(6,6,16,.6) 0%, transparent 50%);
  pointer-events:none;
}
/* Centered play button */
.hp-media-play {
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:60px; height:60px;
  background:rgba(0,0,0,.45);
  border:2px solid rgba(255,255,255,.55);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  padding-left:3px; /* optical center for triangle */
  /* static — no hover motion */
  transition:none !important;
}
/* Subtle border glow on hover — color only, no movement */
.hp-media-card:hover .hp-media-overlay {
  background:linear-gradient(to top, rgba(6,6,16,.75) 0%, rgba(6,6,16,.15) 100%);
}
.hp-media-card:hover .hp-media-play {
  background:rgba(33,215,232,.25);
  border-color:var(--cyan);
  color:var(--cyan);
}
@media(max-width:640px) {
  .hp-media-grid { grid-template-columns:1fr; }
  .hp-media-card { aspect-ratio:4/3; }
}


/* ═══════════════════════════════════════════════════════
   MOBILE RESPONSIVENESS — comprehensive breakpoints
   ═══════════════════════════════════════════════════════ */

/* ── Tablet: 768–1024px ─────────────────────────────── */
@media(max-width:1024px) {
  /* Hero */
  .hero-inner { grid-template-columns:1fr; min-height:auto; }
  .hero-visual { display:none; }
  .hero-content { padding:3rem 2.5rem 2.5rem; }
  .hero-title { font-size:clamp(4rem,10vw,7rem); }

  /* Pricing */
  .pricing-full-grid { grid-template-columns:repeat(2,1fr); }

  /* Why grid */
  .why-grid { grid-template-columns:repeat(2,1fr); }
}

/* ── Mobile: ≤768px ─────────────────────────────────── */
@media(max-width:768px) {

  /* ─ Global ─ */
  .container { padding:0 1.25rem; }
  .section-title { font-size:clamp(1.8rem,6vw,2.8rem); }
  .section-sub { font-size:.88rem; }
  .section-header { margin-bottom:2.5rem; }

  /* ─ Navbar ─ */
  .navbar { height:60px; }
  .logo { height:34px; }

  /* ─ Hero ─ */
  .hero { padding:.5rem 0 0; }
  .hero-card-wrap { border-radius:12px; margin-top:60px; }
  .hero-inner { grid-template-columns:1fr; min-height:auto; }
  .hero-visual { display:block; }
  .hero-content { padding:2rem 1.5rem 2rem; }
  .hero-badge-wrap { font-size:.55rem; letter-spacing:2px; }
  .hero-title { font-size:clamp(3.2rem,12vw,5.5rem); line-height:.9; margin-bottom:.75rem; }
  .hero-subtitle { font-size:.88rem; margin-bottom:1.25rem; }
  .hero-actions { gap:.65rem; flex-wrap:wrap; margin-bottom:1.5rem; }
  .btn-primary, .btn-outline { font-size:.78rem; padding:.62rem 1.3rem; }
  .hero-stats { gap:.5rem; flex-wrap:wrap; }
  .hero-stat-pill { min-width:72px; padding:.6rem .65rem; }
  .hero-stat-num { font-size:1.5rem; }
  .hero-stat-label { font-size:.48rem; letter-spacing:1px; }

  /* ─ Media cards ─ */
  .hp-media-grid { grid-template-columns:1fr; gap:.75rem; }
  .hp-media-card { aspect-ratio:16/9; }
  .hp-media-play { width:48px; height:48px; }

  /* ─ Experiences ─ */
  .experiences { padding:3rem 0; }
  .exp-grid { grid-template-columns:1fr; gap:1.25rem; }
  .filter-bar { gap:.4rem; }
  .filter-btn { font-size:.72rem; padding:.35rem .85rem; }

  /* ─ Pricing ─ */
  .pricing-full-grid { grid-template-columns:1fr; }
  .price-snap-grid { grid-template-columns:repeat(2,1fr); gap:.65rem; }
  .price-card { padding:1.75rem 1.25rem; }
  .price-amount { font-size:3rem; }

  /* ─ Why ─ */
  .why { padding:3rem 0; }
  .why-grid { grid-template-columns:1fr 1fr; gap:1rem; }
  .why-card { padding:1.25rem 1rem; }
  .why-icon-svg { width:42px; height:42px; margin-bottom:.75rem; }

  /* ─ Tourist ─ */
  .tourist-section { padding:3rem 0; }
  .tourist-grid { grid-template-columns:1fr; gap:1.1rem; }
  .tourist-card-img { height:160px; }

  /* ─ HP promo cards ─ */
  .homepage-cards .container { grid-template-columns:1fr; gap:1rem; }
  .hp-card { min-height:200px; padding:1.75rem 1.5rem 1.5rem; }

  /* ─ CTA ─ */
  .cta-section { padding:3rem 0; }
  .cta-box { padding:2.5rem 1.5rem; border-radius:14px; }
  .cta-box h2 { font-size:1.75rem; }

  /* ─ Booking page ─ */
  .booking-page { padding:4.5rem 0 2rem; }
  .booking-hero h1 { font-size:2.5rem; }
  .booking-channels { grid-template-columns:1fr; }
  .steps-list { grid-template-columns:repeat(2,1fr); gap:1.2rem; }
  .rates-mini-grid { grid-template-columns:repeat(2,1fr); }
  .how-to { padding:1.5rem 1.25rem; }
  .grid-2 { grid-template-columns:1fr; }

  /* ─ Contact ─ */
  .contact-top-row { grid-template-columns:1fr; }
  .contact-info-card, .contact-form-card { padding:1.75rem 1.5rem; }
  .contact-map-full iframe { height:280px; }
  .lift-notice { flex-wrap:wrap; gap:.75rem; padding:.85rem 1.1rem; }

  /* ─ Page hero ─ */
  .page-hero { padding:4.5rem 0 1.5rem; }
  .page-title { font-size:clamp(2.2rem,8vw,3.5rem); }

  /* ─ Footer ─ */
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom { flex-direction:column; text-align:center; gap:.5rem; }
  .site-footer { padding:3rem 0 1.5rem; }
}

/* ── Small mobile: ≤420px ───────────────────────────── */
@media(max-width:420px) {
  .hero-title { font-size:clamp(2.8rem,13vw,4rem); }
  .hero-content { padding:1.75rem 1.25rem 1.75rem; }
  .why-grid { grid-template-columns:1fr; }
  .hp-media-card { aspect-ratio:4/3; }
  .price-snap-grid { grid-template-columns:repeat(2,1fr); }
  .steps-list { grid-template-columns:1fr; }
  .booking-channels { gap:.75rem; }
  .channel-card { padding:1.1rem; gap:.85rem; }
  .channel-name { font-size:1rem; }
}

/* Mobile hero visual — show 3-card grid below text on small screens */
@media(max-width:768px) {
  .hero-inner { display:flex; flex-direction:column; }
  .hero-visual { display:block !important; width:100%; }
  .hero-card-large { border-radius:0; min-height:220px; height:220px; }
  .hero-card { height:130px; }
  .hero-card-row { gap:.5rem; }
  .hero-card-grid { gap:.5rem; }
  .hero-card-wrap { border-radius:12px; }
}

/* ── BOOKING PLATFORMS SECTION ───────────────────────── */
.booking-platforms-section {
  margin-top:3rem;
  padding:2rem;
  background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.07);
  border-radius:14px;
}
.booking-platforms-title {
  font-family:var(--font-d);
  font-size:1.4rem; text-transform:uppercase; letter-spacing:1px;
  color:var(--cyan); margin-bottom:.35rem;
}
.booking-platforms-sub {
  color:var(--muted); font-size:.85rem; margin-bottom:1.5rem;
}
.booking-platforms-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:.85rem;
}
.bplatform-card {
  display:flex; align-items:center; justify-content:center;
  padding:.85rem 1rem;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  border-radius:8px;
  text-decoration:none;
  transition:border-color .2s, background .2s;
}
.bplatform-card:hover {
  border-color:var(--cyan);
  background:rgba(33,215,232,.06);
}
.bplatform-name {
  color:var(--white); font-size:.82rem; font-weight:600;
}
@media(max-width:768px) {
  .booking-platforms-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:420px) {
  .booking-platforms-grid { grid-template-columns:repeat(2,1fr); }
}

}

/* ── MOBILE NAVIGATION ─────────────────────────── */
.menu-button { display:none !important; }

@media(max-width:900px) {
  .menu-button {
    display:flex !important;
    align-items:center; justify-content:center;
    background:none; border:none; cursor:pointer; padding:.5rem;
  }

  .nav-menu { display:none !important; }

  .nav-menu.open {
    display:flex !important;
    position:fixed !important;
    top:0; left:0; right:0;
    height:100vh;
    flex-direction:column;
    align-items:stretch;
    background:#060610;
    padding:100px 2rem 3rem;
    gap:0;
    z-index:99998;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
  }

  .nav-menu.open .nav-link {
    font-size:1.2rem; font-weight:600;
    padding:1.1rem 0; width:100%;
    color:rgba(255,255,255,.9);
    border-bottom:1px solid rgba(255,255,255,.08);
    display:block; text-decoration:none;
  }

  .nav-menu.open .nav-link:last-of-type { border-bottom:none; }

  .nav-menu.open .btn-primary.nav-btn {
    display:flex !important; width:100%;
    justify-content:center; text-align:center;
    margin-top:1.5rem; padding:1rem;
    font-size:1rem;
  }
}

@media(max-width:768px) {
  .logo { width:120px; }
  .nav-menu.open { padding-top:80px; }
  .hero-card-wrap { margin-top:0; border-radius:12px; }
  .hero { padding-top:60px; }
}

/* ═══════════════════════════════════════════════════════
   VISUAL ENHANCEMENTS — effects, contrast, hover states
   ═══════════════════════════════════════════════════════ */

/* ── Body ambient glow ─────────────────────────────── */
body::before {
  content:'';
  position:fixed; inset:0; pointer-events:none; z-index:0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(33,215,232,.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255,61,236,.03) 0%, transparent 60%);
}

/* ── Hero card wrap — stronger contrast + glow border ── */
.hero-card-wrap {
  border-color: rgba(33,215,232,.18) !important;
  box-shadow: 0 0 0 1px rgba(33,215,232,.08), 0 32px 80px rgba(0,0,0,.6);
}

/* ── HP cards (VR Play / VR Parties) — hover lift ──── */
.hp-card {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.hp-card.teal:hover {
  transform: translateY(-6px);
  border-color: rgba(33,215,232,.5) !important;
  box-shadow: 0 20px 60px rgba(33,215,232,.15), 0 0 0 1px rgba(33,215,232,.2);
}
.hp-card.purple:hover {
  transform: translateY(-6px);
  border-color: rgba(255,61,236,.5) !important;
  box-shadow: 0 20px 60px rgba(255,61,236,.15), 0 0 0 1px rgba(255,61,236,.2);
}

/* ── Experience cards — stronger background contrast ── */
.exp-card {
  background: #0d0d22;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.exp-card:hover {
  transform: translateY(-7px);
  border-color: rgba(33,215,232,.4) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(33,215,232,.15), 0 0 30px rgba(33,215,232,.08);
}

/* ── Why cards ─────────────────────────────────────── */
.why-card {
  background: #0d0d22;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(33,215,232,.35);
  box-shadow: 0 16px 48px rgba(33,215,232,.1), 0 0 0 1px rgba(33,215,232,.12);
}
.why-icon-svg {
  background: rgba(33,215,232,.08);
  border: 1px solid rgba(33,215,232,.2);
  border-radius: 14px;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.why-card:hover .why-icon-svg {
  background: rgba(33,215,232,.14);
  border-color: rgba(33,215,232,.4);
  box-shadow: 0 0 20px rgba(33,215,232,.2);
}

/* ── Tourist cards ─────────────────────────────────── */
.tourist-card {
  background: #0d0d22;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.tourist-card:hover {
  transform: translateY(-5px);
  border-color: rgba(33,215,232,.3);
  box-shadow: 0 16px 48px rgba(0,0,0,.4), 0 0 0 1px rgba(33,215,232,.1);
}

/* ── Price cards ───────────────────────────────────── */
.price-card {
  background: #0d0d22;
  border: 1px solid rgba(255,255,255,.09);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(33,215,232,.35);
  box-shadow: 0 20px 56px rgba(0,0,0,.5), 0 0 0 1px rgba(33,215,232,.12);
}
.price-card.featured {
  background: #0f1028;
  border-color: rgba(33,215,232,.3);
  box-shadow: 0 8px 40px rgba(33,215,232,.1), 0 0 0 1px rgba(33,215,232,.15);
  animation: glowPulse 3s ease infinite;
}

/* ── Stat pills — subtle glow ──────────────────────── */
.hero-stat-pill {
  background: rgba(13,13,34,1);
  border: 1px solid rgba(33,215,232,.15);
  transition: border-color .3s, box-shadow .3s;
}
.hero-stat-pill:hover {
  border-color: rgba(33,215,232,.4);
  box-shadow: 0 0 20px rgba(33,215,232,.1);
}

/* ── Booking channel cards ─────────────────────────── */
.channel-card {
  background: #0d0d22;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4), 0 0 0 1px var(--channel-color,var(--cyan));
}

/* ── Contact & form cards ──────────────────────────── */
.contact-info-card,
.contact-form-card {
  background: #0d0d22;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}

/* ── CTA box — glowing border ──────────────────────── */
.cta-box {
  background: linear-gradient(135deg, rgba(10,10,28,.98), rgba(15,5,30,.95));
  border: 1px solid rgba(33,215,232,.2);
  box-shadow: 0 0 60px rgba(33,215,232,.06), inset 0 0 60px rgba(33,215,232,.02);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(33,215,232,.04) 0%, transparent 50%, rgba(255,61,236,.04) 100%);
  pointer-events:none;
}

/* ── Navbar scroll — stronger glass ───────────────── */
.navbar.scrolled {
  background: rgba(6,6,16,.97);
  box-shadow: 0 1px 0 rgba(33,215,232,.1), 0 8px 32px rgba(0,0,0,.4);
}

/* ── Sections — clear background separation via subtle top border ── */
.experiences,
.why,
.tourist-section,
.rates-section,
.booking-page {
  position: relative;
}
.experiences::before,
.why::before,
.tourist-section::before {
  content:'';
  position:absolute; top:0; left:5%; right:5%;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(33,215,232,.12), transparent);
}

/* ── Shimmer on btn-primary ────────────────────────── */
.btn-primary {
  background: linear-gradient(90deg, var(--cyan) 0%, #5ef0ff 50%, var(--cyan) 100%);
  background-size: 200% auto;
}
.btn-primary:hover {
  background-position: right center;
  transition: background-position .5s ease, transform .25s, box-shadow .25s;
}

/* ── Footer — distinct from page bg ───────────────── */
.site-footer {
  background: #030308;
  border-top: 1px solid rgba(33,215,232,.12);
  box-shadow: 0 -8px 40px rgba(0,0,0,.4);
}

/* ── Snap pricing cards ─────────────────────────────── */
.price-snap-card {
  background: #0d0d22;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.price-snap-card:hover {
  transform: translateY(-4px);
  border-color: rgba(33,215,232,.4);
  box-shadow: 0 12px 30px rgba(33,215,232,.08);
}
.price-snap-card.featured {
  background: #0f1028;
  border-color: rgba(33,215,232,.3);
  box-shadow: 0 0 30px rgba(33,215,232,.12);
}

/* ── Content card (booking info) ───────────────────── */
.content-card {
  background: #0d0d22;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

/* ── How-to steps box ──────────────────────────────── */
.how-to {
  background: #0d0d22;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

/* ── Hero badge pulse glow ─────────────────────────── */
.hero-badge-wrap {
  animation: glowPulse 4s ease infinite;
}

/* ── LOGO STYLES ───────────────────────────────────── */
.logo {
  height: auto;
  width: 150px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(33,215,232,.3));
}
.footer-logo {
  height: auto;
  width: 130px;
  object-fit: contain;
  opacity: .85;
}
@media(max-width:768px) {
  .logo { width: 120px; }
}

img {
  content-visibility: auto;
}
.exp-card-img img,
.tourist-card-img img,
.hero-card-large img,
.hero-card img,
.hp-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.goog-te-banner-frame { display:none !important; }
.goog-te-menu-frame   { display:none !important; }
body { top:0 !important; }
iframe.skiptranslate  { display:none !important; }
/* Thai font — prevents layout breaking */
.goog-text-highlight { background:none !important; box-shadow:none !important; }

/* When page is translated to Thai, use Sarabun font */
:lang(th), .translated-ltr *, .translated-rtl * {
  font-family: 'Sarabun', 'Inter', sans-serif !important;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Prevent huge Thai hero title from breaking layout */
.translated-ltr .hero-title,
.translated-ltr .section-title,
.translated-ltr .page-title {
  font-size: clamp(2rem, 6vw, 5rem) !important;
  line-height: 1.1 !important;
}

/* Hide Google's tooltip/rating popup */
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip-content,
.goog-te-balloon-frame *,
#goog-gt-tt,
.goog-te-menu-value:hover div { display:none !important; }

/* Hide ALL Google Translate tooltips and rating popups */
#goog-gt-tt,
#goog-gt-tt *,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-te-ftab-float,
.goog-te-ftab { 
  display:none !important; 
  visibility:hidden !important;
  pointer-events:none !important;
}

/* Hide Google Translate loading icon and all widget UI */
.goog-te-spinner,
.goog-te-spinner-pos,
.skiptranslate,
#goog-gt-tt,
#goog-gt-tt *,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-te-ftab-float,
.goog-te-ftab,
.VIpgJd-ZVi9od-aZ2wEe,
.VIpgJd-ZVi9od-aZ2wEe-OiiCO,
.VIpgJd-ZVi9od-l4eHX-hSRGPd { 
  display:none !important; 
  visibility:hidden !important;
  opacity:0 !important;
  pointer-events:none !important;
}

/* Prevent body shift when translate bar tries to appear */
body { top:0 !important; min-height:unset !important; }

.exp-card-img img {
  background: #0d0d22;
  min-height: 200px;
}
.tourist-card-img img {
  background: #0d0d22;
  min-height: 185px;
}