:root {
  --ocean-blue: #00b4d8;
  --sunny-yellow: #ffd60a;
  --splash-cyan: #48cae4;
  --tropical-orange: #ff6b35;
  --palm-green: #38b000;
  --sand-beige: #fff8e7;
  --deep-navy: #023e8a;
  --pure-white: #ffffff;
  --text-dark: #08213f;
  --shadow-soft: 0 10px 30px rgba(2, 62, 138, 0.12);
  --shadow-card: 0 8px 20px rgba(2, 62, 138, 0.1);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 214, 10, 0.2), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(0, 180, 216, 0.2), transparent 34%),
    linear-gradient(180deg, #f0fcff 0%, #ffffff 40%, #f8feff 100%);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0 0 0.8rem;
  font-family: "Fredoka", "Baloo 2", system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--deep-navy);
}

.section-head p {
  margin: 0 auto;
  max-width: 60ch;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.7rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--deep-navy);
  background: rgba(255, 214, 10, 0.35);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  background: #000;
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.top-offer-bar {
  background: linear-gradient(90deg, #0057a8 0%, #7447cc 52%, #ff5d8f 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.top-offer-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.35rem 0;
  text-align: center;
}

.top-offer-inner p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}

.top-offer-inner p span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffd83d;
  color: #0b376f;
  margin-right: 0.5rem;
  font-size: 0.72rem;
}

.top-offer-inner a {
  flex-shrink: 0;
  text-decoration: none;
  background: #fff;
  color: #113f7f;
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 180, 216, 0.2);
}

.site-header.scrolled {
  box-shadow: var(--shadow-soft);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.brand-badge {
  font-size: 1.5rem;
}

.brand-logo {
  display: block;
  max-height: 74px;
  width: auto;
}

.brand-text {
  font-family: "Fredoka", "Baloo 2", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-navy);
}

.site-nav {
  position: fixed;
  inset: 76px 0 auto 0;
  background: var(--pure-white);
  padding: 1rem 1.2rem 1.5rem;
  transform: translateY(-130%);
  transition: transform 0.28s ease;
  box-shadow: var(--shadow-soft);
}

.site-nav.open {
  transform: translateY(0);
}

.site-nav ul {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
}

.site-nav ul a {
  display: block;
  padding: 0.6rem;
  border-radius: 10px;
}

.site-nav ul a:hover,
.site-nav ul a:focus-visible {
  background: rgba(72, 202, 228, 0.17);
  outline: none;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 10px;
  background: rgba(0, 180, 216, 0.12);
  display: grid;
  place-items: center;
  gap: 0;
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
}

.menu-toggle span {
  width: 22px;
  height: 4px;
  background: var(--deep-navy);
  border-radius: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 3px solid var(--deep-navy);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--sunny-yellow);
  color: #231b00;
}

.btn-secondary {
  background: var(--pure-white);
  border-color: var(--ocean-blue);
  color: var(--deep-navy);
}

.btn-accent {
  background: var(--tropical-orange);
  color: #fff;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1ebd5a;
  border-color: #1ebd5a;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 24, 84, 0.45), rgba(0, 24, 84, 0.35)),
    url("https://www.skyland44waterpark.com/wp-content/uploads/2025/05/Web_Photo_Editor-1-1.jpg")
      center / cover no-repeat;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.hero::before {
  width: 240px;
  height: 240px;
  top: -90px;
  left: -80px;
}

.hero::after {
  width: 190px;
  height: 190px;
  top: 30px;
  right: -50px;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background:
    radial-gradient(160% 90px at 50% 100%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.22) 55%, rgba(255, 255, 255, 0) 76%),
    linear-gradient(180deg, rgba(179, 223, 247, 0) 0%, rgba(199, 236, 255, 0.75) 70%, #eaf7ff 100%);
  backdrop-filter: blur(1px);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3.2rem 0 5.2rem;
}

.offer-pill {
  display: inline-block;
  margin: 0 0 1.2rem;
  padding: 0.5rem 1rem;
  background: rgba(2, 33, 90, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-weight: 800;
  color: #fff;
}

h1 {
  margin: 0;
  font-family: "Fredoka", "Baloo 2", sans-serif;
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1.05;
  color: var(--deep-navy);
}

.hero-subtitle {
  margin: 1.1rem auto 1.9rem;
  max-width: 62ch;
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: #f4fbff;
  text-shadow: 0 2px 6px rgba(0, 20, 66, 0.3);
}

.hero h1 {
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 16, 56, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero-actions .btn span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  font-size: 0.92rem;
}

.hero-highlights {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 20, 66, 0.48);
  font-weight: 700;
  color: #eaf8ff;
  text-shadow: none;
}

.pricing-grid,
.attraction-grid,
.hours-grid,
.package-grid,
.benefit-grid,
.stats-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.price-card,
.attraction-card,
.hour-card,
.package-card,
.benefit,
.stat,
.testimonial,
.extras,
.contact-cta .container {
  background: var(--pure-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.price-card,
.attraction-card,
.hour-card,
.package-card,
.benefit,
.stat {
  padding: 1.2rem;
}

.featured {
  border: 3px solid rgba(255, 214, 10, 0.7);
}

.price {
  margin: 0.3rem 0 0.6rem;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--deep-navy);
}

.pricing {
  background: #f5f8fd;
}

.pricing .section-head h2 span {
  color: #11a6e8;
}

.pricing-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.1rem;
}

.price-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10, 70, 130, 0.08);
}

.price-card::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(17, 166, 232, 0.08);
}

.price-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eaf8ff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.price-card h3 {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
}

.price-card .price {
  font-size: 2.8rem;
  line-height: 1;
}

.price-card.weekday .price-icon {
  background: rgba(0, 180, 216, 0.18);
}

.price-card.weekend .price-icon {
  background: rgba(255, 107, 171, 0.2);
}

.price-card.kids .price-icon {
  background: rgba(56, 176, 0, 0.2);
}

.price-card.extras-card .price-icon {
  background: rgba(255, 214, 10, 0.24);
}

.price-card.extras-card .price {
  font-size: 1.85rem;
}

.pricing-table-wrap {
  margin-top: 1.25rem;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.pricing-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}

.pricing-table thead th {
  text-align: left;
  background: #11a6e8;
  color: #fff;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
}

.pricing-table tbody td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #edf3fb;
  font-weight: 600;
  color: #2f4a69;
}

.pricing-table tbody tr:nth-child(even) {
  background: #f8fbff;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.22rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.price-badge.free {
  background: rgba(56, 176, 0, 0.2);
  color: #1d7d00;
}

.price-badge.kids {
  background: rgba(56, 176, 0, 0.2);
  color: #1d7d00;
}

.price-badge.adult {
  background: rgba(17, 166, 232, 0.2);
  color: #0b6ea6;
}

.price-badge.extra {
  background: rgba(255, 107, 171, 0.2);
  color: #b74179;
}

.attractions {
  background:
    radial-gradient(circle at 8% 10%, rgba(72, 202, 228, 0.25), transparent 23%),
    radial-gradient(circle at 96% 40%, rgba(255, 214, 10, 0.2), transparent 28%),
    linear-gradient(180deg, #f8fdff 0%, #edfbff 100%);
}

.attraction-card {
  border: 2px solid rgba(0, 180, 216, 0.13);
}

.attraction-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff9cb 0%, #d9f8ff 100%);
  border: 2px solid rgba(0, 180, 216, 0.25);
  display: grid;
  place-items: center;
  position: relative;
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.attraction-icon span {
  display: block;
  font-size: 2rem;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.attraction-icon img {
  display: none;
}

.attraction-card h3::before {
  content: "💧 ";
}

.hours {
  background: #f6f8fc;
}

.hours-layout {
  display: grid;
  gap: 1.5rem;
}

.hours-copy h2 {
  margin: 0 0 1rem;
  font-family: "Fredoka", "Baloo 2", sans-serif;
  font-size: clamp(2rem, 5.2vw, 4rem);
  line-height: 1.05;
  color: #0d3d80;
}

.hours-copy p {
  margin: 0;
  max-width: 48ch;
  color: #3d5d87;
}

.hours-grid {
  gap: 0.85rem;
}

.hour-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(13, 61, 128, 0.12);
}

.hour-card h3,
.hour-card p {
  margin: 0;
}

.hour-card h3 {
  font-size: 1.05rem;
}

.hour-card p {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f3f80;
}

.hour-card:first-child,
.hour-card.break {
  background: #ffd83d;
}

.hour-card:nth-child(2) {
  background: #ffffff;
}

.packages {
  background: linear-gradient(180deg, #0596dd 0%, #0a81cf 100%);
}

.packages .section-head .section-kicker {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.packages .section-head h2,
.packages .section-head p {
  color: #fff;
}

.packages .section-head h2 span {
  color: #ffd83d;
}

.package-grid {
  gap: 1.3rem;
}

.package-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.2);
  color: #eaf8ff;
}

.package-card h3 {
  margin: 0.3rem 0 0.1rem;
  font-size: 1.9rem;
  font-family: "Fredoka", "Baloo 2", sans-serif;
  color: #fff;
}

.package-card .price {
  color: #ffd83d;
  font-size: 3rem;
  margin: 0.2rem 0 0.8rem;
  line-height: 1;
}

.package-label {
  margin: 0;
  display: inline-block;
  padding: 0.28rem 0.68rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #0d4b90;
  background: #ffd83d;
}

.package-card ul {
  margin: 0 0 1.1rem;
  padding-left: 1.1rem;
}

.package-card li {
  margin-bottom: 0.45rem;
}

.package-card .btn {
  width: 100%;
}

.package-card.featured {
  background: #ffffff;
  color: #17385f;
  border-color: #ffd83d;
}

.package-card.featured h3 {
  color: #132a4a;
}

.package-card.featured .package-label {
  background: #00a2e8;
  color: #fff;
}

.package-card.featured .price {
  color: #00a2e8;
}

.why-visit {
  background: #f4f5f9;
}

.why-visit .section-head .section-kicker {
  background: rgba(0, 162, 232, 0.16);
}

.benefit-grid {
  gap: 1.3rem;
}

.benefit {
  text-align: center;
  padding: 1.5rem 1.2rem;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 0.9rem;
  font-size: 1.35rem;
  line-height: 1;
  border: 1px solid rgba(18, 45, 85, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.benefit-icon.cyan {
  background: rgba(0, 180, 216, 0.14);
}

.benefit-icon.green {
  background: rgba(56, 176, 0, 0.14);
}

.benefit-icon.pink {
  background: rgba(255, 107, 171, 0.18);
}

.benefit-icon.yellow {
  background: rgba(255, 214, 10, 0.2);
}

.benefit h3 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
  font-family: "Fredoka", "Baloo 2", sans-serif;
}

.benefit p {
  margin: 0;
  color: #52627b;
}

.stats {
  background: var(--deep-navy);
  color: #fff;
}

.stats .stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.count {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-item {
  min-height: 110px;
  border: 2px solid rgba(0, 180, 216, 0.28);
  border-radius: var(--radius-sm);
  background: linear-gradient(140deg, #e4f8ff, #caf4ff);
  color: var(--deep-navy);
  font-weight: 800;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 130px;
  object-fit: cover;
  display: block;
}

.gallery-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--deep-navy);
}

.testimonials {
  background: linear-gradient(180deg, #fffaf1 0%, #fff 100%);
}

.testimonial-slider {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
}

.testimonial {
  display: none;
  padding: 1.6rem 1.4rem;
  border-left: 5px solid #11a6e8;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 214, 10, 0.18), transparent 24%),
    #fff;
}

.testimonial::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 2.9rem;
  line-height: 1;
  color: rgba(17, 166, 232, 0.35);
  display: block;
}

.testimonial.active {
  display: block;
}

.testimonial-stars {
  margin: 0 0 0.4rem;
  letter-spacing: 0.14em;
  color: #ffb300;
  font-size: 0.92rem;
}

.testimonial p {
  margin-top: 0.2rem;
  color: #1f3c63;
  font-weight: 600;
}

.testimonial h3 {
  margin: 1rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Fredoka", "Baloo 2", sans-serif;
}

.avatar-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(180deg, #14a9ea 0%, #0a6fbf 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.slider-dots {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(2, 62, 138, 0.25);
}

.slider-dot.active {
  background: var(--deep-navy);
}

.contact-cta {
  background: linear-gradient(180deg, #dbf5ff 0%, #f5fcff 100%);
}

.contact-cta .container {
  text-align: center;
  padding: 2rem 1.6rem;
  max-width: 980px;
  background: #ffffff;
  border: 1px solid rgba(0, 180, 216, 0.2);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1rem;
}

.contact-icon-row {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.6rem;
}

.contact-icon-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #214872;
  font-weight: 700;
  background: #f4fbff;
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
}

.contact-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e7f7ff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

address {
  margin-top: 1rem;
  font-style: normal;
  font-weight: 700;
  color: #1f3e66;
}

.site-footer {
  background: #06214a;
  color: #dcecff;
  padding: 2.5rem 0 1.4rem;
}

.footer-logo {
  width: 84px;
  height: auto;
  margin-bottom: 0.5rem;
}

.site-footer h2 {
  margin-top: 0;
  font-size: 1.1rem;
  color: #fff;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 0.35rem;
}

.site-footer a {
  color: #dcecff;
}

.copyright {
  text-align: center;
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(220, 236, 255, 0.2);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 16, 36, 0.8);
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-inner {
  width: min(760px, 100%);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: #fff;
  position: relative;
  text-align: center;
}

#lightbox-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 0.8rem;
}

.lightbox-close {
  position: absolute;
  right: 0.7rem;
  top: 0.3rem;
  background: transparent;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
}

.whatsapp-float {
  position: fixed;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 40;
  text-decoration: none;
  padding: 0.75rem 1rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow-card);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.whatsapp-float img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
