/* =============================
       GLOBAL
    ============================= */
.row {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 0;
}

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

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  background: #fff;
  /* overflow-x: hidden; */
  margin: 0;
}

/* =============================
       SIDEBAR NAV
    ============================= */
.side-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 132px;
  height: 100vh;
  background: #fffdf7;
  box-shadow: 3px 0 24px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  z-index: 1050;
  padding: 22px 0 0;
}

.side-nav .brand-logo {
  width: 105px;
  height: 83px;
  object-fit: cover;
}

.side-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
  width: 77px;
}

.side-nav ul li {
  position: relative;
}

.side-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(195, 218, 229, 0.5);
  text-decoration: none;
  transition: background 0.2s;
  position: relative;
}

.side-nav ul li a:hover,
.side-nav ul li a.active {
  background: #008fd5;
}

.side-nav ul li a > img {
  object-fit: cover;
  width: 34px;
  transition:
    filter 0.2s,
    transform 0.2s;
}

.side-nav ul li a:hover > img,
.side-nav ul li a.active > img {
  filter: brightness(0) invert(1);
  transform: rotate(18.22deg);
  -webkit-transform: rotate(18.22deg);
  -moz-transform: rotate(18.22deg);
  -ms-transform: rotate(18.22deg);
  -o-transform: rotate(18.22deg);
}

/* Nav hover page-preview card */
.side-nav .nav-preview {
  position: fixed;
  left: 100px;
  top: 0;
  /* max-height: calc(100vh - 50px); */
  overflow: auto;
  width: 460px !important;
  background: #f7f2ec;
  border-radius: 0 40px 40px 40px;
  box-shadow: 0 9px 29px rgba(0, 0, 0, 0.5);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  padding: 29px;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s;
  z-index: 1100;
  -webkit-border-radius: 0 40px 40px 40px;
  -moz-border-radius: 0 40px 40px 40px;
  -ms-border-radius: 0 40px 40px 40px;
  -o-border-radius: 0 40px 40px 40px;
}

.popover {
  max-width: 400px;
  background-color: #f7f2ec;
  border-color: transparent;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  padding-top: 0;
  margin-top: 60px;
}

span.nav-preview-title {
  position: absolute;
  bottom: 98%;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  background: #fff;
  padding: 6px 20px 0px;
  border-radius: 60px;
  top: auto;
}

/* .side-nav .nav-preview::before {
      content: "";
      position: absolute;
      left: -6px;
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
      width: 12px; height: 12px;
      background: #fff;
      box-shadow: -2px 2px 4px rgba(0,0,0,.04);
    } */
.nav-preview-thumb {
  display: block;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.nav-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none !important;
  transform: none !important;
}

.nav-preview-title {
  font-family: righteous, sans-serif;
  font-weight: 600;
  color: #1c2a39;
  text-align: center;
  padding: 2px 4px 4px;
  text-transform: capitalize;
  position: absolute;
  left: 0;
  top: -45px;
  bottom: auto;
  width: 100%;

  h5 {
    display: inline-block;
    padding: 0 20px;
    font-size: 20px;
    border-radius: 49px;
    -webkit-border-radius: 49px;
    -moz-border-radius: 49px;
    -ms-border-radius: 49px;
    -o-border-radius: 49px;

    span {
      color: #3ab447;
    }
  }
}

.side-nav ul li:hover .nav-preview,
.side-nav ul li a:focus-visible .nav-preview {
  opacity: 1;
  visibility: visible;
  /* transform: translate(0, -50%); */
  pointer-events: auto;
}

/* Bootstrap 5 popover variant of the nav preview */
.popover.nav-preview-popover {
  --bs-popover-max-width: 460px;
  --bs-popover-bg: #f7f2ec;
  --bs-popover-border-color: transparent;
  --bs-popover-border-radius: 0 40px 40px 40px;
  --bs-popover-inner-border-radius: 0 40px 40px 40px;
  --bs-popover-body-padding-x: 29px;
  --bs-popover-body-padding-y: 29px;
  width: 460px;
  box-shadow: 0 9px 29px rgba(0, 0, 0, 0.5);
  z-index: 1100;
}

.popover.nav-preview-popover .popover-arrow {
  display: none;
}

.popover.nav-preview-popover .popover-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.popover.nav-preview-popover .nav-preview-thumb {
  display: block;
  width: 100%;
  height: 388px;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.popover.nav-preview-popover .nav-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.popover.nav-preview-popover .nav-preview-title {
  font-family: righteous, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1c2a39;
  text-align: center;
  padding: 2px 4px 4px;
  text-transform: capitalize;
  position: absolute;
  left: 0;
  top: -25px;
  width: fit-content;
}

.popover.nav-preview-popover .nav-preview-title h5 {
  background: #fff;
  display: inline-block;
  padding: 10px 40px;
  color: #3ab447;
  font-size: 20px;
  border-radius: 49px;
  margin: 0;
}

.popover.nav-preview-popover .nav-preview-title h5 span {
  color: #3ab447;
}

/* =============================
       PAGE WRAPPER
    ============================= */
.page-wrap {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

@media (min-width: 992px) {
  .page-wrap {
    padding-left: 132px;
  }
}

@media (max-width: 991.98px) {
  .page-wrap {
    padding-left: 132px;
  }

  /* .side-nav {
    display: none;
  } */
}

/* =============================
       TOP ADDRESS BAR
    ============================= */
.address-bar {
  background: #2787c1;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1040;
}

.address-pill {
  background: #fff;
  border-radius: 29px;
  box-shadow: 0 1.5px 43px rgba(0, 0, 0, 0.12);
  max-width: 732px;
  width: 100%;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 51px;
  position: relative;
  top: 29px;
}

.address-pill img {
  width: 31px;
  height: 31px;
  flex-shrink: 0;
}

.address-pill a {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.84px;
  color: #77a0b8;
  text-align: center;
  white-space: nowrap;
}

@media (min-width: 576px) {
  .address-pill p {
    font-size: 14px;
  }
}

/* =============================
       STELLARNAV MOBILE MENU (top)
    ============================= */
.mobile-nav-wrap {
  background: #0e2d39;
  display: none;
}

@media (max-width: 991.98px) {
  /* .mobile-nav-wrap {
    display: block;
  } */
}

.stellarnav {
  background: #0e2d39;
}

.stellarnav ul {
  background: #0e2d39;
}

.stellarnav > ul > li > a {
  color: #d8f2fb !important;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.96px;
}

.stellarnav > ul > li > a:hover {
  color: #ffcb08 !important;
}

.stellarnav.light.desktop a {
  color: #d8f2fb;
}

/* =============================
       HERO SECTION
    ============================= */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}

/* @media (min-width: 576px)  { .hero-section { padding: 24px; } }
    @media (min-width: 992px)  { .hero-section { padding: 32px; } } */

.hero-inner {
  position: relative;
  overflow: hidden;
  min-height: 857px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-blob-1 {
  position: absolute;
  left: 4.7%;
  top: 37.72%;
  width: 131px;
  height: 124px;
  border-radius: 65.5px / 62px;
  background: #008fd5;
  filter: blur(97.6px);
  pointer-events: none;
  z-index: 1;
}

.hero-blob-2 {
  position: absolute;
  right: 3.53%;
  top: 66.11%;
  width: 131px;
  height: 129px;
  border-radius: 65.5px / 64.5px;
  background: #12b14d;
  filter: blur(97.6px);
  pointer-events: none;
  z-index: 1;
}

.hero-deco-top {
  position: absolute;
  left: 48.5%;
  top: 0;
  width: 10.35%;
  height: auto;
  z-index: 5;
  object-fit: contain;
}

.hero-logo {
  position: absolute;
  left: 2.36%;
  top: 5.75%;
  width: 223px;
  height: 176px;
  object-fit: cover;
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 20;
  padding: 20px 24px 24px;
  min-height: 835px;
  display: flex;
  flex-direction: column;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: start;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 52px;
}

@media (min-width: 576px) {
  .hero-left {
    padding-left: 160px;
  }
}

@media (min-width: 992px) {
  .hero-left {
    padding-left: 255px;
  }
}

h1.hero-title {
  font-family: "Righteous", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3.12px;
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  h1.hero-title {
    font-size: 46px;
  }
}

@media (min-width: 992px) {
  h1.hero-title {
    font-size: 52px;
  }
}

.hero-title .c-green {
  color: #3ab447;
}

.hero-title .c-dark {
  color: #0e2d39;
}

.hero-title .c-yellow {
  color: #f5b038;
}

.book-btn {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  width: 163px;
  height: 156px;
  background: url("../images/2.png") center / 100% 100% no-repeat;
  border: none;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
}

.book-btn span {
  margin-top: 75px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  padding-top: 92px;
}

@media (min-width: 992px) {
  .hero-right {
    padding-right: 40px;
  }
}

h2.hero-subtitle {
  font-family: "Righteous", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 3.12px;
  margin: 0;
}

@media (min-width: 576px) {
  h2.hero-subtitle {
    font-size: 46px;
  }
}

@media (min-width: 992px) {
  h2.hero-subtitle {
    font-size: 52px;
  }
}

.hero-subtitle .c-dark {
  color: #0e2d39;
}

.hero-subtitle .c-blue {
  color: #2787c1;
}

.hero-tagline {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.96px;
  color: #5a7986;
  max-width: 628px;
  margin: 0;
}

.hero-image-wrap {
  position: relative;
  flex: 1;
  max-width: 1140px;
  margin: 25px auto 0;
}

.hero-image-wrap .hero-slider,
.hero-image-wrap .hero-slider .slick-list,
.hero-image-wrap .hero-slider .slick-track {
  width: 100%;
}

.hero-image-wrap .hero-slider .slick-slide img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* =============================
       GLOW BLOBS (page-level)
    ============================= */
.blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(97.6px);
}

.blob-g1 {
  right: -24px;
  top: 920px;
  width: 131px;
  height: 129px;
  background: #12b14d;
}

.blob-b1 {
  right: -16px;
  top: 1660px;
  width: 131px;
  height: 124px;
  background: #008fd5;
}

.blob-g2 {
  left: 20px;
  top: 1674px;
  width: 290px;
  height: 109px;
  background: #12b14d;
}

.blob-b2 {
  right: -24px;
  top: 3540px;
  width: 131px;
  height: 124px;
  background: #008fd5;
}

.blob-g3 {
  left: 20px;
  top: 5000px;
  width: 131px;
  height: 129px;
  background: #12b14d;
}
.blob-b1 {
  right: -16px;
  top: 43%;
  width: 131px;
  height: 124px;
  background: #12b14d;
}
/* =============================
       OVERVIEW SECTION
    ============================= */
.overview-section {
  padding: 8px 16px 24px;
  margin-top: -206px;
}

@media (min-width: 576px) {
  .overview-section {
    padding: 8px 24px 24px;
  }
}

@media (min-width: 992px) {
  .overview-section {
    padding: 8px 40px 24px;
  }
}

.frame-deco {
  display: none;
}

@media (min-width: 992px) {
  .frame-deco {
    display: block;
    margin-bottom: -10px;
  }
}

.overview-card {
  background: #daeefa;
  border-radius: 12px;
  padding: 39px 61px 58px;
  overflow: hidden;
  padding-right: 240px;
  margin-bottom: -6px;
}

@media (max-width: 576px) {
  .overview-card {
    padding: 24px;
  }
}

h2.overview-title {
  font-family: "Righteous", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: 1.44px;
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  h2.overview-title {
    font-size: 48px;
  }
}

.overview-title .c-dark {
  color: #191919;
}

.overview-title .c-green {
  color: #3ab447;
}

.overview-title .c-blue {
  color: #2787c1;
}

.overview-text {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: 0.96px;
  color: #658490;
  margin-bottom: 8px;
}

.overview-img-col {
  position: relative;
}

.overview-img-main {
  position: relative;
  margin-left: 0px;
  width: 100%;
  max-width: 321px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.overview-section .col-lg-8 {
  flex: 0 0 auto;
  width: 63.3%;
  padding: 0;
}

.overview-section .col-lg-4 {
  flex: 0 0 auto;
  width: 36.666%;
  padding: 0;
}

.overview-section .gap-0 {
  margin: 0 !important;
}

.overview-img-behind {
  position: absolute;
  left: -42%;
  top: -4px;
  width: 80%;
  height: auto;
  display: none;
  z-index: 1;
}

.overview-section .color-bubbles {
  position: absolute;
  bottom: -125px;
  left: -20px;
}

@media (min-width: 992px) {
  .overview-img-behind {
    display: block;
  }
}

.overview-img-overlay {
  position: absolute;
  bottom: -85px;
  left: 0;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  z-index: -1;
  height: 302px;
}

/* =============================
       ACTIVITY HIGHLIGHTS SECTION
    ============================= */
.activity-section {
  padding: 16px;
}

@media (min-width: 576px) {
  .activity-section {
    padding: 16px 24px;
  }
}

@media (min-width: 992px) {
  .activity-section {
    padding: 150px 24px 40px;
  }
}

.color-bubbles {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.color-bubbles .bubbles-inner {
  position: relative;
  width: 71px;
  height: 59px;
}

.color-bubbles .b-y {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #ffcb08;
}

.color-bubbles .b-g {
  position: absolute;
  left: 17px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #3ab447;
}

.color-bubbles .b-b {
  position: absolute;
  left: 23px;
  top: 11px;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #008fd5;
}

h2.activity-title {
  font-family: "Righteous", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.44px;
  text-align: center;
  margin-bottom: 12px;
}

@media (min-width: 576px) {
  h2.activity-title {
    font-size: 36px;
  }
}

@media (min-width: 992px) {
  h2.activity-title {
    font-size: 48px;
  }
}

.activity-title .c-dark {
  color: #191919;
  -webkit-text-stroke: 0;
}

.activity-title .c-green {
  color: #3ab447;
  -webkit-text-stroke: 0;
}

.activity-title .c-blue {
  color: #2787c1;
  -webkit-text-stroke: 0;
}

.activity-desc {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.96px;
  color: #658490;
  text-align: center;
  max-width: 832px;
  margin: 0 auto -7px;
}

@media (min-width: 576px) {
  .activity-desc {
    font-size: 16px;
    line-height: 34px;
  }
}

/* Green Activity Grid */
.activity-grid-wrap {
  position: relative;
  border-radius: 12px;
  background: #12b24c;
  padding: 32px 16px;
  /* overflow: hidden; */
  max-height: 750px;
  margin-top: 191px;
}

.activity-grid-wrap .row {
  margin-top: -247px;
}

@media (min-width: 576px) {
  .activity-grid-wrap {
    padding: 40px 32px;
  }
}

.activity-grid-oval {
  position: absolute;
  left: 50%;
  top: -26%;
  transform: translateX(-50%);
  width: 593px;
  height: 515px;
  border-radius: 296.5px / 257.5px;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  display: none;
}

@media (min-width: 992px) {
  .activity-grid-oval {
    display: block;
  }
}

.activity-grid-img {
  position: absolute;
  left: 50%;
  top: -23%;
  transform: translateX(-50%);
  width: 456px;
  height: auto;
  object-fit: cover;
  pointer-events: none;
  display: none;
}

@media (min-width: 992px) {
  .activity-grid-img {
    display: block;
  }
}

.activity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
}

.activity-circle-wrap {
  position: relative;
  width: 200px;
  height: 225.61px;
}

.activity-ring-blue {
  position: absolute;
  left: 0;
  top: 30px;
  width: 200px;
  height: 195px;
  border-radius: 100px / 97.56px;
  border: 1.22px solid #008fd5;
}

.activity-ring-yellow {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 205px;
  border-radius: 100px / 102.44px;
  border: 1.22px solid #ffcb08;
}

.activity-circle-img {
  position: absolute;
  left: 20px;
  top: 32px;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
}

.activity-label {
  font-family: "Righteous", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1.2px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 43px;
}

.activity-deco-left {
  position: absolute;
  bottom: 12px;
  left: 40px;
  width: 72px;
  height: 48px;
}

.activity-deco-right {
  position: absolute;
  bottom: 12px;
  right: 40px;
  width: 65px;
  height: 47px;
}

.activity-grid-wrap .col-sm-6:first-child .activity-card:nth-child(2) {
  left: 15%;

  .activity-label {
    margin-bottom: 0;
  }
}

.activity-grid-wrap .col-sm-6:first-child .activity-card:last-child {
  left: 89%;
  margin-top: -7%;
}

.activity-grid-wrap .col-sm-6:last-child .activity-card:nth-child(2) {
  right: 15%;

  .activity-label {
    margin-bottom: 0;
  }
}

.activity-grid-wrap .col-sm-6:last-child .activity-card:last-child {
  right: 89%;
  margin-top: -7%;
}

.activity-slider {
  position: relative;
}

.activity-slider .activity-slide {
  outline: none;
}

.activity-slider .activity-slide > .row {
  margin-top: -247px;
}

/* .activity-slider .slick-prev,
.activity-slider .slick-next {
  width: 44px;
  height: 44px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.activity-slider .slick-prev:hover,
.activity-slider .slick-next:hover {
  background: #fff;
}
.activity-slider .slick-prev { left: 0; }
.activity-slider .slick-next { right: 0; }
.activity-slider .slick-prev:before,
.activity-slider .slick-next:before { content: ''; }
.activity-slider .slick-prev i,
.activity-slider .slick-next i {
  color: #12b24c;
  font-size: 28px;
  line-height: 1;
} */

.activity-pipe {
  width: 56px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  height: 370px;
  object-fit: cover;
}

/* =============================
       PLAY PACKAGES SECTION
    ============================= */
.packages-section {
  padding: 32px 16px;
}

@media (min-width: 576px) {
  .packages-section {
    padding: 32px 24px;
  }
}

@media (min-width: 992px) {
  .packages-section {
    padding: 32px 40px;
  }
}

h2.packages-title {
  font-family: "Righteous", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1.44px;
  text-align: center;
  margin-bottom: 16px;
}

@media (min-width: 576px) {
  h2.packages-title {
    font-size: 36px;
  }
}

@media (min-width: 992px) {
  h2.packages-title {
    font-size: 48px;
  }
}

.packages-title .c-dark {
  color: #191919;
  -webkit-text-stroke: 0;
}

.packages-title .c-green {
  color: #3ab447;
  -webkit-text-stroke: 0;
}

.packages-title .c-blue {
  color: #2787c1;
  -webkit-text-stroke: 0;
}

.packages-desc {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: 0.96px;
  color: #658490;
  text-align: center;
  max-width: 832px;
  margin: 0 auto 32px;
}

.packages-bg {
  position: relative;
  border-radius: 16px;
  background: url("/figmaAssets/rectangle-319-1.svg") center / 100% 100%
    no-repeat;
  padding: 40px 24px;
  overflow: hidden;
}

@media (min-width: 576px) {
  .packages-bg {
    padding: 40px 40px;
  }
}

@media (min-width: 992px) {
  .packages-bg {
    padding: 143px 69px 0 69px;
    min-height: 450px;
    background: #dbeefa;
    clip-path: polygon(0 12%, 100% 0, 100% 100%, 0% 100%);
  }
}

.packages-bg .row .col-md-4:last-child .pkg-divider {
  top: 16%;
  height: 243px;
}

.pkg-deco-1 {
  position: absolute;
  bottom: 0;
  left: 31.5%;
  width: auto;
  height: 13.62%;
  object-fit: contain;
  display: none;
}

@media (min-width: 992px) {
  .pkg-deco-1 {
    display: block;
  }
}

.pkg-deco-2 {
  position: absolute;
  left: 62.2%;
  top: 11px;
  width: auto;
  height: 14.81%;
  display: none;
}

@media (min-width: 992px) {
  .pkg-deco-2 {
    display: block;
  }
}

.pkg-divider {
  display: none;
  position: absolute;
  left: 0;
  top: 49%;
  transform: translateY(-50%);
  width: 1px;
  height: 204px;
  background: #9ab3be;
}

@media (min-width: 992px) {
  .pkg-divider {
    display: block;
  }
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

/* Stagger the cards to follow the diagonal top edge of .packages-bg
   (left/red lowest -> right/blue highest) on desktop. */
@media (min-width: 992px) {
  .packages-bg .row .col-md-4:nth-child(1) .package-card {
    margin-top: 50px;
  }
  .packages-bg .row .col-md-4:nth-child(2) .package-card {
    margin-top: 25px;
  }
  .packages-bg .row .col-md-4:nth-child(3) .package-card {
    margin-top: 0;
  }

  /* page-id-6: don't stagger — align green & blue badges to red's position */
  .page-id-6 .packages-bg .row .col-md-4:nth-child(2) .package-card,
  .page-id-6 .packages-bg .row .col-md-4:nth-child(3) .package-card {
    margin-top: 50px;
  }
}

h3.pkg-title {
  font-family: "Righteous", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 1.92px;
  margin: 0;
}

@media (min-width: 576px) {
  h3.pkg-title {
    font-size: 32px;
  }
}

.pkg-title-red {
  color: #ed1c31;
}

.pkg-title-green {
  color: #3ab447;
}

.pkg-title-blue {
  color: #2787c1;
}

.pkg-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 1.2px;
  color: #0e2e3a;
  margin: 4px 0;
}

.pkg-desc {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.84px;
  color: #658491;
  max-width: 290px;
  margin: 0 auto;
}

.packages-bg .price-badge {
  position: relative;
  width: 131px;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Open Sans", sans-serif;
  color: inherit;
  font-size: 20px;
  font-weight: 700;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  top: 0;
}

.price-badge-bg {
  position: absolute;
  left: 1px;
  top: 1px;
  width: 131px;
  height: 99px;
  border-radius: 65.5px / 49.5px;
  transform: rotate(0.2deg);
}

.price-badge-bg-red {
  background: rgba(255, 123, 178, 0.1);
}

.price-badge-bg-green {
  background: rgba(114, 182, 63, 0.1);
}

.price-badge-bg-blue {
  background: rgba(49, 172, 206, 0.1);
}

.price-value {
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 1.26px;
}

.price-red {
  color: #ed1c30;
}

.price-green {
  color: #72b63f;
}

.price-blue {
  color: #31acce;
}

/* =============================
       GALLERY SECTION
    ============================= */
.gallery-section {
  padding: 48px 16px;
  position: relative;
}

.gallery-section .stickyHeading.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  /* background: #fff; */
  padding-top: 24px;
  padding-bottom: 16px;
  padding-left: 132px;
}

.gallery-section .stickyHeading.is-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  /* background: #fff; */
  padding-top: 24px;
  padding-bottom: 16px;
  padding-left: 0;
}

@media (min-width: 576px) {
  .gallery-section {
    padding: 64px 24px;
  }
}

@media (min-width: 992px) {
  .gallery-section {
    padding: 120px 40px;
  }
}

h2.gallery-title {
  font-family: "Righteous", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1.44px;
  text-align: center;
  margin-bottom: 16px;
}

@media (min-width: 576px) {
  h2.gallery-title {
    font-size: 36px;
  }
}

@media (min-width: 992px) {
  h2.gallery-title {
    font-size: 48px;
  }
}

.gallery-title .c-dark {
  color: #191919;
  -webkit-text-stroke: 0;
}

.gallery-title .c-green {
  color: #3ab447;
  -webkit-text-stroke: 0;
}

.gallery-title .c-blue {
  color: #2787c1;
  -webkit-text-stroke: 0;
}

.gallery-desc {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.96px;
  color: #658490;
  text-align: center;
  max-width: 611px;
  margin: 0 auto 40px;
}

@media (min-width: 992px) {
  .gallery-desc {
    font-size: 16px;
    line-height: 34px;
  }
}

/* Zigzag Gallery */
.gallery-zigzag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1448px;
  margin: 0 auto;
  padding: 40px 0;
  position: relative;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.gallery-column.offset-down {
  margin-top: 80px;
}

.gallery-column.offset-up {
  margin-top: -40px;
  position: relative;
  left: -40px;
}

.gallery-item {
  width: 100%;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: block;
}

.pipe-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 0;
  z-index: -1;
  left: 15%;
  position: relative;
}

.pipe-img {
  width: 32px;
  height: 97px;
  object-fit: contain;
}

@media (max-width: 991.98px) {
  .gallery-zigzag-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery-column.offset-down,
  .gallery-column.offset-up {
    margin-top: 0;
  }
}

@media (max-width: 575.98px) {
  .gallery-zigzag-grid {
    grid-template-columns: 1fr;
  }

  .pipe-wrap {
    margin: 10px 0;
  }

  .pipe-img {
    height: 60px;
  }
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
  content: "";
}

/* =============================
       TESTIMONIAL SECTION
    ============================= */
.testimonial-section {
  padding: 8px 16px;
}

@media (min-width: 576px) {
  .testimonial-section {
    padding: 8px 24px;
  }
}

@media (min-width: 992px) {
  .testimonial-section {
    padding: 0 40px;
  }
}

h2.testimonial-title {
  font-family: "Righteous", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.69px;
  text-align: center;
  margin-bottom: 12px;
}

@media (min-width: 576px) {
  h2.testimonial-title {
    font-size: 32px;
  }
}

@media (min-width: 768px) {
  h2.testimonial-title {
    font-size: 40px;
  }
}

@media (min-width: 992px) {
  h2.testimonial-title {
    font-size: 48px;
  }
}

.testimonial-title .c-dark {
  color: #191919;
  -webkit-text-stroke: 0;
}

.testimonial-title .c-green {
  color: #3ab447;
  -webkit-text-stroke: 0;
}

.testimonial-title .c-blue {
  color: #2787c1;
  -webkit-text-stroke: 0;
}

.testimonial-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.96px;
  color: #658490;
  text-align: center;
  max-width: 841px;
  margin: 0 auto 24px;
}

@media (min-width: 576px) {
  .testimonial-subtitle {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (min-width: 992px) {
  .testimonial-subtitle {
    font-size: 16px;
    line-height: 34px;
  }
}

/* Testimonial Cards (Slick Slider) */
.testimonial-slider-wrap {
  position: relative;
  padding: 8px 40px 16px;
}

@media (min-width: 992px) {
  .testimonial-slider-wrap {
    padding: 8px 0px 100px 60px;
  }
}

.testimonial-card {
  position: relative;
  overflow: visible;
}

.testimonial-card-inner {
  position: relative;
  border-radius: 12px;
  background: #daeefa;
  padding: 36px 24px 36px 80px;
  min-height: 450px;
  margin: 50px 8px 100px;
  width: calc(100% - 19px);
  float: right;
}

@media (min-width: 992px) {
  .testimonial-card-inner {
    padding: 69px 125px 36px 36px;
  }
}

.testimonial-accent-bar {
  position: absolute;
  left: -11px;
  top: -38px;
  width: 64px;
  height: 467px;
  object-fit: cover;
}

.testimonial-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: #fff 5px solid;
  position: relative;
  z-index: 1;
  left: -16px;
}

@media (min-width: 992px) {
  .testimonial-avatar {
    width: 174px;
    height: 174px;
  }
}

.testimonial-quote-open {
  position: absolute;
  left: 26px;
  top: -39px;
  font-family: "Open Sans", sans-serif;
  font-size: 100px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.testimonial-quote-close {
  position: absolute;
  right: 13px;
  bottom: 31px;
  font-family: "Open Sans", sans-serif;
  font-size: 68px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.15);
  pointer-events: none;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

blockquote.testimonial-text {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1.08px;
  color: #658490;
  padding-left: 32px;
  margin: 0 0 0;
  border: none;
}

@media (min-width: 992px) {
  blockquote.testimonial-text {
    font-size: 18px;
    line-height: 34px;
    text-transform: capitalize;
    letter-spacing: 2px;
  }
}

.testimonial-divider {
  width: 100%;
  height: 1px;
  background: #b0c9d8;
  margin-bottom: 12px;
}

.testimonial-author {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: 1.44px;
  color: #191919;
  margin: 0;
}

/* =============================
       FOOTER SECTION
    ============================= */
.footer-nav-section {
  background: #2c3236;
  padding: 40px 16px 32px;
}

@media (min-width: 576px) {
  .footer-nav-section {
    padding: 40px 24px 32px;
  }
}

@media (min-width: 992px) {
  .footer-nav-section {
    padding: 40px 40px 32px;
  }
}

.footer-bubbles {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.footer-bubbles .fb-wrap {
  position: relative;
  width: 53px;
  height: 44px;
}

.footer-bubbles .fb-y {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: #ffcb08;
}

.footer-bubbles .fb-g {
  position: absolute;
  left: 12px;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: #12b24c;
}

.footer-bubbles .fb-b {
  position: absolute;
  left: 17px;
  top: 8px;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: #008fd5;
}

.footer-logo {
  width: 143px;
  height: 113px;
  object-fit: cover;
  display: none;
}

@media (min-width: 768px) {
  .footer-logo {
    display: block;
  }
}

.footer-bg-img {
  width: 100%;
  display: none;
  border-radius: 14px;
}

@media (min-width: 768px) {
  .footer-bg-img {
    display: block;
  }
}

.footer-info-link {
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.footer-info-link .footer-info-value {
  transition: color 0.25s ease;
}

.footer-info-link .footer-contact-icon {
  transition: transform 0.25s ease;
}

.footer-info-link:hover .footer-info-value,
.footer-info-link:focus-visible .footer-info-value {
  color: #ffd84d;
  text-decoration: underline;
}

.footer-info-link:hover .footer-contact-icon,
.footer-info-link:focus-visible .footer-contact-icon {
  transform: scale(1.15) rotate(-6deg);
}

.footer-info-link:focus-visible {
  outline: 2px solid #ffd84d;
  outline-offset: 4px;
  border-radius: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
  max-width: 96%;
  width: 100%;
  margin-bottom: 70px;
  transform: rotate(354deg);
  -webkit-transform: rotate(354deg);
  -moz-transform: rotate(354deg);
  -ms-transform: rotate(354deg);
  -o-transform: rotate(354deg);
  margin-top: -34px;
}

/* WP nav menu wraps items in <ul><li>; flatten so the <a> tags become the flex
   items, matching the static design markup. */
.footer-links ul,
.footer-links li {
  display: contents;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 33px;
  letter-spacing: 0.96px;
  color: #d8f2fb;
  text-decoration: none;
  white-space: nowrap;
}

.footer-links a:hover {
  font-weight: 800;
}

.footer-links a.active {
  font-weight: 800;
}

.footer-info-card {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 24px;
}

@media (min-width: 992px) {
  .footer-info-card {
    padding: 26px 63px;
  }
}

.footer-info-label {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  margin-bottom: 8px;
}

.footer-info-value {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.footer-deco-social {
  display: none;
}

@media (min-width: 768px) {
  .footer-deco-social {
    display: block;
    position: absolute;
    bottom: 0;
    right: 50px;
    width: 136px;
  }
}

/* Footer social icons */
.footer-social {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  top: -50px;
  right: 16%;
}

.footer-social li {
  display: block;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #008fd5;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  /* box-shadow: 0 4px 12px rgba(39, 135, 193, 0.35); */
  border: rgba(255, 255, 255, 0.8) 1px solid;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;

  img {
    width: 30px;
    height: 30px;
  }
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: scale(1.06);
  background-color: #0e6aa3;
  /* background: linear-gradient(180deg, #2787c1 0%, #0e6aa3 100%); */
  box-shadow: 0 8px 18px rgba(39, 135, 193, 0.5);
  color: #ffd84d;
  outline: none;
  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  -ms-transform: scale(1.06);
  -o-transform: scale(1.06);
}

.footer-social a:focus-visible {
  outline: 2px solid #ffd84d;
}

.footer-social i {
  line-height: 1;
}

@media (min-width: 768px) {
  .footer-social {
    justify-content: flex-end;
  }
}

.footer-copyright {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: rgba(216, 242, 251, 0.6);
  margin-top: 24px;
}

.hero-slider .slick-prev,
.hero-slider .slick-next {
  font-size: 28px;
  line-height: 1;
  position: absolute;
  top: calc(100% - 235px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: #ed1c24;
  border: #ed1c24 1px solid;
  outline: none;
  background: #fff;
  border-radius: 53px;
  -webkit-border-radius: 53px;
  -moz-border-radius: 53px;
  -ms-border-radius: 53px;
  -o-border-radius: 53px;
  z-index: 5;
}

.activity-slider .slick-prev,
.activity-slider .slick-next {
  font-size: 28px;
  line-height: 1;
  position: absolute;
  top: calc(100% - -17px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: #ed1c24;
  border: #ed1c24 1px solid;
  outline: none;
  background: #fff;
  border-radius: 53px;
  -webkit-border-radius: 53px;
  -moz-border-radius: 53px;
  -ms-border-radius: 53px;
  -o-border-radius: 53px;
  z-index: 5;
}

.hero-slider .slick-prev i,
.hero-slider .slick-next i,
.activity-slider .slick-next i,
.activity-slider .slick-prev i {
  font-size: 28px;
  line-height: 1;
  color: #ed1c24;
}

.hero-slider .slick-prev,
.activity-slider .slick-prev {
  left: 10%;
  transform: rotate(7deg);
  -webkit-transform: rotate(7deg);
  -moz-transform: rotate(7deg);
  -ms-transform: rotate(7deg);
  -o-transform: rotate(7deg);
}

.hero-slider .slick-next,
.activity-slider .slick-next {
  right: 10%;
  transform: rotate(-7deg);
  -webkit-transform: rotate(-7deg);
  -moz-transform: rotate(-7deg);
  -ms-transform: rotate(-7deg);
  -o-transform: rotate(-7deg);
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover,
.activity-slider .slick-prev:hover,
.activity-slider .slick-next:hover {
  background: #ed1c24;
}

.hero-slider .slick-prev:hover i,
.hero-slider .slick-next:hover i,
.activity-slider .slick-prev:hover i,
.activity-slider .slick-next:hover i {
  color: #fff;
}

.activity-slider .slick-prev:before,
.activity-slider .slick-next:before {
  display: none;
}

.style-1.gallery-item {
  height: 214px;
  width: 205px;
  object-fit: cover;
  position: relative;
}

.style-2.gallery-item {
  height: 322px;
  width: 275px;
  object-fit: cover;
  position: relative;
  right: 23%;
}

.style-3.gallery-item {
  height: 225px;
  width: 207px;
  right: 16%;
}

.style-4.gallery-item {
  height: 310px;
  width: 237px;
  right: 16%;
}

.style-5.gallery-item {
  height: 267px;
  width: 231px;
  right: 44%;
}

.style-6.gallery-item {
  height: 250px;
  width: 221px;
  right: -25%;
  margin-top: 20px;
}

.style-7.gallery-item {
  height: 322px;
  width: 283px;
  right: -8%;
}

.style-8.gallery-item {
  height: 225px;
  width: 328px;
  right: 0%;
}

.offset-up .style-5.gallery-item {
  right: 0;
}

.widepipe .pipe-img {
  width: 51px;
  height: 362px;
  object-fit: contain;
}

.widepipe2 .pipe-img {
  width: 39px;
  height: 175px;
  object-fit: contain;
}

.pipe-wrap.widepipe {
  left: -11%;
}

.widepipe2.pipe-wrap {
  left: -19%;
}

.offset-up .widepipe {
  left: 27%;
}

.offset-up .widepipe .pipe-img {
  width: 40px;
  height: 209px;
  object-fit: contain;
}

.gallery-column:last-child .widepipe .pipe-img {
  width: 39px;
  height: 144px;
  object-fit: contain;
}

.gallery-column:last-child {
  align-items: flex-start;
}

.gallery-column:last-child .widepipe2 .pipe-img {
  width: 46px;
  height: 237px;
  object-fit: contain;
}

.gallery-column:last-child .style-7.gallery-item {
  left: -30%;
}

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
  font-size: 28px;
  line-height: 1;
  position: absolute;
  top: calc(100% - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: #ed1c24;
  border: #ed1c24 1px solid;
  outline: none;
  background: #fff;
  border-radius: 53px;
  -webkit-border-radius: 53px;
  -moz-border-radius: 53px;
  -ms-border-radius: 53px;
  -o-border-radius: 53px;
  z-index: 5;
}

.testimonial-slider .slick-prev:hover,
.testimonial-slider .slick-next:hover,
.testimonial-slider .slick-prev:focus,
.testimonial-slider .slick-next:focus {
  color: #fff;
  background: #ed1c24;
  border-color: #ed1c24;
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
  content: "";
}

.testimonial-slider .slick-next {
  right: 132px;
}

.testimonial-slider .slick-prev {
  left: auto;
  right: 290px;
}

.footer-nav-section .brand-logo {
  height: 113px;
  object-fit: contain;
}

.footer-bg {
  padding: 110px 44px 15px 86px;
  background: #2787c1;
  border-radius: 12px;
  clip-path: polygon(
    0 calc(33% + 12px),
    0.92px calc(33% + 7.41px),
    3.51px calc(33% + 3.51px),
    7.41px calc(33% + 0.92px),
    12px 33%,
    100% 0,
    100% 100%,
    0% 100%
  );
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  margin-top: -80px;
  position: relative;
}

/* about */
/* ─── Hero / Swiper ────────────────────────────────── */
.pf-hero {
  position: relative;
  width: 100%;
  z-index: 1;
  /* overflow: hidden; */
}

.hero-swiper {
  width: 100%;
}

.hero-swiper .swiper-slide {
  position: relative;
  min-height: 497px;
  display: flex;
  align-items: center;
}

.pf-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pf-hero__blur {
  position: absolute;
  left: 6%;
  bottom: 20%;
  width: 102px;
  height: 97px;
  border-radius: 50%;
  background: #008fd5;
  filter: blur(76px);
  pointer-events: none;
}

.pf-hero__deco {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
  width: 9%;
  min-width: 90px;
  max-width: 132px;
  object-fit: contain;
}

.pf-hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 40px 41px 85px;
}

.pf-hero__side-img {
  width: 299px;
  flex-shrink: 0;
}

.pf-hero__side-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.pf-hero__side-img--left img {
  transform: rotate(-6deg);
}

.pf-hero__side-img--right img {
  transform: rotate(6deg);
}

.pf-hero__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  max-width: 668px;
  margin: 0 auto;
}
.pf-hero__logo {
  width: 100%;
  max-width: 287px;
  object-fit: cover;
}

.pf-hero__title {
  font-family: "Righteous", Helvetica, sans-serif;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 1.62px;
  line-height: 1.05;
  -webkit-text-stroke: 0;
}

.pf-hero__title .c-green {
  color: #3ab447;
}

.pf-hero__title .c-yellow {
  color: #f5b139;
}

.pf-hero__title .c-blue {
  color: #2787c1;
}

.pf-hero__sub {
  max-width: 623px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.96px;
  color: #5a7986;
}

/* Swiper bullets for hero */
.hero-swiper .swiper-pagination-bullet {
  background: #2787c1;
  opacity: 0.4;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: #2787c1;
  opacity: 1;
}

/* ─── Play Under One Roof ──────────────────────────── */
.pf-section-roof {
  position: relative;
  padding: 105px 40px 0;
}

.pf-roof__heading {
  font-family: "Righteous", Helvetica, sans-serif;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 1.68px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 32px;
  position: relative;
}

.pf-roof__heading .c-dark {
  color: #191919;
}

.pf-roof__heading .c-green {
  color: #3ab447;
}

.pf-roof__heading .c-blue {
  color: #2787c1;
}

.pf-roof__deco {
  position: absolute;
  right: -263px;
  top: -148px;
  width: 265px;
  height: 203px;
  pointer-events: none;
}

/* ─── Play Overview (blue card) ────────────────────── */
.pf-overview {
  position: relative;
  margin-top: 8px;
  border-radius: 12px;
  background: #daeefa;
  padding: 54px 0 54px 62px;
  overflow: visible;
}

.pf-overview__shadow {
  position: absolute;
  bottom: -12px;
  right: 0;
  width: 52%;
  height: 70px;
  border-radius: 388.5px / 35px;
  background: #d9d9d9;
  filter: blur(39.9px);
  pointer-events: none;
}

.pf-overview__text {
  position: relative;
  z-index: 10;
}

.pf-overview__text p {
  font-size: 16px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: 0.96px;
  color: #658490;
  text-transform: capitalize;
}

.pf-book-btn {
  display: inline-flex;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-top: 24px;
}

.pf-book-btn__wrap {
  width: 220px;
  height: 210px;
  background: url("../images/2.png") 100% 100% / 100% 100% no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-bottom: 90px; */
}

.pf-book-btn__wrap span {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.78px;
  white-space: nowrap;
  text-indent: -6px;
}

.pf-overview__img img {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 462px;
  object-fit: contain;
}

.pf-overview__img {
  position: relative;
  top: 113px;
}

/* ─── Why Choose Us ────────────────────────────────── */
.pf-why {
  position: relative;
  padding: 56px 38px;
}

.pf-why__blur {
  position: absolute;
  right: -25px;
  top: 120px;
  width: 131px;
  height: 129px;
  border-radius: 50%;
  background: #12b14d;
  filter: blur(97.6px);
  pointer-events: none;
}

.pf-why__heading {
  font-family: "Righteous", Helvetica, sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.68px;
  text-align: center;
  margin-bottom: 60px;
}

.pf-why__heading .c-dark {
  color: #191919;
}

.pf-why__heading .c-green {
  color: #3ab447;
}

.pf-why__heading .c-blue {
  color: #2787c1;
}

/* Feature cards grid */
/* .pf-why__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 35.1px;
  width: 100%;
}
.pf-why__grid > .pf-feature-card {
  flex: 1 1 calc(50% - 17.55px);
  min-width: 0;
}
@media (max-width: 991.98px) {
  .pf-why__grid > .pf-feature-card {
    flex: 1 1 100%;
  }
} */
.pf-feature-card {
  position: relative;
  width: 100%;
}

.pf-feature-card__deco {
  position: absolute;
  left: 83%;
  top: 51px;
  transform: translate(-50%, -50%);
  width: 92px;
  height: auto;
  z-index: 10;
  pointer-events: none;
}

.pf-feature-card__inner.float-end .pf-feature-card__body {
  justify-content: flex-end;
}

.pf-feature-card__inner {
  /* display: flex; */
  min-height: 222px;
  max-width: 507px;
  width: 100%;
}

.pf-feature-card__img {
  width: 336px;
  flex-shrink: 0;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 26px;
}

.pf-feature-card__body {
  display: flex;
  align-items: center;
  padding: 32px 40px;
  border: 1px solid #313a29;
  border-radius: 13.16px;
  margin-top: 80px;
  margin-bottom: 15px;
  min-height: 225px;
  -webkit-border-radius: 13.16px;
  -moz-border-radius: 13.16px;
  -ms-border-radius: 13.16px;
  -o-border-radius: 13.16px;
}

.pf-feature-card__body h3 {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #191919;
  margin-bottom: 10px;
}

.pf-feature-card__body p {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 15.4px;
  font-weight: 400;
  line-height: 26.3px;
  color: #658491;
}

.pf-feature-card__inner.float-start .pf-feature-card__img {
  left: auto;
  right: 0;
}

/* ─── Join The Fun (3-col center) ──────────────────── */
.pf-join {
  position: relative;
  padding: 160px 38px 120px;
}
.pf-join__blur-left {
  position: absolute;
  left: 0;
  top: 10px;
  width: 131px;
  height: 129px;
  border-radius: 50%;
  background: #12b14d;
  filter: blur(97.6px);
  pointer-events: none;
}

.pf-join__col-img {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pf-join__col-img img.pf-join__photo {
  width: 433px;
  height: 347px;
  border-radius: 12px;
  object-fit: cover;
  transform: rotate(-11.81deg);
}

.pf-join__col-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.84px;
  color: #658490;
  margin-top: 20px;
}

.pf-join__col-text--right {
  text-align: right;
}

.pf-join__center {
  position: relative;
  height: 646px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-join__oval-green {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 580px;
  height: 508px;
  border-radius: 290px / 254px;
  background: #12b24c;
  z-index: 1;
}

.pf-join__oval-white {
  position: absolute;
  left: 50%;
  bottom: -7%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 580px;
  height: 646px;
  border-radius: 290px / 323px;
  border: 1px solid #2787c1;
  background: #fff;
}

.pf-join__content {
  position: relative;
  z-index: 10;
  width: 379px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-top: -15%;
}

.pf-join__content h2 {
  font-family: "Righteous", Helvetica, sans-serif;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 1.68px;
  color: #fff;
}

.pf-join__content p {
  font-size: 16px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: 0.96px;
  color: #fff;
}

.pf-join__book-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: transparent;
  border: none;
  cursor: pointer;
}

.pf-join__book-wrap {
  width: 182px;
  height: 174px;
  background: url("../images/2.png") 100% 100% / 100% 100% no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 74px;
  top: 74px;
  position: relative;
}

.pf-join__book-wrap span {
  font-family: "Fredoka One", Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.78px;
}

#about .blob-g1 {
}

.pf-why__grid .row:last-child .col-lg-6:last-child .pf-feature-card__img {
  right: auto;
  left: 0;
  /* top: -80px; */
}

.pf-why .row {
  --bs-gutter-x: 2.5rem;
  --bs-gutter-y: 0;
}

.pf-join .col-lg-3:first-child .pf-join__col-img img.pf-join__photo {
  width: 433px;
  height: 347px;
  border-radius: 12px;
  object-fit: cover;
  transform: rotate(-11.81deg);
  position: relative;
  top: -90px;
  left: 44px;
}

.pf-join .col-lg-3:last-child .pf-join__col-img img.pf-join__photo {
  width: 433px;
  height: 347px;
  border-radius: 12px;
  object-fit: cover;
  transform: rotate(-11.81deg);
  position: relative;
  top: 130px;
  z-index: -1;
  left: -40px;
}

/* contact */
/* ── Contact Intro ───────────────────────────────────────── */
.intro-section {
  padding: 56px 1rem;
  text-align: center;
}

.intro-heading {
  font-family: "Righteous", Helvetica, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.08px;
  -webkit-text-stroke: 2px #fff;
  margin-bottom: 8px;
}

.intro-heading .c-dark {
  color: var(--ink);
}

.intro-heading .c-green {
  color: var(--green);
}

.intro-heading .c-blue {
  color: var(--blue);
}

.intro-desc {
  font-size: 1rem;
  font-weight: 600;
  color: #658491;
  letter-spacing: 0.6px;
  line-height: 2;
  max-width: 1039px;
  margin: 0 auto;
}

/* ── Form + Image Row ────────────────────────────────────── */
.form-row-section {
  position: relative;
  padding: 8px 2.5rem 119px;
}

.blob-left,
.blob-right {
  position: absolute;
  width: 131px;
  height: 129px;
  border-radius: 65.5px / 64.5px;
  background: var(--green-dark);
  filter: blur(97.6px);
  pointer-events: none;
}

.blob-left {
  left: -10px;
  top: 75%;
  transform: translateY(-50%);
}

.blob-right {
  right: 0;
  top: 28%;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .blob-left,
  .blob-right {
    display: none;
  }

  .form-row-section {
    padding: 8px 1rem 40px;
  }
}

.form-image {
  width: 100%;
  max-width: 375px;
  height: 375px;
  border-radius: 12px 0 0 12px;
  object-fit: cover;
  display: block;
}

.g-0,
.gy-0 {
  --bs-gutter-x: 0 !important;
}

@media (max-width: 991px) {
  .form-image {
    border-radius: 12px;
    max-width: 100%;
  }
}

.form-card {
  background: #fff;
  border: 1px solid #2787c1;
  border-radius: 44px;
  overflow: visible;
  position: relative;
}

.form-card-body {
  padding: 2rem;
}

@media (min-width: 768px) {
  .form-card-body {
    padding: 2rem 2.5rem;
  }
}

.form-label {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 2.25;
  color: #0c1421;
  display: block;
  margin-bottom: 2px;
}

.pf-required {
  color: #e63946;
  margin-left: 3px;
}

.form-control-pf {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 12px;
  background: #ceeefe;
  padding: 0 16px;
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 0.875rem;
  color: var(--ink);
  outline: none;
  transition: box-shadow 0.2s;
}

.form-control-pf::placeholder {
  color: #818181;
}

.form-control-pf:focus {
  box-shadow: 0 0 0 1px var(--blue-ring);
}

textarea.form-control-pf {
  height: 135px;
  resize: none;
  padding: 12px 16px;
}

.btn-submit {
  display: inline-block;
  min-width: 251px;
  border-radius: 100px;
  background: #ed1c24;
  color: #fff;
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  padding: 21px 40px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: #d91820;
}

/* ── Form validation states ──────────────────────────────── */
.form-control-pf.is-invalid {
  box-shadow: 0 0 0 1px #ed1c24;
}

.form-control-pf.is-valid {
  box-shadow: 0 0 0 1px #2e9e5b;
}

.pf-field-error {
  margin: 4px 2px 0;
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 0.8rem;
  line-height: 1.3;
  color: #ed1c24;
}

.pf-form-response {
  position: relative;
  z-index: 3;
  margin: 18px auto 0;
  padding: 12px 18px;
  max-width: 300px;
  /* background: #fff; */
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: center;
  border-radius: 12px;
  border: 1px solid transparent;
}

/* Empty paragraph collapses so it never takes space before a message shows. */
.pf-form-response:empty {
  display: none;
  margin: 0;
  padding: 0;
}

.pf-form-response.is-error {
  color: #b21218;
  background: #fdecee;
  border-color: #f3b6b9;
}

.pf-form-response.is-success {
  color: #1f7a45;
  background: #e4f6ec;
  border-color: #b6e3c8;
}

.form-deco {
  position: absolute;
  bottom: -2px;
  left: 8%;
  width: 149px;
  pointer-events: none;
  z-index: 1;
}

/* ── Contact Details Strip ───────────────────────────────── */
.details-strip {
  border: 1px solid var(--blue);
}

@media (max-width: 767px) {
  .details-strip {
    grid-template-columns: 1fr;
  }
}

.detail-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 112px;
  padding: 49px 24px;
  text-align: center;
  border: 1px solid #2787c1;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  height: 100%;
}

.details-strip {
  padding-bottom: 119px;
  padding-left: 40px;
  padding-right: 40px;
}

.detail-cell span {
  display: flex;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #2787c1;
  justify-content: center;
  align-items: center;
  flex: 0 0 80px;
}

.detail-cell + .detail-cell {
  border-left: 1px solid var(--blue);
}

@media (max-width: 767px) {
  .detail-cell + .detail-cell {
    border-left: none;
    border-top: 1px solid var(--blue);
  }
}

.detail-icon {
  width: 39px;
  height: 38px;
  object-fit: contain;
}

.detail-icon-fallback {
  width: 39px;
  height: 38px;
  font-size: 1.6rem;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #0c1421;
  margin: 0;
}

.detail-value a {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: #0c1421;
  margin: 0;
}

.hero-heading .c-green {
  color: #3ab447;
}

.hero-heading .c-yellow {
  color: #f5b139;
}

.hero-heading .c-blue {
  color: #2787c1;
}

#contact .pf-hero__center {
  max-width: 778px;
}

#contact .pf-hero__sub {
  max-width: 93%;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.96px;
  color: #5a7986;
  margin: 0 auto;
}

/* party */

/* PARTY PACKAGES SECTION */
.party-section {
  padding: 60px 0 80px;
  background: #fff;
}

.party-section-inner {
  margin: 0 auto;
  padding: 0 30px;
  border: 1px solid var(--blue);
  border-radius: 12px;
}

/* Price pill */
.price-pill {
  background: #ceeefe;
  border-radius: 222px;
  padding: 14px 32px;
  display: inline-block;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1.2px;
  color: #2787c1;
  text-transform: capitalize;
  white-space: nowrap;
  -webkit-border-radius: 222px;
  -moz-border-radius: 222px;
  -ms-border-radius: 222px;
  -o-border-radius: 222px;
  position: absolute;
  top: -30px;
  right: 30px;
}

/* Guest pill */
.guest-pill {
  background: #ceeefe;
  border-radius: 222px;
  padding: 14px 28px;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.96px;
  color: #2787c1;
  text-align: center;
  text-transform: capitalize;
  white-space: nowrap;
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
}

/* Play Party card */
.play-party-card {
  background: #2787c1;
  border-radius: 8px;
  padding: 30px 40px;
  color: #fff;
  max-width: 580px;
  width: 100%;
}

.play-party-card h2 {
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 1.68px;
  line-height: 34px;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.play-party-card p {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.84px;
  line-height: 28px;
  text-transform: capitalize;
}

/* Package includes card */
.package-includes-card {
  background: #2787c1;
  border-radius: 8px;
  padding: 55px 33px 55px 41px;
  color: #fff;
  height: 100%;
  max-width: 527px;
}

.package-includes-card h2 {
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 1.68px;
  line-height: 34px;
  text-transform: capitalize;
  margin-bottom: 24px;
}

.package-item {
  display: flex;
  gap: 5px;
  align-items: start;
  margin-bottom: 16px;
}

.package-item small {
  font-size: 16px;
}

.package-item img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.package-item p {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.84px;
  line-height: 28px;
  text-transform: capitalize;
  margin: 0;
  color: #fff;
}

/* Additional info card */
.additional-info-card {
  background: #ceeefe;
  border-radius: 8px;
  padding: 37px 64px;
  margin-top: 84px;
  position: relative;

  .form-deco {
    position: absolute;
    top: 99%;
    right: 10px;
    width: 105px;
    left: auto;
  }
}

.additional-info-card h3 {
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 1.68px;
  line-height: 34px;
  color: #0c1421;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.info-item img {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.info-item p {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.84px;
  line-height: 28px;
  color: #818181;
  text-transform: capitalize;
  margin: 0;
}

/* price */
/* IMAGE CIRCLE */
.play-section {
  padding: 101px 40px;
}

.play-image-wrapper {
  position: relative;

  .pipe-wrap {
    position: relative;
    left: 18%;
    width: 163px;
    height: 288px;
    z-index: 0;
    bottom: 0;
    top: auto;
  }
}

/* THIN GREEN RING */

.green-ring {
  position: absolute;
  top: -54px;
  right: 9px;
  width: 483px;
  height: 475px;
  border: 1.5px solid #12b24c;
  border-radius: 50%;
  z-index: -1;
}

.play-image-circle {
  left: 0;
  width: 100%;
  height: 475px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  background: #fff;
}

.play-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PIPE WRAPPER */

/* .play-section .pipe-wrap {
  position: absolute;
  left: 85px;
  top: 305px;
  width: 70px;
  height: 170px;
  z-index: 0;
} */

/* =========================
           RIGHT CONTENT
        ========================== */

.play-content {
  padding-top: 10px;
}

.main-title {
  font-family: "Righteous", sans-serif;
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #222;
}

.main-title .green {
  color: #39b54a;
}

.main-title .blue {
  color: #2787c1;
}

.sub-text {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  line-height: 1.8;
  color: #7d8b95;
  margin-bottom: 30px;
  font-weight: 600;
  max-width: 92%;
  letter-spacing: 0.5px;
}

/* =========================
           AGE CARDS
        ========================== */

.age-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 772px;
  justify-content: space-around;
}

.age-card {
  background: #dcecf8;
  border-radius: 6px;
  min-height: 82px;
  display: flex;
  align-items: center;
  position: relative;
  font-family: "Righteous", sans-serif;
  justify-content: flex-end;
  font-weight: 400;
  color: #4f5559;
  font-size: 30px;
  padding: 25px 38px;
  margin-top: 45px;
  flex: 0 0 46.5%;
  width: 0 0 46.5%;
}

.price-badge {
  position: absolute;
  top: -43px;
  left: 0px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: #1f89cf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.age-card:first-child .price-badge,
.age-card:nth-child(2) .price-badge {
  right: -31px;
  left: auto;
}

.age-card:first-child,
.age-card:nth-child(2),
.age-card:last-child {
  justify-content: flex-start;
}

.age-card:last-child {
  padding-left: 98px;
}

/* =========================
           GREEN INFO BAR
        ========================== */

.info-bar {
  background: #12b24c;
  border-radius: 10px;
  padding: 44px 64px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;

  h3 {
    font-family: "Righteous", sans-serif;
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
  }
}

.info-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-list li {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}

.info-list li img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* =========================
           OFFER AREA
        ========================== */

.offer-area {
  margin-top: 50px;
  position: relative;
}

.offer-card {
  background: #008fd5;
  border-radius: 8px;
  padding: 43px 22px;
  text-align: center;
  color: #fff;
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.offer-card h3 {
  font-family: "Righteous", sans-serif;
  font-size: 32px;
  margin-bottom: 12px;
}

.offer-card h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
  border-bottom: #fff 1px solid;
  padding-bottom: 5px;
  flex: 0 0 auto;
  width: fit-content;
}

.offer-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 24px;
  opacity: 0.95;
}

/* LEFT OFFER */

.offer-badge {
  background: rgba(255, 255, 255, 0.25);
  padding: 12px 19px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.8;
  display: inline-block;
  margin: auto;
  max-width: 317px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.offer-price {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 600;
}

/* RIGHT TAGS */

.meal-tags {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.25);
  padding: 8px 12px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  max-width: 379px;
  width: 100%;
}

.meal-tags span {
  font-size: 14px;
  font-weight: 400;

  & img {
    width: 23px;
    height: 23px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
  }
}

/* CENTER YELLOW PIPE */

.center-pipe {
  position: relative;
  width: 274px;
  /* height: 170px; */
  top: 67px;
  z-index: -1;
  left: 13px;

  img {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
  }
}

.pipe-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 70px;
  height: 70px;
  border: 14px solid #f2c10d;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.yellow-line {
  position: absolute;
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 110px;
  background: #f2c10d;
  border-radius: 20px;
}

.right-offer {
  margin-top: 183px;
}

/* =========================
           RESPONSIVE
        ========================== */

@media (max-width: 991px) {
  .play-image-wrapper {
    margin-bottom: 40px;
  }

  .play-content {
    text-align: center;
  }

  .sub-text {
    margin-inline: auto;
  }

  .age-grid {
    margin: auto;
  }

  .center-pipe {
    display: none;
  }

  .right-offer {
    margin-top: 30px;
  }

  .offer-card {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .main-title {
    font-size: 34px;
  }

  .age-grid {
    grid-template-columns: 1fr;
  }

  .info-list {
    justify-content: center;
  }

  .play-image-wrapper {
    transform: scale(0.9);
    transform-origin: center top;
  }
}

/* play */
/* ══════════════════════════════════════════════════════════════
       2. TERM TIME DATES
       Matches: absolute left-[172px] top-[659px] w-[1448px]
    ══════════════════════════════════════════════════════════════ */
#term-time {
  background: #ffffff;
  padding: 72px 40px 80px;
}

.opening-card-pic {
  max-width: 357px;
  position: relative;
  bottom: -25px;
  right: 33px;
}

.section-heading {
  font-family: "Righteous", Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.96px;
  margin-bottom: 37px;
  color: #191919;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

/* Light-blue card — bg-[#daeefa] rounded-xl h-[402px] */
#term-time {
  z-index: 0;
}

.term-dates-card {
  background: #dbeefa;
  border-radius: 12px;
  border: none;
  padding: 51px 38px;
  min-height: 402px;
  padding-right: 120px;

  .overview-img-behind {
    height: 611px;
    width: auto;
    position: absolute;
    top: -211px;
    right: -244px;
    left: auto;
    bottom: auto;
  }
}

.term-entry {
  margin-bottom: 28px;
}
#term-time .container-fluid .term-dates-card .col-md-6 .term-entry {
  margin-bottom: 0;
  border-bottom: 1px solid #515356;
}
#term-time .container-fluid .term-dates-card .col-md-6 .term-entry {
  padding: 28px 0;
}
#term-time
  .container-fluid
  .term-dates-card
  .col-md-6
  .term-entry:nth-child(1) {
  padding-top: 0;
}
.term-entry:last-child {
  margin-bottom: 0;
}
#term-time .container-fluid .term-dates-card .col-md-6 .term-entry:last-child {
  border-bottom: 1px solid #51535600;
  padding-bottom: 0;
}

.term-title {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #515356;
  letter-spacing: 0.12px;
  margin-bottom: 6px;
}

.term-title .date-range {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.08px;
}

.term-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.term-label {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #515356;
  letter-spacing: 0.54px;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.term-value {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #515356;
  letter-spacing: 0.48px;
}

/* Blue opening hours card — bg-[#008fd5] h-[291px] w-[456px] */
.opening-card {
  background: #008fd5;
  border-radius: 8px;
  padding: 28px 26px;
  color: #ffffff;
}

.opening-card-heading {
  font-family: "Righteous", Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.6px;
  color: #ffffff;
  margin-bottom: 0;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}

.opening-card-heading .sub {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.1px;
}

/* Semi-transparent white badges — bg-[#ffffff40] */
.hours-badge {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 8px 13px;
  color: #ffffff;
}

.hours-badge .hb-title {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.48px;
  margin: 0;
}

.hours-badge .hb-time {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.45px;
  margin: 0;
}

.additional-heading {
  font-family: "Righteous", Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.6px;
  color: #ffffff;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════════
       3. TERM TIME OFFERS
       Matches: absolute left-[296px] top-[1282px] w-[1200px]
    ══════════════════════════════════════════════════════════════ */
#term-offers {
  background: #ffffff;
  padding: 0 0 0;
}

/* Oval border — rounded-[600px/160px] border-[#008fd5] h-80 */
.offers-oval {
  border: 1.5px solid #008fd5;
  border-radius: 600px / 160px;
  height: 320px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.offers-oval-inner {
  text-align: center;
}

.ovel-l {
  position: absolute;
  left: 5%;
  bottom: 56px;
}

.ovel-r {
  position: absolute;
  right: 5%;
  bottom: 56px;
}

.offers-heading {
  font-family: "Righteous", Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.96px;
  color: #191919;
  margin-bottom: 6px;
}

.offers-desc {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.96px;
  line-height: 1.75;
  color: #5a7a87;
}

/* Green card overlapping oval bottom — relative mt-[-22px] */
.offers-green-wrap {
  position: relative;
  margin-top: -22px;
  display: flex;
  justify-content: center;
}

/* Floating "Term Time Offers" label — absolute left-[422px] top-[-43px] */
.offers-float-label {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Righteous", Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.6px;
  color: #ffffff;
  background: #2787c1;
  padding: 3px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Green card — bg-[#12b24c] border-[#2787c1] rounded-xl, now holds schedule content */
.offers-green-card {
  background: #12b24c;
  border: 1px solid #2787c1;
  border-radius: 12px;
  width: 100%;
  max-width: 784px;
  padding: 28px 32px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -12%;
}

/* ══════════════════════════════════════════════════════════════
       4. SCHEDULE — Monday to Friday (lives inside .offers-green-card)
    ══════════════════════════════════════════════════════════════ */
.schedule-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 688px;
  margin: 0 auto;
}

.schedule-main-heading {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #ffffff;
  text-align: center;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}

/* Light-blue inner card — bg-[#daeefa] rounded-[14px] */
.schedule-card {
  background: #daeefa;
  border-radius: 14px;
  width: 100%;
  padding: 15px 15px;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-card-inner {
  text-align: center;
}

.schedule-card-title {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.48px;
  color: #191919;
  margin: 0 0 6px;
}

.schedule-card-sub {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.42px;
  color: #658491;
  margin: 0;
}

.schedule-note {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.42px;
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
       5. FUN SPACE — "A Fun-filled Play Space For Kids"
       Matches: DivWrapperSubsection  left-[508px] top-[1780px]
    ══════════════════════════════════════════════════════════════ */
#fun-space {
  background: #ffffff;
  padding: 80px 0 20px;
  text-align: center;
}

.fun-heading {
  font-family: "Righteous", Helvetica, sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: 1.44px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.fun-heading .c-dark {
  color: #191919;
}

.fun-heading .c-green {
  color: #12b24c;
}

.fun-heading .c-blue {
  color: #008fd5;
}

.fun-desc {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.96px;
  line-height: 2.1;
  color: #658490;
  max-width: 713px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
       6. FEATURE ROWS — Ball Cannons etc.
       Matches: DivSubsection  left-[172px] top-[1985px]
       Each row: h-[470px] = grid-rows-[273px_197px]
    ══════════════════════════════════════════════════════════════ */
#features {
  background: #ffffff;
  padding: 0 40px 80px;
  z-index: 1;
}

.feature-row {
  position: relative;
  z-index: 1;
  margin-bottom: 70px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

/* Feature row: upper content area (273px) */
.feature-top {
  border-radius: 8px 8px 0 0;
  padding: 40px 83px 0;
  display: grid;
  grid-template-columns: 28% 28% 28%;
  gap: 129px;
  min-height: 273px;
  align-items: flex-start;
  justify-content: center;
}

/* .feature-top.sky-bg {
  background: #008fd5;
}
.feature-top.green-bg {
  background: #12b24c;
} */

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 20px;

  /* width: 340px; */
  img {
    width: 100%;
    height: 386px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    object-fit: cover;
  }
}

.feature-title {
  font-family: "Righteous", Helvetica, sans-serif;
  font-size: 20px;
  letter-spacing: 0.6px;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

/* Lower coloured band — 197px equivalent */
.feature-band {
  position: absolute;
  height: 197px;
  width: 100%;
  border-radius: 8px;
  bottom: -30px;
  z-index: -1;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.feature-band.sky {
  background: #008fd5;
}

.feature-band.green {
  background: #12b24c;
}

/* ══════════════════════════════════════════════════════════════
       Green glow blobs (decorative)
    ══════════════════════════════════════════════════════════════ */
.glow-green {
  position: absolute;
  width: 131px;
  height: 129px;
  border-radius: 65px;
  background: #12b14d;
  filter: blur(97.6px);
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════
       Responsive tweaks
    ══════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .hero-heading {
    font-size: 38px;
  }

  .offers-oval {
    border-radius: 40px;
    height: auto;
    padding: 40px 32px;
  }

  .feature-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-img {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .hero-heading {
    font-size: 30px;
    letter-spacing: 1.5px;
  }

  .term-dates-card {
    padding: 32px 20px;
  }

  .feature-top {
    padding: 28px 20px;
  }
}

.activity-section .slick-list {
  overflow: visible;
}

.page-id-11 .party-section {
  position: relative;
}

.page-id-11 .party-section::after {
  position: absolute;
  top: 37%;
  left: auto;
  right: 60px;
  bottom: 0;
  content: "";
  border: 1px solid #2787c1;
  width: 93%;
  height: 249px;
  border-radius: 12px;
}

.page-id-11 .party-section .container-fluid {
  position: relative;
  z-index: 2;
}

#intro-heading {
  letter-spacing: 3%;
}

.pf-hero p {
  color: #5a7a87;
}

.play-image-circle {
  width: 97%;
}
/* #packages .packages-bg .row {
    --bs-gutter-x: 9.25rem;
} */

.pkg-deco-1 {
  z-index: 2;
}

#term-time .term-dates-card .row {
  --bs-gutter-x: 2.25rem;
}

.page-id-8 .pf-hero__side-img img {
  transform: rotate(0deg);
}
.page-id-8 .pf-hero__side-img--left {
  transform: rotate(-6deg);
}
.page-id-8 .pf-hero__side-img--right {
  transform: rotate(6deg);
}
.page-id-8 #main .pf-why {
  padding-top: 140px;
}
.pf-feature-card__img {
  width: 329px;
  height: 198px;
  flex-shrink: 0;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 26px;
}
.page-id-8 .pf-why .on .pf-feature-card__body {
  justify-content: start !important;
}
.page-id-8 .pf-why .on .pf-feature-card__img {
  right: 0;
  left: auto;
}
.page-id-8 .pf-why .on .pf-feature-card {
  display: flex;
  justify-content: start;
}
.page-id-8 .pf-why .on2 .pf-feature-card__body {
  justify-content: end !important;
}
.page-id-8 .pf-why .on2 .pf-feature-card__img {
  right: auto;
  left: 0;
}
.page-id-8 .pf-why .on2 .pf-feature-card {
  display: flex;
  justify-content: end;
}
/* .page-id-8 .pf-why .top{
  position: relative;
}
.page-id-8 .pf-why .top::after{
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: auto;
  content: "";
  background-image: url(../images/icon-image-1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: 5;
} */

.page-id-10 .blob-g3 {
  left: 70px;
  top: 750px;
  width: 131px;
  height: 129px;
  background: #12b14d;
}
.page-id-10 .blob-b1 {
  display: none;
}
.page-id-10 .blob-g2 {
  top: 70%;
}
.page-id-6 .blob-b1 {
  top: 25%;
  background: #008fd5;
}
.footer-links .current_page_item a:hover,
.footer-links .current_page_item a {
  font-weight: 800;
}
.age-card:nth-child(3),
.age-card:nth-child(4) {
  justify-content: center;
}
.age-card:nth-child(4) {
  position: relative;
  left: -22px; padding-left: 60px;
}
.page-id-10 .blob-b1 {
    display: none !important;
}
