/* =========================================================
   NEXARC GAMING CAFE — PUBLIC SITE STYLES
   Brand: dark base, cyan → magenta gradient (from logo)
   ========================================================= */
:root {
  --bg: #07070d;
  --bg-2: #0d0d18;
  --panel: #12121f;
  --panel-2: #181829;
  --line: #25253a;
  --text: #ecebf5;
  --muted: #9a98b3;
  --cyan: #00e5ff;
  --magenta: #ff2bd6;
  --violet: #7b5cff;
  --ok: #2ee59d;
  --warn: #ffb020;
  --err: #ff4d6d;
  --grad: linear-gradient(100deg, var(--cyan), var(--violet) 55%, var(--magenta));
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, .7);
  --head: "Chakra Petch", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 16px/1.6 var(--body); -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--head); line-height: 1.15; margin: 0 0 .5em; letter-spacing: .01em; }
p { margin: 0 0 1em; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }
.wrap { width: min(var(--wrap), 100% - 32px); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 600 15px/1 var(--body); padding: 14px 22px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--grad); color: #07070d; box-shadow: 0 8px 30px -8px rgba(123, 92, 255, .7); }
.btn-primary:hover { box-shadow: 0 10px 40px -6px rgba(255, 43, 214, .6); }
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,.03); color: var(--text); }
.btn-ghost:hover { border-color: var(--cyan); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 7, 13, .92); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--head); font-weight: 700; letter-spacing: .08em; font-size: 15px; }
.brand img { width: 36px; height: 36px; }
.brand small { display: block; font-size: 10px; letter-spacing: .3em; color: var(--muted); font-weight: 500; }
.nav-links { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; font-size: 14px; color: var(--muted); }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta .btn { padding: 11px 18px; font-size: 14px; }
.menu-btn { display: none; background: none; border: 1px solid var(--line); color: var(--text); border-radius: 10px; width: 42px; height: 42px; cursor: pointer; }
.menu-btn svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-grid; place-items: center; }
  .nav-cta .btn-ghost { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed; inset: 68px 0 0 0; background: var(--bg);
    padding: 28px 24px; gap: 22px; font-size: 20px; color: var(--text); font-family: var(--head);
  }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 96px 0 72px; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto; height: 700px; z-index: -1;
  background: radial-gradient(40% 50% at 20% 30%, rgba(0,229,255,.18), transparent 70%),
              radial-gradient(40% 50% at 80% 20%, rgba(255,43,214,.18), transparent 70%);
}
.hero-bg { position: absolute; inset: 0; z-index: -2; object-fit: cover; width: 100%; height: 100%; opacity: .28; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font: 600 12px/1 var(--body); letter-spacing: .18em; text-transform: uppercase;
  color: var(--cyan); padding: 8px 14px; border: 1px solid rgba(0,229,255,.3); border-radius: 999px; background: rgba(0,229,255,.06);
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(46,229,157,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(46,229,157,0); } 100% { box-shadow: 0 0 0 0 rgba(46,229,157,0); } }
.hero h1 { font-size: clamp(36px, 5vw, 60px); margin: 22px 0 18px; text-transform: uppercase; }
.hero .lead { font-size: 18px; color: var(--muted); max-width: 560px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-card {
  background: linear-gradient(var(--panel), var(--panel)) padding-box, var(--grad) border-box;
  border: 1px solid transparent; border-radius: 20px; padding: 26px; box-shadow: var(--shadow);
}
.hero-card h2 { font-size: 16px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.rate-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.rate-row:last-of-type { border-bottom: 0; }
.rate-row strong { font-family: var(--head); font-size: 20px; display: block; }
.rate-row span.sub { color: var(--muted); font-size: 13px; }
.rate-price { font-family: var(--head); font-size: 30px; font-weight: 700; }
.rate-price small { font-size: 14px; color: var(--muted); font-weight: 500; }
.hero-card .btn { width: 100%; margin-top: 14px; }

@media (max-width: 900px) {
  .hero { padding: 56px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Stats strip ---------- */
.strip { border-block: 1px solid var(--line); background: var(--bg-2); }
.strip ul { list-style: none; margin: 0 auto; padding: 22px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.strip li { display: flex; gap: 12px; align-items: center; font-size: 14px; color: var(--muted); }
.strip li strong { display: block; color: var(--text); font-family: var(--head); font-size: 17px; }
.strip svg { width: 28px; height: 28px; color: var(--cyan); flex: none; }
@media (max-width: 760px) { .strip ul { grid-template-columns: 1fr 1fr; } }

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker { font: 600 12px/1 var(--body); letter-spacing: .2em; text-transform: uppercase; color: var(--magenta); margin-bottom: 14px; display: block; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); }
.section-head p { color: var(--muted); font-size: 17px; }
@media (max-width: 760px) { section { padding: 64px 0; } }

/* ---------- Setups ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(0,229,255,.45); transform: translateY(-3px); }
.card-body { padding: 22px; }
.card h3 { font-size: 21px; }
.card p { color: var(--muted); font-size: 15px; }
.card ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 14px; }
.card ul li { margin-bottom: 4px; }

/* Image slot: shows a branded placeholder until a real photo exists at the src path */
.media { position: relative; aspect-ratio: 16 / 10; background: linear-gradient(135deg, #10102a, #1b0f2a); overflow: hidden; }
.media::after {
  content: attr(data-label); position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 12px;
  font: 600 12px/1.4 var(--body); letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35);
  background: radial-gradient(60% 60% at 30% 30%, rgba(0,229,255,.15), transparent), radial-gradient(60% 60% at 70% 70%, rgba(255,43,214,.15), transparent);
}
.media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.media img.missing { display: none; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; display: flex; flex-direction: column; }
.price-card.featured { background: linear-gradient(var(--panel-2), var(--panel-2)) padding-box, var(--grad) border-box; border: 1px solid transparent; }
.price-card .tag { align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px; background: rgba(255,43,214,.12); color: var(--magenta); margin-bottom: 14px; }
.price-card h3 { font-size: 22px; }
.price { font-family: var(--head); font-size: 46px; font-weight: 700; margin: 6px 0 4px; }
.price small { font-size: 16px; color: var(--muted); font-weight: 500; }
.price-card ul { list-style: none; padding: 0; margin: 18px 0 26px; color: var(--muted); font-size: 15px; flex: 1; }
.price-card li { padding: 8px 0 8px 26px; position: relative; border-bottom: 1px solid var(--line); }
.price-card li::before { content: ""; position: absolute; left: 0; top: 14px; width: 14px; height: 8px; border-left: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan); transform: rotate(-45deg); }
.note { color: var(--muted); font-size: 13px; margin-top: 18px; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

/* ---------- Games ---------- */
.games { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 10px 16px; border-radius: 999px; background: var(--panel); border: 1px solid var(--line); font-size: 14px; }
.chip b { color: var(--cyan); font-weight: 600; margin-right: 6px; font-size: 11px; letter-spacing: .1em; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery .media { aspect-ratio: auto; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.gallery .media.wide { grid-column: span 2; }
.gallery .media.tall { grid-row: span 2; }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; } }

/* ---------- Booking ---------- */
.book { background: var(--bg-2); border-block: 1px solid var(--line); }
.book-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.book-info ul { list-style: none; padding: 0; margin: 24px 0; }
.book-info li { display: flex; gap: 12px; padding: 12px 0; color: var(--muted); border-bottom: 1px solid var(--line); }
.book-info li strong { color: var(--text); }
.book-info svg { width: 22px; height: 22px; color: var(--cyan); flex: none; margin-top: 2px; }
.form { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 28px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--muted); }
.field label .req { color: var(--magenta); }
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--line); color: var(--text); border-radius: var(--radius-sm);
  padding: 13px 14px; font: 15px var(--body); width: 100%; transition: border-color .15s;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); outline: none; }
.field .err { color: var(--err); font-size: 12px; min-height: 0; }
.field.invalid input, .field.invalid select { border-color: var(--err); }
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.seg { position: relative; }
.seg input { position: absolute; left: 0; top: 0; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.seg label {
  border: 1px solid var(--line); background: var(--bg); border-radius: var(--radius-sm); padding: 14px; cursor: pointer;
  color: var(--text); font-size: 15px; display: flex; justify-content: space-between; align-items: center;
}
.seg label span { color: var(--muted); font-size: 13px; font-weight: 500; }
.seg input:checked + label { border-color: var(--cyan); background: rgba(0,229,255,.07); box-shadow: inset 0 0 0 1px var(--cyan); }
.seg input:focus-visible + label { outline: 2px solid var(--cyan); outline-offset: 2px; }
.summary {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-top: 20px; padding: 16px 18px; border-radius: var(--radius-sm); background: var(--bg); border: 1px dashed var(--line);
}
.summary .amt { font-family: var(--head); font-size: 28px; font-weight: 700; }
.summary .avail { font-size: 13px; color: var(--muted); }
.summary .avail.ok { color: var(--ok); }
.summary .avail.bad { color: var(--err); }
.form .btn-primary { width: 100%; margin-top: 18px; padding: 16px; font-size: 16px; }
.form .small { color: var(--muted); font-size: 12px; margin: 12px 0 0; text-align: center; }
.form-status { margin-top: 14px; padding: 12px 14px; border-radius: 10px; font-size: 14px; display: none; }
.form-status.error { display: block; background: rgba(255,77,109,.1); border: 1px solid rgba(255,77,109,.4); color: #ffb3c1; }
.success { text-align: center; padding: 20px 6px; }
.success .tick { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; background: rgba(46,229,157,.12); color: var(--ok); }
.success .tick svg { width: 32px; height: 32px; }
.success dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; text-align: left; max-width: 360px; margin: 18px auto; font-size: 14px; }
.success dt { color: var(--muted); }
.success .actions { display: flex; flex-direction: column; gap: 10px; max-width: 360px; margin: 0 auto; }
@media (max-width: 900px) { .book-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } .form { padding: 20px; } }

/* ---------- Why ---------- */
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why div { padding: 24px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--line); }
.why svg { width: 30px; height: 30px; color: var(--magenta); margin-bottom: 14px; }
.why h3 { font-size: 18px; }
.why p { color: var(--muted); font-size: 14px; margin: 0; }
@media (max-width: 900px) { .why { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .why { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 40px 18px 0; font-family: var(--head); font-size: 18px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 14px; font-size: 26px; color: var(--cyan); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 12px; }

/* ---------- Location ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 32px; }
.loc-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.loc-card dl { margin: 0; }
.loc-card dt { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: 18px; }
.loc-card dt:first-child { margin-top: 0; }
.loc-card dd { margin: 4px 0 0; font-size: 17px; }
.loc-card .btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 360px; background: var(--panel); }
.map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: invert(.9) hue-rotate(180deg) saturate(.8); }
@media (max-width: 900px) { .loc-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band + footer ---------- */
.cta-band { padding: 0 0 88px; }
.cta-inner { border-radius: 22px; padding: 48px; text-align: center; background: radial-gradient(60% 120% at 0% 0%, rgba(0,229,255,.2), transparent), radial-gradient(60% 120% at 100% 100%, rgba(255,43,214,.22), transparent), var(--panel); border: 1px solid var(--line); }
.cta-inner h2 { font-size: clamp(26px, 4vw, 40px); text-transform: uppercase; }
.cta-inner p { color: var(--muted); }
.cta-inner .hero-actions { justify-content: center; }
footer { border-top: 1px solid var(--line); padding: 48px 0 28px; color: var(--muted); font-size: 14px; }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.foot h4 { color: var(--text); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: 8px; }
.foot a:hover { color: var(--cyan); }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; }
.socials svg { width: 18px; height: 18px; }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-top: 1px solid var(--line); margin-top: 36px; padding-top: 20px; font-size: 13px; }
@media (max-width: 800px) { .foot { grid-template-columns: 1fr 1fr; } }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px -6px rgba(37,211,102,.6);
}
.wa-float svg { width: 28px; height: 28px; }

@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }

/* =========================================================
   v2 — PHOTO-LED DESIGN
   ========================================================= */
.hero { padding: 72px 0 80px; }
.hero::before { inset: -10% -10% auto; height: 900px;
  background: radial-gradient(35% 45% at 15% 30%, rgba(0,229,255,.16), transparent 70%),
              radial-gradient(35% 45% at 85% 40%, rgba(255,43,214,.18), transparent 70%); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .35;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent); -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent); }
.hero-grid { grid-template-columns: 1.05fr .95fr; gap: 56px; }
.hero h1 { font-size: clamp(36px, 5vw, 62px); }
.hero-rates { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.rate-chip { display: flex; align-items: baseline; gap: 6px; padding: 12px 16px; border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid var(--line); }
.rate-chip > span { color: var(--muted); font-size: 13px; margin-right: 6px; }
.rate-chip b { font-family: var(--head); font-size: 24px; }
.rate-chip small { color: var(--muted); font-size: 12px; }
.rating { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; font-size: 14px; color: var(--muted); }
.rating .stars { color: #ffc93c; letter-spacing: 2px; font-size: 16px; }
.rating b { color: var(--text); }
.rating:hover { color: var(--text); }

.hero-visual { position: relative; min-height: 560px; }
.hero-visual figure { margin: 0; position: absolute; overflow: hidden; border-radius: 20px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.8); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.hero-visual figure:hover img { transform: scale(1.04); }
.hv-main { right: 0; top: 0; width: 78%; height: 100%; border: 1px solid rgba(255,255,255,.08); }
.hv-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,7,13,.55)); pointer-events: none; }
.hv-sub { left: 0; bottom: 34px; width: 52%; aspect-ratio: 4/3; background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--grad) border-box; border: 2px solid transparent; }
.hv-badge { position: absolute; right: 18px; top: 22px; display: flex; gap: 10px; align-items: center; padding: 12px 16px; border-radius: 14px; background: rgba(7,7,13,.85); border: 1px solid var(--line); backdrop-filter: blur(6px); }
.hv-badge svg { width: 24px; height: 24px; color: var(--ok); }
.hv-badge b { display: block; font-family: var(--head); font-size: 15px; }
.hv-badge span { font-size: 12px; color: var(--muted); }
@media (max-width: 900px) {
  .hero { padding: 40px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { min-height: 440px; }
  .hv-main { width: 82%; }
}
@media (max-width: 520px) { .hero-visual { min-height: 380px; } .hv-sub { width: 58%; bottom: 20px; } }

/* cards with photos */
.card .media { aspect-ratio: 4/3; }
.card .media::after { display: none; }
.card .media img { transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.card:hover .media img { transform: scale(1.06); }
.tag-sm { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .16em; color: var(--cyan); margin-bottom: 8px; }

/* gallery */
.gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.g-item { position: relative; padding: 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; cursor: zoom-in; background: var(--panel); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .4s; filter: saturate(1.05); }
.g-item:hover img { transform: scale(1.06); filter: saturate(1.2); }
.g-item::after { content: ""; position: absolute; inset: 0; border-radius: 14px; box-shadow: inset 0 0 0 1px rgba(0,229,255,0); transition: box-shadow .3s; }
.g-item:hover::after { box-shadow: inset 0 0 0 2px rgba(0,229,255,.6); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; } .g-item.g-wide { grid-column: span 2; } }

.ig-cta { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 20px; padding: 18px 22px; border-radius: 16px; border: 1px solid var(--line); background: linear-gradient(100deg, rgba(0,229,255,.06), rgba(255,43,214,.08)); }
.ig-cta > div { display: flex; gap: 14px; align-items: center; }
.ig-cta svg { width: 32px; height: 32px; color: var(--magenta); }
.ig-cta b { display: block; font-family: var(--head); font-size: 18px; }
.ig-cta span { color: var(--muted); font-size: 14px; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(4,4,8,.94); display: grid; place-items: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1100px, 100%); max-height: 86vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb-close, .lb-nav { position: absolute; background: rgba(255,255,255,.08); border: 1px solid var(--line); color: #fff; border-radius: 50%; width: 48px; height: 48px; font-size: 28px; line-height: 1; cursor: pointer; }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-nav:hover { background: rgba(0,229,255,.2); }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* buttons: subtle lift */
.btn-primary:hover { transform: translateY(-2px); }
.card { will-change: transform; }
.book-grid > *, .form-grid > *, .hero-grid > * { min-width: 0; }
.field select, .field input { min-width: 0; max-width: 100%; }
.seg label { gap: 8px; flex-wrap: wrap; }
@media (max-width: 560px) { .seg { grid-template-columns: 1fr; } }

/* =========================================================
   v3 — accounts + UPI prebooking
   ========================================================= */
.acct-btn svg { width: 16px; height: 16px; }
@media (max-width: 900px) { .nav-cta .acct-btn { display: inline-flex; padding: 11px 12px; } .nav-cta .acct-btn span { display: none; } }
.login-hint { grid-column: 1 / -1; margin-top: 12px; font-size: 13px; color: var(--muted); }
.login-hint a { color: var(--cyan); font-weight: 600; }
.paypane { animation: fadeUp .35s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.back-link { background: none; border: 0; color: var(--muted); cursor: pointer; font: 600 14px var(--body); padding: 0; margin-bottom: 14px; }
.back-link:hover { color: var(--text); }
.pay-head { padding: 16px 18px; border-radius: 14px; background: linear-gradient(100deg, rgba(0,229,255,.08), rgba(255,43,214,.1)); border: 1px solid var(--line); margin-bottom: 18px; }
.pay-head .k { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.pay-amt { font-family: var(--head); font-size: 40px; font-weight: 700; line-height: 1.1; margin: 4px 0; }
.pay-head .muted { color: var(--muted); font-size: 14px; }
.pay-grid { display: grid; grid-template-columns: 220px 1fr; gap: 22px; align-items: start; margin-bottom: 20px; }
.qr-box { background: #fff; border-radius: 16px; padding: 12px; text-align: center; }
.qr-box img { width: 100%; aspect-ratio: 1; object-fit: contain; border-radius: 8px; }
.qr-amt { color: #333; font: 600 12px var(--body); margin-top: 4px; }
.pay-apps { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 10px 0 6px; }
.pay-apps .small { width: 100%; margin: 0; text-align: left; }
.qr-box .qr-missing { display: none; color: #333; font-size: 13px; padding: 40px 8px; }
.qr-box.noqr img { display: none; }
.qr-box.noqr .qr-missing { display: block; }
.upi-id { margin-top: 8px; width: 100%; background: #f1f1f5; border: 0; border-radius: 8px; padding: 8px; font: 600 13px var(--body); color: #111; cursor: pointer; word-break: break-all; }
.upi-id span { color: #7b5cff; margin-left: 6px; }
.pay-steps { margin: 0; padding-left: 20px; color: var(--muted); font-size: 15px; }
.pay-steps li { margin-bottom: 12px; }
.pay-steps b { color: var(--text); }
.btn-sm { padding: 7px 12px; font-size: 13px; }
@media (max-width: 560px) { .pay-grid { grid-template-columns: 1fr; } .qr-box { max-width: 260px; margin: 0 auto; } }
.pay-steps .small { display: block; text-align: left; color: var(--muted); font-size: 13px; margin-top: 6px; }
