/* ============================================================
   ALIAS PARK — Kids & Adults Play Area & Trampoline Park
   Vibrant / playful / energetic design system
   ============================================================ */

/* ---------- Fonts (self-hosted, offline-ready) ---------- */
@font-face {
  font-family: 'Baloo 2';
  src: url('../fonts/baloo2-var.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito-var.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  --orange:  #FF6B2C;
  --orange-d:#E8551A;
  --pink:    #FF2E88;
  --pink-d:  #D91F70;
  --teal:    #00C389;
  --teal-d:  #00A371;
  --yellow:  #FFC93C;
  --yellow-d:#E8B21E;
  --purple:  #7B2FF2;
  --dark:    #241432;
  --dark-2:  #2F1B42;
  --cream:   #FFF8F0;
  --white:   #FFFFFF;
  --ink:     #2A2035;
  --grey:    #6E6478;
  --line:    #F0E4F5;

  --font-head: 'Baloo 2', 'Comic Sans MS', cursive;
  --font-body: 'Nunito', 'Segoe UI', Arial, sans-serif;

  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 10px 30px rgba(36, 20, 50, 0.10);
  --shadow-lg: 0 24px 60px rgba(36, 20, 50, 0.16);
  --max: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 1.02rem;
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; }
.container { max-width: var(--max); width: 100%; margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
section[id] { scroll-margin-top: 86px; }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--pink), var(--purple));
  z-index: 400;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 2px 10px rgba(255,46,136,.45);
  transition: width .06s linear;
  pointer-events: none;
}

/* ---------- Utility colors ---------- */
.text-orange { color: var(--orange); }
.text-pink   { color: var(--pink); }
.text-teal   { color: var(--teal); }
.text-yellow { color: var(--yellow-d); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 10px 24px rgba(255,107,44,.38); position: relative; overflow: hidden; }
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-22deg);
  transition: left .55s ease;
}
.btn-primary:hover::before { left: 135%; }
.btn-primary:hover { background: var(--orange-d); box-shadow: 0 14px 30px rgba(255,107,44,.45); }
.btn-outline { border: 2.5px solid var(--dark); color: var(--dark); background: transparent; }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-yellow { background: var(--yellow); color: var(--dark); box-shadow: 0 10px 24px rgba(255,201,60,.45); position: relative; overflow: hidden; }
.btn-yellow::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-22deg);
  transition: left .55s ease;
}
.btn-yellow:hover::before { left: 135%; }
.btn-lg { padding: 17px 38px; font-size: 1.12rem; }
.btn-sm { padding: 10px 22px; font-size: .95rem; }
.btn-block { display: block; width: 100%; }

/* ---------- Announcement bar ---------- */
.announce {
  background: linear-gradient(90deg, var(--orange), var(--pink) 55%, var(--purple));
  color: var(--white);
  text-align: center;
  padding: 9px 16px;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .12em;
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  transition: box-shadow .25s ease, background .25s ease;
}
.navbar.scrolled { box-shadow: 0 6px 24px rgba(36,20,50,.12); background: rgba(255,255,255,.98); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
  max-width: 100%;
}
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: .02em;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  flex-shrink: 1;
  min-width: 0;
  max-width: 100%;
}
.logo img {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
}
.logo-a  { color: var(--orange); }
.logo-l  { color: var(--pink); }
.logo-i  { color: var(--teal); }
.logo-a2 { color: var(--yellow-d); }
.logo-s  { color: var(--purple); }
.logo-park { color: var(--dark); margin-left: 8px; font-size: 1.15rem; letter-spacing: .18em; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.nav-cta) {
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav-links a:not(.nav-cta):hover { color: var(--orange-d); }
.nav-links a.active { color: var(--orange-d); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  transition: width .22s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.hamburger span {
  display: block;
  width: 26px; height: 3.5px;
  border-radius: 3px;
  background: var(--dark);
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ---------- Ticker strip ---------- */
.ticker {
  background: linear-gradient(90deg, var(--orange), var(--pink) 50%, var(--purple));
  overflow: hidden;
  padding: 13px 0;
  transform: rotate(-1.1deg) scale(1.02);
  position: relative;
  z-index: 5;
  margin: -14px 0 -6px;
  box-shadow: 0 14px 34px rgba(255,46,136,.28);
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  animation: tickerScroll 26s linear infinite;
}
.ticker-track span {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
  font-size: 1.02rem;
  letter-spacing: .16em;
  padding: 0 26px;
  position: relative;
}
.ticker-track span::after {
  content: '\2022';
  position: absolute;
  right: -8px;
  color: var(--yellow);
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1000px 500px at 110% -10%, rgba(255,46,136,.10), transparent 60%),
    radial-gradient(900px 480px at -10% 110%, rgba(0,195,137,.10), transparent 60%),
    var(--cream);
  overflow: hidden;
  padding: 84px 0 96px;
}
.hero-dots { position: absolute; inset: 0; pointer-events: none; }
.dot { position: absolute; border-radius: 50%; opacity: .85; animation: bounceDot 3.4s ease-in-out infinite; }
.dot-1 { width: 26px; height: 26px; background: var(--yellow); top: 12%; left: 6%; animation-delay: 0s; }
.dot-2 { width: 14px; height: 14px; background: var(--pink);   top: 24%; left: 46%; animation-delay: .5s; }
.dot-3 { width: 20px; height: 20px; background: var(--teal);   top: 70%; left: 4%;  animation-delay: 1s; }
.dot-4 { width: 12px; height: 12px; background: var(--orange); top: 16%; right: 8%; animation-delay: .3s; }
.dot-5 { width: 30px; height: 30px; background: rgba(123,47,242,.25); bottom: 12%; right: 40%; animation-delay: .8s; }
.dot-6 { width: 16px; height: 16px; background: var(--pink);   bottom: 20%; right: 5%; animation-delay: 1.3s; }
@keyframes bounceDot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-kicker {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--pink);
  font-size: .92rem;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.3rem);
  font-weight: 800;
  margin-bottom: 22px;
}
.hero-sub { font-size: 1.14rem; color: var(--grey); max-width: 54ch; margin-bottom: 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-weight: 800;
  font-size: .85rem;
  padding: 8px 16px;
  border-radius: 999px;
  animation: chipPop .55s cubic-bezier(.34,1.56,.64,1) backwards;
}
.chip:nth-child(1) { animation-delay: .45s; }
.chip:nth-child(2) { animation-delay: .6s; }
.chip:nth-child(3) { animation-delay: .75s; }
@keyframes chipPop {
  0% { opacity: 0; transform: scale(.5) translateY(14px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.chip-orange { background: rgb(226, 165, 137); color: var(--black); }
.chip-teal   { background: rgba(0,195,137,.14);  color: var(--black); }
.chip-pink   { background: rgba(255,46,136,.12); color: var(--black); }
.hero-media { position: relative; }
.hero-blob {
  position: absolute;
  inset: -6% -8% -10% -8%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 60%, var(--purple) 100%);
  border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  animation: blobMorph 9s ease-in-out infinite;
  z-index: 0;
}
@keyframes blobMorph {
  0%, 100% { border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%; transform: rotate(0deg); }
  50% { border-radius: 55% 45% 42% 58% / 45% 55% 45% 55%; transform: rotate(3deg); }
}
.hero-media img {
  position: relative;
  z-index: 1;
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  will-change: transform;
}
.float-card {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  animation: floatY 4s ease-in-out infinite;
}
.float-card-1 { top: 6%; left: -34px; animation-delay: 0s; }
.float-card-2 { bottom: 7%; right: -22px; animation-delay: 2s; }
.float-num { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--orange); line-height: 1.1; }
.float-card-2 .float-num { color: var(--teal-d); }
.float-label { font-size: .78rem; font-weight: 800; color: var(--grey); }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Stats ---------- */
.stats { background: var(--dark); padding: 52px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  display: block;
}
.stat:nth-child(1) .stat-num { color: var(--orange); }
.stat:nth-child(2) .stat-num { color: var(--yellow); }
.stat:nth-child(3) .stat-num { color: var(--pink); }
.stat:nth-child(4) .stat-num { color: var(--teal); }
.stat-label { color: rgba(255,255,255,.75); font-weight: 700; letter-spacing: .06em; font-size: .95rem; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-kicker {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--orange);
  font-size: .9rem;
  margin-bottom: 10px;
}
.kicker-light { color: var(--yellow); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 14px; }
.section-sub { color: var(--grey); font-size: 1.06rem; }

/* ---------- Attractions ---------- */
.attractions { background: var(--white); }
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.attraction-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.attraction-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(255,46,136,.20), 0 10px 24px rgba(255,107,44,.14);
  border-color: transparent;
  background: linear-gradient(180deg, var(--white), #FFF7F2);
}
.card-img { overflow: hidden; }
.card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .45s ease;
}
.attraction-card:hover .card-img img { transform: scale(1.07); }
.card-body { padding: 20px 22px 24px; }
.age-tag {
  display: inline-block;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.tag-orange { background: rgba(255,107,44,.14); color: var(--orange-d); }
.tag-pink   { background: rgba(255,46,136,.12); color: var(--pink-d); }
.tag-teal   { background: rgba(0,195,137,.14);  color: var(--teal-d); }
.tag-yellow { background: rgba(255,201,60,.22); color: #9A7508; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card-body p { font-size: .93rem; color: var(--grey); }

/* ---------- Zones ---------- */
.zones { background: var(--cream); }
.zones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.zone-card {
  background: var(--white);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.zone-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.zone-img { overflow: hidden; }
.zone-img img { width: 100%; height: 300px; object-fit: cover; transition: transform .5s ease; }
.zone-card:hover .zone-img img { transform: scale(1.06); }
.zone-body { padding: 30px 32px 34px; }
.zone-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
  color: var(--white);
}
.badge-kids   { background: linear-gradient(90deg, var(--teal), #57DFAF); }
.badge-adults { background: linear-gradient(90deg, var(--orange), var(--pink)); }
.zone-body h3 { font-size: 1.5rem; margin-bottom: 12px; }
.zone-body > p { color: var(--grey); margin-bottom: 18px; }
.zone-list { list-style: none; }
.zone-list li {
  position: relative;
  padding: 7px 0 7px 28px;
  font-weight: 700;
  font-size: .96rem;
}
.zone-list li::before {
  content: '';
  position: absolute;
  left: 4px; top: 14px;
  width: 10px; height: 10px;
  border-radius: 50%;
}
.zone-kids .zone-list li::before { background: var(--teal); }
.zone-adults .zone-list li::before { background: var(--teal); }

/* ---------- Pricing ---------- */
.pricing { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: stretch;
  margin-bottom: 40px;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 26px 60px rgba(123,47,242,.16), 0 10px 24px rgba(255,201,60,.16); border-color: transparent; }
.price-card h3 { font-size: 1.3rem; }
.price-duration { font-weight: 800; color: var(--grey); font-size: .88rem; letter-spacing: .06em; text-transform: uppercase; margin: 4px 0 14px; }
.price-amount { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; line-height: 1; margin-bottom: 18px; }
.price-amount span { font-size: 1rem; font-weight: 700; color: var(--grey); }
.price-card:nth-child(1) .price-amount { color: var(--black); }
.price-card:nth-child(2) .price-amount { color: var(--black); }
.price-card:nth-child(3) .price-amount { color: var(--black); }
.price-card:nth-child(4) .price-amount { color: var(--black); }
.price-list { list-style: none; margin-bottom: 24px; flex-grow: 1; }
.price-list li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: .93rem;
  color: var(--ink);
  font-weight: 600;
}
.price-list li::before {
  content: '';
  position: absolute;
  left: 2px; top: 13px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--teal);
}
.price-featured {
  border: 2.5px solid var(--orange);
  background: linear-gradient(180deg, #FFF3EA 0%, var(--white) 45%);
  box-shadow: 0 18px 44px rgba(255,107,44,.18);
}
.popular-tag {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(255,107,44,.4);
}
.family-banner {
  background: linear-gradient(100deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: var(--radius);
  padding: 36px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
}
.family-copy h3 { font-size: 1.6rem; color: var(--yellow); margin-bottom: 6px; }
.family-copy p { color: rgba(255,255,255,.82); max-width: 62ch; }

/* ---------- Parties ---------- */
.parties { background: linear-gradient(180deg, var(--cream) 0%, #FFF0F6 100%); }
.parties-inner {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 60px;
  align-items: center;
}
.parties-media { position: relative; }
.parties-media img {
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}
.party-float {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  border-radius: 20px;
  padding: 16px 24px;
  box-shadow: 0 16px 36px rgba(255,46,136,.4);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.party-float span { font-size: .85rem; font-weight: 700; opacity: .92; }
.parties-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); margin-bottom: 14px; }
.parties-copy .section-sub { margin-bottom: 26px; }
.party-packages { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.party-pkg {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.party-pkg:hover {
  border-color: var(--pink);
  transform: translateX(6px);
  box-shadow: var(--shadow);
}
.pkg-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.pkg-head h4 { font-size: 1.15rem; color: var(--black); }
.pkg-price { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--dark); }
.party-pkg p { font-size: .9rem; color: var(--grey); margin-top: 4px; }

/* ---------- Gallery ---------- */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}
.g-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.g-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(36,20,50,.55));
  opacity: 0;
  transition: opacity .3s ease;
}
.g-item:hover::after { opacity: 1; }
.g-item:hover img { transform: scale(1.08); }
.g-tall { grid-row: span 2; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 10, 30, .93);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 88vw;
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
  object-fit: contain;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  transition: background .2s ease, transform .2s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.28); transform: scale(1.06); }
.lb-close { top: 26px; right: 30px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.06); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lb-next:hover { transform: translateY(-50%) scale(1.06); }
/* CSS-drawn glyphs (functional controls, no icon fonts) */
.lb-close::before, .lb-close::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 24px; height: 3px;
  background: var(--white);
  border-radius: 3px;
}
.lb-close::before { transform: translate(-50%,-50%) rotate(45deg); }
.lb-close::after  { transform: translate(-50%,-50%) rotate(-45deg); }
.lb-prev::before, .lb-next::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 17px; height: 17px;
  border-top: 4px solid var(--white);
  border-right: 4px solid var(--white);
  border-radius: 3px;
}
.lb-prev::before { transform: translate(-38%,-50%) rotate(-135deg); }
.lb-next::before { transform: translate(-62%,-50%) rotate(45deg); }

/* ---------- Safety ---------- */
.safety { background: var(--dark); color: var(--white); }
.safety-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}
.safety h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); margin-bottom: 14px; color: var(--white); }
.safety-sub { color: rgba(255,255,255,.78); margin-bottom: 34px; }
.safety-points { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 30px; }
.safety-point { display: flex; gap: 15px; align-items: flex-start; }
.sp-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
}
.safety-point:nth-child(6n+1) .sp-num { background: var(--teal); }
.safety-point:nth-child(6n+2) .sp-num { background: var(--teal); }
.safety-point:nth-child(6n+3) .sp-num { background: var(--teal); }
.safety-point:nth-child(6n+4) .sp-num { background: var(--teal); color: var(--dark); }
.safety-point:nth-child(6n+5) .sp-num { background:var(--teal); }
.safety-point:nth-child(6n+6) .sp-num { background: var(--teal); }
.safety-point h4 { font-size: 1.02rem; margin-bottom: 4px; color: var(--white); }
.safety-point p { font-size: .87rem; color: rgba(255,255,255,.72); }
.safety-media img {
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-top: 5px solid var(--dark);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testi-card:nth-child(2) { border-top-color: var(--dark); }
.testi-card:nth-child(3) { border-top-color: var(--dark); }
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-quote { font-size: .98rem; color: var(--ink); flex-grow: 1; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.av-orange { background: var(--dark); }
.av-teal   { background: var(--dark); }
.av-pink   { background: var(--dark); }
.testi-person h4 { font-size: 1.02rem; }
.testi-person p { font-size: .82rem; color: var(--grey); }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.faq-head { position: sticky; top: 110px; }
.faq-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); margin-bottom: 12px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.faq-item.active { border-color: var(--orange); box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  text-align: left;
  padding: 19px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.faq-arrow {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,107,44,.12);
  position: relative;
  transition: transform .28s ease, background .28s ease;
}
.faq-arrow::before, .faq-arrow::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 11px; height: 2.6px;
  background: var(--orange);
  border-radius: 2px;
  transform: translate(-50%,-50%);
}
.faq-arrow::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .28s ease; }
.faq-item.active .faq-arrow { transform: rotate(45deg); background: var(--orange); }
.faq-item.active .faq-arrow::before, .faq-item.active .faq-arrow::after { background: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}
.faq-a p { padding: 0 24px 20px; color: var(--grey); font-size: .95rem; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, #FFF0F6 0%, var(--cream) 100%); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: start;
}
.contact h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); margin-bottom: 12px; }
.contact .section-sub { margin-bottom: 30px; }
.hours-table {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-bottom: 26px;
}
.hours-table h3 { font-size: 1.25rem; margin-bottom: 14px; color: var(--yellow); }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,.16);
  font-size: .95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { font-weight: 800; color: var(--teal); }
.contact-lines { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-line h4 { font-size: 1rem; color: var(--orange); margin-bottom: 4px; }
.contact-line p { font-size: .9rem; color: var(--grey); }
.contact-line a:hover { color: var(--orange); }
.booking-form {
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-lg);
  padding: 36px 36px 32px;
  border-top: 6px solid var(--orange);
}
.booking-form h3 { font-size: 1.5rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .96rem;
  padding: 13px 16px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.form-group input.error { border-color: var(--pink); background: #FFF0F6; }
.form-note { font-size: .82rem; color: var(--grey); margin-top: 14px; text-align: center; }
.form-success {
  margin-top: 20px;
  background: rgba(0,195,137,.1);
  border: 2px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
}
.form-success h4 { color: var(--teal-d); margin-bottom: 4px; }
.form-success p { font-size: .93rem; color: var(--ink); }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: rgba(255,255,255,.82); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-top: 64px;
  padding-bottom: 48px;
}
.logo-footer { margin-bottom: 16px; display: inline-flex; }
.logo-footer .logo-park { color: var(--white); }
.footer-about p { font-size: .93rem; color: rgba(255,255,255,.65); }
.footer-col h4 {
  color: var(--white);
  font-size: 1.08rem;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: .93rem;
  color: rgba(255,255,255,.68);
  transition: color .18s ease, transform .18s ease;
}
.footer-col a:hover { color: var(--yellow); transform: translateX(4px); }
.footer-col p { font-size: .93rem; color: rgba(255,255,255,.68); margin-bottom: 10px; }
.footer-col p a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 0;
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(255,107,44,.45);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background .2s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--orange-d); }
.to-top::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 15px; height: 15px;
  border-top: 4px solid var(--white);
  border-left: 4px solid var(--white);
  border-radius: 3px;
  transform: translate(-50%,-32%) rotate(45deg);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-56px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(56px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-zoom {
  opacity: 0;
  transform: scale(.86);
  transition: opacity .7s ease, transform .7s cubic-bezier(.34,1.56,.64,1);
}
.reveal-zoom.visible { opacity: 1; transform: scale(1); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .attractions-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 26px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-inner { grid-template-columns: 1fr; gap: 44px; }
  .safety-media img { aspect-ratio: 16 / 10; }
  .faq-inner { grid-template-columns: 1fr; gap: 36px; }
  .faq-head { position: static; }
  .parties-inner { grid-template-columns: 1fr; gap: 64px; }
  .parties-media { max-width: 560px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero { padding: 56px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-media { max-width: 520px; margin: 0 auto; }
  .float-card-1 { left: -8px; }
  .float-card-2 { right: -6px; }
  .zones-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .testi-grid { grid-template-columns: 1fr; }
  .safety-points { grid-template-columns: 1fr; }
  .family-banner { flex-direction: column; text-align: center; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 82vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    box-shadow: -20px 0 60px rgba(36,20,50,.2);
    transition: right .32s ease;
    z-index: 200;
  }
  .nav-links.open { right: 0; }
  .nav-links a:not(.nav-cta) { font-size: 1.28rem; }
  .hamburger { display: flex; position: relative; z-index: 210; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-close { top: 12px; right: 12px; }
}

@media (max-width: 560px) {
  .attractions-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .contact-lines { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-tall { grid-row: span 1; }
  .party-float { left: 8px; bottom: -18px; }
  .hero-ctas .btn { width: 100%; }
  .booking-form { padding: 26px 20px 24px; }
  .ticker { padding: 10px 0; margin: -10px 0 -4px; }
  .ticker-track span { font-size: .88rem; padding: 0 18px; }
  .nav-links { gap: 22px; }
  .logo { font-size: 1.65rem; }
  .logo img { max-width: 120px; }
  .nav-inner { gap: 10px; }
  .hamburger { padding: 10px 4px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-zoom { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
  .chip { animation: none; opacity: 1; }
}
