/* ═══════════════════════════════════════════════════════
   FUNTAZIA WEBSITE — STYLESHEET
   Brand colours: Navy #0f1123 | Cyan #00D4FF | Pink #E8175E
═══════════════════════════════════════════════════════ */

/* ── Variables & Reset ── */
:root {
  --navy:       #0f1123;
  --navy-mid:   #161b35;
  --navy-card:  #1c2240;
  --navy-light: #242952;
  --cyan:       #00D4FF;
  --cyan-dark:  #009cc0;
  --pink:       #E8175E;
  --pink-dark:  #b01048;
  --gold:       #FFD060;
  --white:      #ffffff;
  --off-white:  #e8eaf6;
  --gray:       #9aa3c2;
  --success:    #00c853;
  --font-head:  'Bebas Neue', sans-serif;
  --font-body:  'Poppins', sans-serif;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 8px 32px rgba(0,0,0,.35);
  --shadow-lg:  0 16px 56px rgba(0,0,0,.5);
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .3px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-lg   { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm   { padding: 9px 20px; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-pink       { background: var(--pink); color: #fff; }
.btn-pink:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,23,94,.4); }

.btn-cyan       { background: var(--cyan); color: var(--navy); font-weight: 700; }
.btn-cyan:hover { background: #33ddff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,212,255,.4); }

.btn-ghost       { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

.btn-outline-cyan       { background: transparent; color: var(--cyan); border: 1.5px solid var(--cyan); }
.btn-outline-cyan:hover { background: var(--cyan); color: var(--navy); transform: translateY(-2px); }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 1px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: .75rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}
.navbar.scrolled {
  background: rgba(15,17,35,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height: 52px;
  width: auto;
  transition: height .3s;
}
.navbar.scrolled .nav-logo img { height: 42px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 50px;
  color: var(--off-white);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--cyan);
  background: rgba(0,212,255,.1);
}
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta   { padding: 10px 22px; font-size: .88rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,17,35,.88) 0%,
    rgba(15,17,35,.65) 50%,
    rgba(15,17,35,.75) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  animation: float-up linear infinite;
  opacity: 0;
}
@keyframes float-up {
  0%   { transform: translateY(0) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .6; }
  100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-top: 100px;
  padding-bottom: 80px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.75rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .5px;
  background: rgba(0,212,255,.15);
  color: var(--cyan);
  border: 1px solid rgba(0,212,255,.3);
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: normal;
  color: var(--cyan);
  text-shadow: 0 0 40px rgba(0,212,255,.5);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--off-white);
  opacity: .85;
  margin-bottom: 2.25rem;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding: 5px 0;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--cyan);
  border-radius: 2px;
  animation: scroll-wheel 1.8s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: .3; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}


/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-card) 100%);
  border-top: 1px solid rgba(0,212,255,.15);
  border-bottom: 1px solid rgba(0,212,255,.15);
  padding: 32px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 40px;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  color: var(--cyan);
  line-height: 1;
}
.stat-plus  { font-family: var(--font-head); font-size: 2rem; color: var(--cyan); line-height: 1; }
.stat-inf   { font-size: 3rem; }
.stat-label { font-size: .8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); }
.stat-sep   { width: 1px; height: 48px; background: rgba(255,255,255,.12); }


/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about-section {
  padding: 100px 0;
  background: var(--navy);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text { padding-right: 20px; }
.about-text .section-title { text-align: left; margin-bottom: 1.25rem; }
.about-text .section-tag   { display: block; margin-bottom: .5rem; }
.about-desc {
  font-size: 1rem;
  color: var(--off-white);
  opacity: .85;
  margin-bottom: 1rem;
  line-height: 1.75;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 1.5rem 0 2rem;
}
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .9rem;
  color: var(--off-white);
}
.feat-check {
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform .6s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }

.about-logo-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px; height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--navy);
  box-shadow: var(--shadow);
  background: var(--navy-mid);
}
.about-logo-badge img { width: 100%; height: 100%; object-fit: cover; }


/* ══════════════════════════════════════════
   ATTRACTIONS
══════════════════════════════════════════ */
.attractions-section {
  padding: 100px 0;
  background: var(--navy-mid);
}
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.attr-card {
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
}
.attr-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,212,255,.2);
}
.attr-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.attr-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.attr-card:hover .attr-img-wrap img { transform: scale(1.07); }

.attr-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(15,17,35,.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.attr-badge {
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.attr-badge.cyan { background: var(--cyan); color: var(--navy); }
.attr-badge.pink { background: var(--pink); color: #fff; }
.attr-badge.gold { background: var(--gold); color: var(--navy); }

.attr-body { padding: 28px; }
.attr-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  display: block;
}
.attr-body h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  letter-spacing: .5px;
  margin-bottom: .75rem;
  color: var(--white);
}
.attr-body p {
  font-size: .92rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.attr-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.attr-list li {
  font-size: .88rem;
  color: var(--off-white);
  opacity: .8;
  padding-left: 16px;
  position: relative;
}
.attr-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--cyan);
}


/* ══════════════════════════════════════════
   TINSELTOWN SECTION
══════════════════════════════════════════ */
.tinseltown-section { background: #0a0a0a; }

.tt-hero {
  position: relative;
  padding: 80px 0 60px;
  background: #0a0a0a;
  overflow: hidden;
}
.tt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,23,94,.12) 0%, transparent 70%);
  pointer-events: none;
}
.tt-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.tt-logo {
  max-width: 480px;
  width: 90%;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(232,23,94,.25);
}
.tt-tagline {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  opacity: .85;
}

/* Menu Wrapper */
.menu-wrapper { padding: 20px 0 80px; }

/* Menu Tabs */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.tab-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.tab-btn:hover { color: var(--white); background: rgba(255,255,255,.12); }
.tab-btn.active {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
  box-shadow: 0 4px 16px rgba(232,23,94,.35);
}

/* Menu Panels */
.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-note {
  text-align: center;
  font-size: .88rem;
  color: var(--gray);
  margin-bottom: 1.75rem;
  font-style: italic;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.menu-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}
.menu-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-3px);
}
.menu-card.featured {
  border-color: rgba(232,23,94,.4);
  background: rgba(232,23,94,.08);
}
.menu-card.signature {
  border-color: var(--gold);
  background: rgba(255,208,96,.06);
}
.mc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: .6rem;
}
.mc-head h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.mc-price {
  font-size: .82rem;
  font-weight: 700;
  color: var(--pink);
  white-space: nowrap;
  background: rgba(232,23,94,.12);
  padding: 3px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}
.menu-card p {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.55;
}
.menu-sub-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}

/* Category tabs within burgers */
.cat-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 2rem;
}
.cat-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.cat-btn:hover { color: var(--white); }
.cat-btn.active { background: var(--cyan); color: var(--navy); border-color: var(--cyan); }
.cat-panel { display: none; }
.cat-panel.active { display: block; }

/* Wings */
.wings-head {
  text-align: center;
  margin-bottom: 1.75rem;
}
.wings-head h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: .35rem;
}
.wings-head p { font-size: .9rem; color: var(--gray); }

.wings-sizes {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.wing-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  min-width: 100px;
  position: relative;
  transition: var(--transition);
}
.wing-box.pop {
  border-color: var(--pink);
  background: rgba(232,23,94,.1);
  transform: scale(1.05);
}
.pop-label {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .5px;
}
.wb-qty { font-size: 1rem; font-weight: 700; color: var(--white); }
.wb-price { font-size: .88rem; color: var(--pink); font-weight: 600; }

.heat-scale {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.75rem;
  padding: 0 16px;
}
.heat-label { font-size: .78rem; font-weight: 600; color: var(--gray); white-space: nowrap; }
.heat-bar {
  position: relative;
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, #00c853, #ffd600, #ff6d00, #d32f2f);
}
.heat-dot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--navy-card);
  border: 2px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: var(--white);
}
.heat-dot.hot { border-color: #d32f2f; background: #d32f2f; }

.heat-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
  margin-left: 4px;
}
.heat-0 { background: #00c853; color: #000; }
.heat-1 { background: #76ff03; color: #000; }
.heat-2 { background: #ffd600; color: #000; }
.heat-3 { background: #ff9100; color: #000; }
.heat-4 { background: #ff6d00; color: #fff; }
.heat-5 { background: #d32f2f; color: #fff; }

.roulette-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 2rem;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(232,23,94,.15), rgba(255,208,96,.08));
  border: 1px solid rgba(232,23,94,.3);
  border-radius: var(--radius);
}
.roulette-icon { font-size: 2.5rem; flex-shrink: 0; }
.roulette-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: .3rem; color: var(--white); }
.roulette-card p  { font-size: .88rem; color: var(--gray); }

/* Kids Strip */
.kids-strip {
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 100%);
  padding: 32px 0;
}
.kids-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.kids-emoji { font-size: 1.8rem; letter-spacing: 4px; }
.kids-text h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: .25rem; }
.kids-text p  { font-size: .9rem; opacity: .85; }
.kids-strip .btn-pink {
  background: rgba(255,255,255,.2);
  border: 1.5px solid rgba(255,255,255,.5);
}
.kids-strip .btn-pink:hover { background: rgba(255,255,255,.35); }


/* ══════════════════════════════════════════
   EVENTS / BOOKING
══════════════════════════════════════════ */
.events-section {
  padding: 100px 0;
  background: var(--navy-mid);
}
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.events-info { display: flex; flex-direction: column; gap: 16px; }
.event-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--navy-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
}
.event-card:hover { border-color: rgba(0,212,255,.2); transform: translateX(4px); }
.event-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.event-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; color: var(--white); }
.event-card p  { font-size: .88rem; color: var(--gray); line-height: 1.6; }

.event-includes {
  padding: 20px;
  background: rgba(0,212,255,.07);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: var(--radius);
}
.event-includes h4 { font-size: .9rem; font-weight: 700; color: var(--cyan); margin-bottom: .75rem; letter-spacing: .5px; }
.event-includes ul { display: flex; flex-direction: column; gap: 6px; }
.event-includes li { font-size: .88rem; color: var(--off-white); }

.event-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}
.event-gallery img {
  border-radius: var(--radius);
  height: 140px;
  width: 100%;
  object-fit: cover;
}

/* Booking Form */
.booking-form-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.booking-form-card h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: .4rem;
  letter-spacing: .5px;
}
.form-note { font-size: .88rem; color: var(--gray); margin-bottom: 1.75rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 6px;
  letter-spacing: .3px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,.3); }
.form-field select { cursor: pointer; }
.form-field select option { background: var(--navy-card); color: var(--white); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--pink);
  background: rgba(232,23,94,.06);
  box-shadow: 0 0 0 3px rgba(232,23,94,.12);
}
.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: .5;
  cursor: pointer;
}
.form-field textarea { resize: vertical; min-height: 90px; }

.booking-form-card .btn-pink { margin-top: 6px; font-size: 1rem; }
.form-wa {
  text-align: center;
  font-size: .85rem;
  color: var(--gray);
  margin-top: .85rem;
}
.form-wa a { color: #25D366; font-weight: 600; }
.form-wa a:hover { text-decoration: underline; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 12px;
}
.form-success.show { display: flex; }
.success-icon { font-size: 3rem; }
.form-success h4 { font-size: 1.4rem; font-weight: 700; color: var(--white); }
.form-success p  { font-size: .92rem; color: var(--gray); max-width: 320px; }


/* ══════════════════════════════════════════
   LOCATION
══════════════════════════════════════════ */
.location-section {
  padding: 100px 0;
  background: var(--navy);
}
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.07);
}
.map-wrap iframe { display: block; }
.map-link-btn {
  display: block;
  background: var(--navy-card);
  color: var(--cyan);
  text-align: center;
  padding: 12px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .3px;
  transition: var(--transition);
  border-top: 1px solid rgba(255,255,255,.07);
}
.map-link-btn:hover { background: rgba(0,212,255,.1); }

.location-info { display: flex; flex-direction: column; gap: 18px; }
.loc-card {
  padding: 22px;
  background: var(--navy-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.07);
}
.loc-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .65rem;
}
.loc-card p { font-size: .92rem; color: var(--gray); margin-bottom: .85rem; }
.loc-card .btn-sm { margin-top: .35rem; }

.hours { display: flex; flex-direction: column; gap: 8px; margin-bottom: .85rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  color: var(--off-white);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hours-note { font-size: .8rem; color: var(--cyan); font-weight: 500; }

.contact-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}
.wa-btn { background: #25D366; color: #fff; }
.wa-btn:hover { background: #1da851; transform: translateY(-2px); }
.ig-btn { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: #fff; }
.ig-btn:hover { opacity: .9; transform: translateY(-2px); }


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: #080a18;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { padding-right: 24px; }
.footer-logo { height: 60px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--gray);
}
.footer-socials a:hover { background: var(--pink); color: #fff; transform: translateY(-2px); }

.footer-col h5 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li a {
  font-size: .88rem;
  color: var(--gray);
  transition: var(--transition);
}
.footer-col li a:hover { color: var(--white); padding-left: 4px; }

.footer-tt { display: flex; flex-direction: column; gap: 12px; }
.footer-tt-logo {
  max-width: 220px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.06);
}
.footer-tt p { font-size: .82rem; color: var(--gray); line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }


/* ══════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
  animation: none;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,.7), 0 0 0 10px rgba(37,211,102,.12); }
}


/* ══════════════════════════════════════════
   PRICING SECTION
══════════════════════════════════════════ */
.pricing-section {
  padding: 100px 0;
  background: var(--navy);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 3rem;
}
.pricing-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.pricing-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}
.pricing-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: .5rem;
}
.pricing-note {
  font-size: .82rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  font-size: .88rem;
  color: rgba(255,255,255,.8);
}
.pricing-list li.highlight {
  background: rgba(0,212,255,.08);
  border-color: rgba(0,212,255,.25);
}
.pricing-list li.mega {
  background: linear-gradient(135deg, rgba(232,23,94,.12), rgba(255,208,96,.08));
  border-color: rgba(255,208,96,.3);
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.pl-bundle { font-weight: 500; }
.pl-bonus {
  font-size: .75rem;
  background: var(--gold);
  color: var(--navy);
  padding: 2px 7px;
  border-radius: 10px;
  font-weight: 700;
  margin-left: 6px;
}
.pl-price {
  font-weight: 700;
  color: var(--cyan);
  white-space: nowrap;
  margin-left: 8px;
}
.pricing-cta {
  text-align: center;
  margin-top: 3rem;
  color: var(--gray);
  font-size: .95rem;
}
.pricing-link {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: underline;
}
.loc-contact-info { margin-bottom: 1rem; }
.loc-contact-info p { margin: 4px 0; font-size: .9rem; color: var(--gray); }
.loc-contact-info a { color: var(--cyan); text-decoration: none; }
.loc-contact-info a:hover { text-decoration: underline; }
.footer-contact { margin-bottom: 1rem; }
.footer-contact p { margin: 3px 0; font-size: .82rem; color: var(--gray); }
.footer-contact a { color: var(--gray); text-decoration: none; }
.footer-contact a:hover { color: var(--cyan); }


/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid,
  .events-grid,
  .location-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-img-wrap img { height: 380px; }
  .about-logo-badge { bottom: -16px; right: -16px; width: 90px; height: 90px; }

  .attractions-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; padding-right: 0; }
  .footer-tt { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 20px; }
}


/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100svh;
    background: rgba(10,11,25,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 40px;
    gap: 4px;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    border-left: 1px solid rgba(255,255,255,.08);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1.1rem; padding: 12px 16px; width: 100%; }
  .nav-cta { display: none; }
  .hamburger { display: flex; z-index: 1001; }

  /* Hero */
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-sub   { font-size: .95rem; }
  .hero-cta   { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* Stats */
  .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-sep { display: none; }
  .stat-item { border: 1px solid rgba(255,255,255,.05); }

  /* Attractions */
  .attractions-grid { grid-template-columns: 1fr; }

  /* Menu */
  .menu-tabs { gap: 6px; }
  .tab-btn { padding: 8px 14px; font-size: .8rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .form-row  { grid-template-columns: 1fr; }
  .cat-tabs  { flex-wrap: wrap; }

  /* Events */
  .event-gallery { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-tt   { flex-direction: column; align-items: flex-start; }

  /* About features */
  .about-features { grid-template-columns: 1fr; }
  .about-actions  { flex-direction: column; }
  .about-actions .btn { text-align: center; justify-content: center; }

  /* Booking form */
  .booking-form-card { padding: 24px 20px; }

  /* Kids strip */
  .kids-inner { flex-direction: column; text-align: center; }

  /* Location */
  .location-grid { grid-template-columns: 1fr; }
  .wings-sizes   { gap: 8px; }
  .wing-box      { min-width: 80px; padding: 12px 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stat-item { padding: 12px 20px; }
  .heat-scale { flex-direction: column; align-items: stretch; gap: 8px; }
  .heat-bar  { height: 8px; }
}
