/* ============================================================
   MAGIC INK — Premium Redesign 2026
   Aesthetic: Dark Luxury Ink Studio — Gothic Neon meets High Fashion
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Bebas+Neue&family=Space+Mono:wght@400;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --ink: #0a0a0f;
  --surface: #0f0f18;
  --glass: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --accent-v: #7c3aed;
  --accent-c: #06b6d4;
  --accent-p: #ec4899;
  --gold: #c9a84c;
  --text-primary: #f0eee8;
  --text-muted: #8a8878;
  --glow-v: 0 0 30px rgba(124,58,237,0.5);
  --glow-c: 0 0 30px rgba(6,182,212,0.5);
  --glow-p: 0 0 30px rgba(236,72,153,0.5);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-mono: 'Space Mono', monospace;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--accent-c);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.3s;
  mix-blend-mode: screen;
}

.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(6,182,212,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s, border-color 0.3s;
}

.cursor-glow {
  position: fixed;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,0.12), transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear;
}

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9990;
  opacity: 0.4;
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease;
}

.loader-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.logo-load {
  width: 130px;
  filter: drop-shadow(0 0 20px rgba(124,58,237,0.8));
  animation: logoReveal 1s cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes logoReveal {
  from { opacity: 0; transform: scale(0.7) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.load-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}

.load-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent-v), var(--accent-c), var(--accent-p));
  box-shadow: 0 0 12px var(--accent-c);
  transition: width 0.15s ease;
}

.load-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--text-muted);
  animation: blink 1.2s step-end infinite;
}

@keyframes blink { 50% { opacity: 0.3; } }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  z-index: 1000;
  transition: padding 0.4s, background 0.4s;
}

.nav.scrolled {
  padding: 12px 40px;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo { width: 100px; filter: drop-shadow(0 0 10px rgba(124,58,237,0.4)); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icons { display: flex; gap: 10px; align-items: center; }

.social-btn {
  width: 40px; height: 40px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn img { width: 18px; height: 18px; object-fit: contain; }

.social-btn:hover {
  background: rgba(124,58,237,0.2);
  border-color: var(--accent-v);
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(124,58,237,0.4);
}

.social-btn.whatsapp:hover {
  background: rgba(0,200,80,0.15);
  border-color: #00c850;
  box-shadow: 0 0 18px rgba(0,200,80,0.4);
}

/* ===== BOOKING BTN NAV ===== */
.btn {
  position: relative;
  overflow: hidden;
  padding: 11px 26px;
  border-radius: 3px;
  border: none;
  cursor: none;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: white;
  transition: all 0.3s ease;
}

.neon-btn {
  background: transparent;
  border: 1.5px solid var(--accent-v);
  color: var(--accent-v);
  box-shadow: inset 0 0 0 0 var(--accent-v);
  transition: all 0.35s ease;
}

.neon-btn:hover {
  background: var(--accent-v);
  color: white;
  box-shadow: var(--glow-v);
  transform: translateY(-2px);
}

.btn-cta {
  background: linear-gradient(135deg, var(--accent-v), var(--accent-p));
  color: white;
  border: none;
  box-shadow: 0 4px 30px rgba(124,58,237,0.4);
  border-radius: 3px;
}

.btn-cta:hover {
  box-shadow: 0 6px 40px rgba(124,58,237,0.7), 0 0 80px rgba(236,72,153,0.3);
  transform: translateY(-3px) scale(1.02);
}

.btn.big {
  padding: 16px 44px;
  font-size: 14px;
  letter-spacing: 4px;
  margin-top: 32px;
}

.ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(1.3);
  transform: scale(1.05);
  transition: filter 2s ease;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(124,58,237,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(236,72,153,0.15) 0%, transparent 50%),
    linear-gradient(to bottom, transparent 50%, var(--ink) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--accent-c);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 160px);
  line-height: 0.9;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #fff 20%, rgba(124,58,237,0.8) 60%, rgba(236,72,153,0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(124,58,237,0.4));
  opacity: 0;
  animation: fadeUp 1s 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.5vw, 22px);
  font-style: italic;
  color: var(--text-muted);
  margin-top: 16px;
  letter-spacing: 3px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-v), transparent);
  margin: 28px auto;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

.hero-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
  margin-bottom: 10px;
}

.badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.hero-cta {
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s 2s both;
}

.scroll-hint span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--accent-v), transparent);
  animation: scrollDrop 2s ease infinite;
}

@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ===== FLOATING ORBS ===== */
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.15;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 400px; height: 400px;
  background: var(--accent-v);
  top: -100px; left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px; height: 300px;
  background: var(--accent-p);
  bottom: 20%; right: -80px;
  animation-delay: -7s;
}

.orb-3 {
  width: 250px; height: 250px;
  background: var(--accent-c);
  top: 50%; left: 40%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.1); }
  66%  { transform: translate(-20px, 40px) scale(0.95); }
}

/* ===== INFO BANNER ===== */
.info-banner {
  position: relative;
  padding: 100px 8%;
  background: linear-gradient(180deg, var(--ink) 0%, var(--surface) 50%, var(--ink) 100%);
  overflow: hidden;
}

.info-banner::before {
  content: 'JAGUA';
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(100px, 20vw, 220px);
  color: rgba(255,255,255,0.02);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: 10px;
  white-space: nowrap;
}

.info-wrapper {
  max-width: 860px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--accent-c);
  margin-bottom: 30px;
}

.info-wrapper p {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 2;
  color: rgba(240,238,232,0.7);
  margin-bottom: 20px;
  font-weight: 300;
}

.info-highlight {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 40px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 3px;
  color: white;
  border: 1px solid var(--accent-v);
  border-radius: 2px;
  background: rgba(124,58,237,0.1);
  backdrop-filter: blur(10px);
  box-shadow: var(--glow-v);
}

.info-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 40px 0;
}

.tip-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  transition: all 0.3s;
}

.tip-card:hover {
  border-color: rgba(124,58,237,0.4);
  background: rgba(124,58,237,0.06);
  transform: translateY(-4px);
}

.tip-icon {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}

.tip-card p {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: rgba(240,238,232,0.8) !important;
  margin: 0 !important;
}

/* ===== SECTION BASE ===== */
.section {
  padding: 100px 40px;
  text-align: center;
  position: relative;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--accent-c);
  margin-bottom: 16px;
  display: block;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 3px;
  color: var(--text-primary);
  line-height: 1;
}

/* ===== BEFORE AFTER ===== */
.ba-wrapper {
  margin-top: 60px;
}

.ba-container {
  position: relative;
  width: 90%;
  max-width: 520px;
  margin: auto;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
  border: 1px solid var(--border);
}

.ba-container img { width: 100%; display: block; }

.after {
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  overflow: hidden;
  border-right: 2px solid white;
}

.ba-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.7);
  border-radius: 2px;
  top: 12px;
  pointer-events: none;
}

.ba-label.left { left: 12px; color: var(--text-muted); }
.ba-label.right { right: 12px; color: var(--accent-c); }

.ba-slider-wrap { margin-top: 20px; }

#slider {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-v), var(--accent-c));
  outline: none;
  border-radius: 2px;
  cursor: none;
}

#slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(124,58,237,0.6);
  cursor: grab;
}

/* ===== GALLERY / PORTFOLIO ===== */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0 30px;
}

.filter-buttons button {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  padding: 9px 24px;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: none;
  transition: all 0.3s;
}

.filter-buttons button:hover {
  border-color: var(--accent-c);
  color: var(--accent-c);
}

.filter-buttons button.active {
  background: var(--accent-c);
  border-color: var(--accent-c);
  color: #000;
  box-shadow: var(--glow-c);
}

.gallery-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--text-muted);
  margin: 40px 0 20px;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  text-align: left;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  cursor: none;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s forwards;
  transition: border-color 0.3s;
}

.gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-item:nth-child(4) { animation-delay: 0.2s; }
.gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-item:nth-child(6) { animation-delay: 0.3s; }
.gallery-item:nth-child(7) { animation-delay: 0.35s; }
.gallery-item:nth-child(8) { animation-delay: 0.4s; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), filter 0.5s;
  filter: saturate(0.8);
}

.gallery-item:hover {
  border-color: rgba(124,58,237,0.5);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.2) brightness(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
}

/* Watermark */
.gallery-item::after {
  content: "MAGIC INK";
  position: absolute;
  bottom: 8px; right: 8px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
}

/* ===== LIGHTBOX ===== */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(20px);
}

#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 4px;
  border: 1px solid var(--border);
  box-shadow: 0 0 80px rgba(124,58,237,0.3);
  animation: lightboxIn 0.3s cubic-bezier(0.16,1,0.3,1);
}

.lightbox-close {
  position: absolute;
  top: 30px; right: 30px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  cursor: none;
  transition: color 0.3s;
}

.lightbox-close:hover { color: white; }

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ===== PRICE SECTION ===== */
.price-section {
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
}

.price-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.1), transparent 60%);
  pointer-events: none;
}

.price-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.price-box {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 340px;
  padding: 36px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}

.price-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-v), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.price-box:hover::before { opacity: 1; }

.price-box:hover {
  transform: translateY(-10px);
  border-color: rgba(124,58,237,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-v);
}

.price-box h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.price-box ul { list-style: none; }

.price-box ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 15px;
  font-weight: 300;
  transition: padding 0.2s;
}

.price-box ul li:hover {
  padding-left: 6px;
}

.price-box ul li span { color: rgba(240,238,232,0.7); }

.price-box ul li b {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--accent-c);
  font-weight: 400;
}

.note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  font-style: italic;
}

.open-hours {
  margin-top: 60px;
  padding: 30px 50px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: inline-block;
}

.open-hours h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--accent-c);
  margin-bottom: 10px;
}

.open-hours p {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 3px;
  color: var(--text-primary);
}

/* ===== BOOKING ===== */
.booking {
  max-width: 460px;
  margin: 60px auto 0;
  padding: 44px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(20px);
}

.booking input,
.booking select {
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.booking input::placeholder { color: var(--text-muted); }

.booking input:focus,
.booking select:focus {
  border-color: var(--accent-v);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}

.booking select option { background: #1a1a2e; }

.booking button {
  padding: 15px;
  background: linear-gradient(135deg, var(--accent-v), var(--accent-p));
  border: none;
  border-radius: 3px;
  color: white;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  cursor: none;
  transition: all 0.3s;
  margin-top: 6px;
}

.booking button:hover {
  box-shadow: 0 8px 30px rgba(124,58,237,0.5), var(--glow-p);
  transform: translateY(-2px);
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 100px 8%;
  background: var(--surface);
  text-align: center;
}

.map-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
}

.map-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 440px;
  padding: 28px;
  transition: all 0.4s;
}

.map-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124,58,237,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.map-card h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent-c);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.map-card iframe {
  width: 100%; height: 240px;
  border: none;
  border-radius: 4px;
  filter: grayscale(0.6) invert(0.9) hue-rotate(170deg);
}

.map-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
}

.map-btn:hover {
  background: white;
  border-color: white;
  color: #000;
}

/* ===== FOOTER ===== */
.footer {
  padding: 50px 8%;
  background: var(--ink);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo img { width: 70px; opacity: 0.6; }

.copyright {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.powered {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.ig-credit {
  color: var(--accent-c);
  text-decoration: none;
  transition: 0.3s;
}

.ig-credit:hover {
  color: white;
  text-shadow: var(--glow-c);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== TICKER / MARQUEE ===== */
.ticker-wrap {
  overflow: hidden;
  background: rgba(124,58,237,0.08);
  border-top: 1px solid rgba(124,58,237,0.2);
  border-bottom: 1px solid rgba(124,58,237,0.2);
  padding: 14px 0;
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker 25s linear infinite;
}

.ticker-item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--text-muted);
  padding: 0 50px;
  white-space: nowrap;
}

.ticker-item .dot {
  color: var(--accent-v);
  margin: 0 20px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== STATS ROW ===== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 60px 0;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  padding: 40px 30px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}

.stat-item:last-child { border-right: none; }

.stat-item:hover { background: var(--glass); }

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--accent-v), var(--accent-c));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ===== FLOATING BOOKING BUTTON ===== */
.float-wa {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 30px rgba(37,211,102,0.5);
  animation: waPulse 3s ease infinite;
  text-decoration: none;
  cursor: none;
  transition: transform 0.3s;
}

.float-wa:hover { transform: scale(1.1) translateY(-3px); }

.float-wa img { width: 28px; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 30px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 50px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-ring, .cursor-glow { display: none; }

  .nav {
    padding: 14px 20px;
    background: rgba(10,10,15,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }

  .logo { width: 80px; }

  .nav-right { gap: 10px; }

  .social-btn { width: 36px; height: 36px; }
  .social-btn img { width: 16px; height: 16px; }

  .btn { padding: 9px 18px; font-size: 11px; letter-spacing: 2px; }

  .hero h1 { font-size: clamp(60px, 18vw, 100px); }

  .section { padding: 70px 20px; }

  .price-box { width: 100%; }

  .open-hours { padding: 20px 30px; }
  .open-hours p { font-size: 28px; }

  .booking { padding: 28px 24px; }

  .map-card { width: 100%; }

  .stats-row { gap: 0; }
  .stat-item { min-width: 50%; border-bottom: 1px solid var(--border); }

  .footer-inner { flex-direction: column; text-align: center; }

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }

  .float-wa { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .float-wa img { width: 24px; }

  body { cursor: auto !important; }
  * { cursor: auto !important; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 68px; }
  .stat-item { min-width: 100%; border-right: none; }
  .info-tips { grid-template-columns: 1fr; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--accent-v); border-radius: 2px; }