:root {
  --bg: #f8f8ff;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: #ffffff;
  --text: #0f1545;
  --muted: #657199;
  --line: rgba(22, 34, 80, 0.12);
  --primary: #4a45ff;
  --primary-deep: #3026f0;
  --accent: #ff3c84;
  --shadow: 0 18px 40px rgba(28, 34, 88, 0.12);
  --shadow-soft: 0 10px 24px rgba(28, 34, 88, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --content-width: 1160px;
  --font-main: "Avenir Next", "Nunito", "Trebuchet MS", sans-serif;
}

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

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-main);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(104, 95, 255, 0.18), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(255, 90, 154, 0.16), transparent 20%),
    linear-gradient(180deg, #fcfcff 0%, #f4f5ff 100%);
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}

.ambient-left {
  top: 90px;
  left: -120px;
  width: 260px;
  height: 260px;
  background: rgba(79, 71, 255, 0.18);
}

.ambient-right {
  right: -100px;
  bottom: 180px;
  width: 240px;
  height: 240px;
  background: rgba(255, 84, 148, 0.16);
}

.booking-layout {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 24px 18px 140px;
}

.booking-panel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 0 0;
}

.back-button {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(21, 31, 76, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.back-button svg,
.icon svg,
.field-icon svg,
.privacy-icon svg,
.nav-icon svg,
.cta-button svg {
  width: 24px;
  height: 24px;
}

.brand {
  display: flex;
  justify-content: center;
  gap: 0.03em;
  margin: 28px 0 12px;
  font-size: clamp(2.6rem, 7vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.brand span:nth-child(1),
.brand span:nth-child(2),
.brand span:nth-child(4) {
  color: var(--primary);
}

.brand span:nth-child(3),
.brand span:nth-child(5) {
  color: var(--accent);
}

.hero-copy {
  text-align: center;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(74, 69, 255, 0.7);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.3rem, 8vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 690px;
  margin: 16px auto 0;
  font-size: clamp(1.05rem, 3.7vw, 1.35rem);
  line-height: 1.45;
  color: var(--muted);
}

.venue-card,
.desktop-card {
  background: var(--panel);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.venue-card {
  display: grid;
  gap: 22px;
  padding: 14px;
  border-radius: 30px;
  margin-bottom: 30px;
}

.venue-image {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(14, 17, 74, 0.92) 0%, rgba(32, 66, 204, 0.84) 42%, rgba(255, 128, 52, 0.9) 100%);
}

.venue-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(8, 11, 44, 0.15) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 0 12px,
      transparent 12px 46px
    );
}

.venue-glow {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(255, 180, 96, 0) 0%, rgba(255, 160, 54, 0.8) 100%);
}

.venue-child {
  position: absolute;
  border-radius: 50%;
}

.venue-child::before,
.venue-child::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.venue-child::before {
  top: 0;
  left: 50%;
  width: 26%;
  height: 26%;
  border-radius: 50%;
  transform: translateX(-50%);
}

.venue-child::after {
  bottom: 0;
  left: 50%;
  width: 42%;
  height: 52%;
  border-radius: 46% 46% 28% 28%;
  transform: translateX(-50%);
}

.child-main {
  left: 44%;
  bottom: 18px;
  width: 92px;
  height: 150px;
  color: #ffd028;
  transform: rotate(6deg);
}

.child-left {
  left: 11%;
  bottom: 28px;
  width: 52px;
  height: 96px;
  color: #ffffff;
  opacity: 0.92;
}

.child-right {
  right: 10%;
  bottom: 25px;
  width: 48px;
  height: 88px;
  color: #f9f9ff;
  opacity: 0.88;
}

.trampoline-line {
  position: absolute;
  left: -4%;
  right: -4%;
  height: 12px;
  border-radius: 999px;
}

.line-one {
  bottom: 46px;
  background: linear-gradient(90deg, #5f36ff 0%, #ff7c2f 50%, #ff3f8f 100%);
}

.line-two {
  bottom: 28px;
  background: rgba(255, 255, 255, 0.28);
}

.venue-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.venue-main h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 5vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.venue-meta {
  display: grid;
  gap: 12px;
}

.venue-meta p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.icon,
.field-icon,
.privacy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.venue-price {
  font-size: clamp(2.6rem, 9vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--accent);
}

.details-form {
  display: grid;
  gap: 26px;
}

.form-section h3 {
  margin: 0 0 14px;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.field,
.textarea-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.field + .field,
.contact-switch,
.textarea-field {
  margin-top: 14px;
}

.field-icon {
  color: #1b1f4a;
}

.field input,
.textarea-field textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.field input::placeholder,
.textarea-field textarea::placeholder {
  color: #7d88aa;
}

.field input {
  font-size: 1.15rem;
}

.contact-switch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
}

.contact-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 80px;
  padding: 14px 12px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
}

.contact-option:last-child {
  border-right: 0;
}

#contact-email:checked + .contact-option,
#contact-phone:checked + .contact-option,
#contact-whatsapp:checked + .contact-option {
  color: var(--primary);
  background: rgba(74, 69, 255, 0.06);
  box-shadow: inset 0 0 0 2px rgba(74, 69, 255, 0.9);
}

.textarea-field {
  align-items: flex-start;
  min-height: 146px;
  padding-top: 20px;
  padding-bottom: 18px;
}

.textarea-field textarea {
  min-height: 82px;
  resize: none;
  font-size: 1.15rem;
  line-height: 1.5;
}

.char-counter {
  position: absolute;
  right: 20px;
  bottom: 16px;
  color: #7d88aa;
  font-size: 0.95rem;
}

.checkboxes {
  display: grid;
  gap: 16px;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
}

.check-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-mark {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(180deg, #655dff 0%, #473dff 100%);
  box-shadow: 0 8px 16px rgba(74, 69, 255, 0.22);
}

.check-mark::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 7px;
  width: 8px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(95, 88, 255, 0.1), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(95, 88, 255, 0.1);
  color: var(--text);
}

.privacy-note p {
  margin: 0;
  font-size: 1.05rem;
}

.privacy-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  box-shadow: var(--shadow-soft);
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 78px;
  border: 0;
  border-radius: 28px;
  color: #fff;
  font-size: clamp(1.35rem, 5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--primary-deep) 0%, var(--primary) 52%, #5946ff 100%);
  box-shadow: 0 20px 30px rgba(66, 56, 255, 0.28);
}

.desktop-side {
  display: none;
}

.desktop-card {
  padding: 34px;
  border-radius: 34px;
}

.desktop-label {
  margin: 0 0 12px;
  color: rgba(74, 69, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.88rem;
  font-weight: 800;
}

.desktop-card h2 {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 2.8vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.desktop-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.desktop-stats {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.desktop-stats div {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 21, 69, 0.08);
}

.desktop-stats strong {
  display: block;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.desktop-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 24px), 760px);
  padding: 12px 8px 10px;
  border: 1px solid rgba(19, 27, 68, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-item {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 8px 4px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.86rem;
}

.nav-item.is-active {
  color: var(--primary);
}

.nav-icon {
  color: currentColor;
}

@media (min-width: 700px) {
  .venue-card {
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    align-items: center;
    padding: 18px;
  }

  .venue-image {
    min-height: 250px;
  }

  .venue-copy {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
  }

  .contact-option {
    min-height: 86px;
  }
}

@media (min-width: 1024px) {
  .booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
    gap: 34px;
    align-items: start;
    padding: 44px 28px 140px;
  }

  .booking-panel {
    max-width: none;
    padding-top: 8px;
  }

  .desktop-side {
    display: block;
    position: sticky;
    top: 32px;
  }
}

@media (max-width: 560px) {
  .booking-layout {
    padding-left: 14px;
    padding-right: 14px;
  }

  .back-button {
    width: 52px;
    height: 52px;
  }

  .contact-switch {
    grid-template-columns: 1fr;
  }

  .contact-option {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    justify-content: flex-start;
    padding-left: 18px;
  }

  .contact-option:last-child {
    border-bottom: 0;
  }

  .bottom-nav {
    border-radius: 26px;
  }

  .nav-item {
    font-size: 0.78rem;
  }
}
