@import url("https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --aqua-deep: #03152c;
  --aqua-navy: #05244a;
  --aqua-blue: #0878d8;
  --aqua-sky: #38c9ff;
  --aqua-teal: #23d5c8;
  --aqua-foam: #eefbff;
  --aqua-text: #496376;
  --aqua-ink: #06203a;
  --aqua-border: rgba(8, 120, 216, 0.16);
  --aqua-shadow: 0 24px 60px rgba(3, 21, 44, 0.14);
  --aqua-font-body: "Merriweather Sans", "Segoe UI", Arial, sans-serif;
  --aqua-font-heading: "Merriweather Sans", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 8% 4%, rgba(56, 201, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #f6fcff 0%, #ffffff 45%, #f0faff 100%);
  color: var(--aqua-text);
  font-family: var(--aqua-font-body);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  overflow-x: hidden;
}

body:before,
body:after {
  background-image:
    radial-gradient(circle, rgba(56, 201, 255, 0.55) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(35, 213, 200, 0.4) 0 1px, transparent 2px);
  background-size: 82px 82px, 128px 128px;
  content: "";
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

body:after {
  animation: aquaSparkleDrift 18s linear infinite;
  opacity: 0.22;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--aqua-ink);
  font-family: var(--aqua-font-heading);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 14px;
}

p {
  font-weight: 500;
  margin: 0 0 14px;
}

main {
  overflow: hidden;
}

.aqua-header {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 50;
}

.aqua-page:not(.page-home) .aqua-header {
  background: linear-gradient(135deg, rgba(3, 21, 44, 0.96), rgba(5, 36, 74, 0.92));
  padding-bottom: 18px;
  position: relative;
}

.aqua-topbar {
  background: rgba(3, 21, 44, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.86);
  padding: 9px 0;
}

.aqua-topbar-inner {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: flex-end;
}

.aqua-topbar span {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
}

.aqua-topbar i {
  color: var(--aqua-sky);
}

.aqua-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  box-shadow: 0 22px 52px rgba(3, 21, 44, 0.2);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 18px;
  padding: 12px;
  position: relative;
}

.aqua-nav:before {
  background: linear-gradient(90deg, transparent, rgba(56, 201, 255, 0.45), transparent);
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  position: absolute;
}

.aqua-brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 220px;
  position: relative;
  z-index: 1;
}

.aqua-brand img {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(3, 21, 44, 0.12);
  height: 58px;
  object-fit: contain;
  padding: 6px;
  width: 72px;
}

.aqua-brand span {
  color: var(--aqua-ink);
  font-family: var(--aqua-font-body);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
}

.aqua-menu {
  align-items: center;
  display: flex;
  gap: 6px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.aqua-menu a {
  border-radius: 16px;
  color: var(--aqua-ink);
  font-family: var(--aqua-font-body);
  font-size: 15px;
  font-weight: 800;
  padding: 13px 15px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.aqua-menu a:hover,
.aqua-menu a.active {
  background: linear-gradient(135deg, var(--aqua-blue), var(--aqua-sky));
  box-shadow: 0 14px 28px rgba(8, 120, 216, 0.24);
  color: #ffffff;
  transform: translateY(-2px);
}

.aqua-nav-cta,
.aqua-btn {
  background: linear-gradient(135deg, var(--aqua-blue), var(--aqua-teal));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(8, 120, 216, 0.28);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  font-family: var(--aqua-font-body);
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  padding: 15px 28px;
  position: relative;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  z-index: 1;
}

.aqua-nav-cta:hover,
.aqua-btn:hover {
  box-shadow: 0 22px 42px rgba(8, 120, 216, 0.32);
  color: #ffffff;
  filter: saturate(1.1);
  transform: translateY(-3px);
}

.aqua-btn-light {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #ffffff;
}

.aqua-btn i,
.aqua-link i {
  line-height: 1;
}

.aqua-btn-small {
  border-radius: 18px;
  font-size: 14px;
  margin-top: 14px;
  padding: 11px 18px;
}

.aqua-menu-toggle {
  align-items: center;
  background: linear-gradient(135deg, var(--aqua-blue), var(--aqua-sky));
  border: 0;
  border-radius: 16px;
  color: #ffffff;
  display: none;
  font-size: 28px;
  height: 48px;
  justify-content: center;
  width: 52px;
}

.aqua-hero,
.aqua-page-hero {
  background: var(--aqua-deep);
  color: #ffffff;
  min-height: 820px;
  position: relative;
}

.aqua-hero {
  overflow: hidden;
}

.aqua-hero:after,
.aqua-page-hero:after {
  background:
    radial-gradient(circle at 12% 70%, rgba(56, 201, 255, 0.42), transparent 24%),
    linear-gradient(180deg, transparent 0%, rgba(246, 252, 255, 0.86) 58%, #f6fcff 100%);
  bottom: -1px;
  content: "";
  height: 220px;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.aqua-hero:before {
  background:
    radial-gradient(120px 34px at 50% 100%, rgba(255, 255, 255, 0.92) 98%, transparent 100%);
  background-size: 220px 80px;
  bottom: -18px;
  content: "";
  height: 84px;
  left: 0;
  opacity: 0.95;
  position: absolute;
  width: 100%;
  z-index: 5;
}

.aqua-sparkles {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.75) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(56, 201, 255, 0.75) 0 2px, transparent 3px);
  background-size: 80px 80px, 150px 150px;
  inset: 0;
  opacity: 0.36;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.aqua-hero-slide,
.aqua-page-hero {
  background-position: center;
  background-size: cover;
  min-height: 820px;
  position: relative;
}

.aqua-simple-slide {
  align-items: center;
  background-position: center;
  background-size: cover;
  display: flex;
  min-height: 860px;
  position: relative;
}

.aqua-simple-slide:before {
  background:
    linear-gradient(100deg, rgba(3, 21, 44, 0.9) 0%, rgba(3, 21, 44, 0.62) 46%, rgba(8, 120, 216, 0.18) 100%),
    radial-gradient(circle at 78% 24%, rgba(56, 201, 255, 0.34), transparent 26%);
  content: "";
  inset: 0;
  position: absolute;
}

.aqua-simple-slide .container {
  position: relative;
  z-index: 3;
}

.aqua-simple-caption {
  animation: aquaHeroCaptionIn 0.9s ease both;
  background: linear-gradient(135deg, rgba(3, 21, 44, 0.42), rgba(8, 120, 216, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  max-width: 720px;
  padding: 38px;
  backdrop-filter: blur(8px);
}

.aqua-simple-caption h1 {
  color: #ffffff;
  font-family: var(--aqua-font-heading);
  font-size: clamp(44px, 6vw, 82px);
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.aqua-hero-tagline {
  animation: aquaFadeUp 0.8s ease both;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.aqua-simple-caption .aqua-rich-text,
.aqua-simple-caption .aqua-rich-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 500;
  max-height: 4.8em;
  overflow: hidden;
}

.aqua-simple-slider .carousel-item.active .aqua-simple-slide {
  animation: aquaSlideZoom 5.6s ease both;
}

.aqua-simple-indicators {
  bottom: 72px;
  gap: 10px;
  margin-bottom: 0;
  z-index: 6;
}

.aqua-simple-indicators [data-bs-target] {
  background: rgba(255, 255, 255, 0.52);
  border: 0;
  border-radius: 999px;
  height: 8px;
  opacity: 1;
  width: 30px;
}

.aqua-simple-indicators .active {
  background: linear-gradient(90deg, #ffffff, var(--aqua-sky));
  width: 56px;
}

.aqua-hero-slide:before,
.aqua-page-hero:before {
  background:
    linear-gradient(95deg, rgba(3, 21, 44, 0.92) 0%, rgba(4, 40, 76, 0.76) 42%, rgba(8, 120, 216, 0.22) 100%),
    radial-gradient(circle at 76% 16%, rgba(56, 201, 255, 0.42), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 46%, rgba(3, 21, 44, 0.26));
  content: "";
  inset: 0;
  position: absolute;
}

.aqua-hero-slide .container,
.aqua-page-hero .container {
  position: relative;
  z-index: 4;
}

.aqua-lightbox-stage {
  align-items: center;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(250px, 0.72fr) minmax(420px, 1.1fr) minmax(220px, 0.48fr);
  min-height: 820px;
  padding: 158px 0 166px;
}

.aqua-lightbox-copy,
.aqua-lightbox-panel {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  padding: 30px;
  backdrop-filter: blur(14px);
}

.aqua-kicker,
.aqua-section-title span,
.aqua-page-hero span {
  color: var(--aqua-sky);
  display: inline-block;
  font-family: var(--aqua-font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.aqua-section-title span i {
  margin-right: 7px;
}

.aqua-hero h1 {
  color: #ffffff;
  font-family: var(--aqua-font-heading);
  font-size: clamp(36px, 4.8vw, 70px);
  max-width: 860px;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.aqua-hero .aqua-rich-text,
.aqua-hero .aqua-rich-text p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  max-width: 690px;
}

.aqua-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.aqua-lightbox-frame {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
  display: block;
  overflow: hidden;
  padding: 14px;
  position: relative;
}

.aqua-lightbox-frame:before {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 26px;
  content: "";
  inset: 28px;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.aqua-lightbox-frame img {
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
  width: 100%;
}

.aqua-lightbox-frame:hover img {
  transform: scale(1.04);
}

.aqua-lightbox-zoom,
.aqua-hero-count {
  background: rgba(3, 21, 44, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  position: absolute;
  z-index: 3;
}

.aqua-lightbox-zoom {
  align-items: center;
  bottom: 30px;
  display: inline-flex;
  gap: 8px;
  left: 30px;
  padding: 11px 17px;
}

.aqua-hero-count {
  padding: 10px 18px;
  right: 30px;
  top: 30px;
}

.aqua-lightbox-panel {
  display: grid;
  gap: 14px;
}

.aqua-lightbox-panel div:not(.aqua-actions) {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 16px;
}

.aqua-lightbox-panel strong {
  color: #ffffff;
  display: block;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.aqua-lightbox-panel span {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-top: 8px;
}

.aqua-hero-carousel .aqua-carousel-control,
.aqua-simple-slider .aqua-carousel-control {
  align-items: center;
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 18px;
  color: #ffffff !important;
  display: inline-flex;
  height: 56px;
  justify-content: center;
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
  width: 56px;
  z-index: 5;
  opacity: 1;
}

.aqua-hero-carousel .carousel-control-prev,
.aqua-simple-slider .carousel-control-prev {
  left: 34px;
}

.aqua-hero-carousel .carousel-control-next,
.aqua-simple-slider .carousel-control-next {
  right: 34px;
}

.aqua-hero-thumbs-wrap {
  bottom: 38px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 8;
}

.aqua-hero-thumbs {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  box-shadow: 0 22px 52px rgba(3, 21, 44, 0.26);
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin: 0;
  padding: 10px;
  position: static;
  width: fit-content;
  backdrop-filter: blur(14px);
}

.aqua-hero-thumb {
  background: transparent;
  border: 2px solid transparent;
  border-radius: 18px;
  box-sizing: border-box;
  cursor: pointer;
  flex: 0 0 auto;
  height: 74px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-indent: 0;
  transition: border-color 0.25s ease, transform 0.25s ease;
  width: 104px;
}

.aqua-hero-thumb img {
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: opacity 0.25s ease, transform 0.25s ease;
  width: 100%;
}

.aqua-hero-thumb span {
  background: rgba(3, 21, 44, 0.72);
  border-radius: 999px;
  bottom: 7px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  left: 7px;
  padding: 3px 8px;
  position: absolute;
}

.aqua-hero-thumb.active {
  border-color: var(--aqua-sky);
  transform: translateY(-4px);
}

.aqua-hero-thumb.active img,
.aqua-hero-thumb:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.aqua-page-hero {
  align-items: center;
  display: flex;
  min-height: 320px;
  overflow: hidden;
  padding: 130px 0 62px;
}

.aqua-page:not(.page-home) .aqua-page-hero {
  min-height: 280px;
  padding: 68px 0 62px;
}

.aqua-page-hero .container {
  animation: aquaHeroCaptionIn 0.85s ease both;
  max-width: 1140px;
  padding: 0 12px;
  position: relative;
}

.aqua-page-hero:before {
  animation: aquaPageGlow 8s ease-in-out infinite alternate;
  background:
    linear-gradient(100deg, rgba(3, 21, 44, 0.9) 0%, rgba(5, 36, 74, 0.76) 48%, rgba(8, 120, 216, 0.34) 100%),
    radial-gradient(circle at 20% 78%, rgba(56, 201, 255, 0.42), transparent 23%),
    radial-gradient(circle at 86% 22%, rgba(35, 213, 200, 0.38), transparent 26%);
}

.aqua-page-hero:after {
  display: none;
}

.aqua-page-hero h1 {
  color: #ffffff;
  font-family: var(--aqua-font-heading);
  font-size: clamp(36px, 4.4vw, 58px);
  max-width: 920px;
  position: relative;
  text-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.aqua-page-hero p,
.aqua-page-hero a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.aqua-page-hero span {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #b9efff;
  padding: 9px 16px;
  position: relative;
  z-index: 1;
}

.aqua-section {
  padding: 96px 0;
  position: relative;
}

.page-home .aqua-section,
.aqua-home-stats {
  animation: aquaFadeUp 0.85s ease both;
}

.aqua-home-stats {
  margin-top: -70px;
  padding-bottom: 34px;
  position: relative;
  z-index: 8;
}

.aqua-home-stats-grid {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--aqua-border);
  border-radius: 30px;
  box-shadow: var(--aqua-shadow);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(12px);
}

.aqua-home-stats-grid:before {
  animation: aquaShine 5s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(56, 201, 255, 0.32), transparent);
  content: "";
  height: 100%;
  left: -40%;
  position: absolute;
  top: 0;
  width: 40%;
}

.aqua-home-stats-grid div {
  background: linear-gradient(180deg, #ffffff, #f1fbff);
  padding: 26px;
  position: relative;
}

.aqua-home-stats-grid strong {
  color: var(--aqua-blue);
  display: block;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.aqua-home-stats-grid span {
  color: var(--aqua-text);
  display: block;
  font-weight: 900;
  margin-top: 8px;
}

.aqua-section-title {
  margin-bottom: 34px;
}

.aqua-section-title h2 {
  font-size: clamp(32px, 4vw, 52px);
}

.aqua-rich-text p,
.aqua-rich-text div,
.aqua-content-panel p,
.aqua-content-panel div {
  color: var(--aqua-text);
}

.aqua-feature-card,
.aqua-event-card,
.aqua-content-panel,
.aqua-coach-card,
.aqua-contact-card,
.aqua-form-card,
.aqua-detail-card,
.aqua-map-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--aqua-border);
  border-radius: 28px;
  box-shadow: var(--aqua-shadow);
  overflow: hidden;
  position: relative;
}

.aqua-feature-card {
  height: 100%;
  padding: 34px 28px;
  animation: aquaFadeUp 0.78s ease both;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.aqua-features .col-lg-3:nth-child(2) .aqua-feature-card {
  animation-delay: 0.08s;
}

.aqua-features .col-lg-3:nth-child(3) .aqua-feature-card {
  animation-delay: 0.16s;
}

.aqua-features .col-lg-3:nth-child(4) .aqua-feature-card {
  animation-delay: 0.24s;
}

.aqua-feature-card:before {
  background: radial-gradient(circle at 20% 0%, rgba(56, 201, 255, 0.24), transparent 28%);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.28s ease;
}

.aqua-feature-card:hover,
.aqua-event-card:hover,
.aqua-gallery-card:hover {
  box-shadow: 0 30px 70px rgba(8, 120, 216, 0.18);
  transform: translateY(-8px);
}

.aqua-feature-card:hover {
  border-color: rgba(56, 201, 255, 0.46);
}

.aqua-feature-card:hover:before {
  opacity: 1;
}

.aqua-feature-card i,
.aqua-contact-card i {
  align-items: center;
  background: linear-gradient(135deg, var(--aqua-blue), var(--aqua-teal));
  border-radius: 20px;
  color: #ffffff;
  display: inline-flex;
  font-size: 30px;
  height: 66px;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  transition: transform 0.28s ease;
  width: 66px;
}

.aqua-feature-card:hover i {
  transform: rotate(-6deg) scale(1.08);
}

.aqua-action-photos-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(56, 201, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eefbff 100%);
  overflow: hidden;
}

.aqua-action-photos-section:after {
  animation: aquaSparkleDrift 24s linear infinite;
  background-image:
    radial-gradient(circle, rgba(8, 120, 216, 0.13) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(35, 213, 200, 0.16) 0 1px, transparent 2px);
  background-size: 110px 110px, 168px 168px;
  content: "";
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  position: absolute;
}

.aqua-action-photos-section .container {
  position: relative;
  z-index: 1;
}

.aqua-action-photo-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.aqua-action-photo-card {
  animation: aquaFadeUp 0.78s ease both;
  border-radius: 28px;
  box-shadow: var(--aqua-shadow);
  min-height: 300px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.aqua-action-photo-card:nth-child(2) {
  animation-delay: 0.08s;
}

.aqua-action-photo-card:nth-child(3) {
  animation-delay: 0.16s;
}

.aqua-action-photo-card:nth-child(4) {
  animation-delay: 0.24s;
}

.aqua-action-photo-card:before {
  background:
    linear-gradient(180deg, transparent 34%, rgba(3, 21, 44, 0.84)),
    radial-gradient(circle at 18% 16%, rgba(56, 201, 255, 0.24), transparent 28%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.aqua-action-photo-card:after {
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  content: "";
  height: 140%;
  left: -65%;
  opacity: 0;
  position: absolute;
  top: -20%;
  transform: translateX(-40%) rotate(12deg);
  transition: opacity 0.25s ease;
  width: 36%;
  z-index: 2;
}

.aqua-action-photo-card img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: filter 0.35s ease, transform 0.35s ease;
  width: 100%;
}

.aqua-action-photo-card span {
  align-items: center;
  background: rgba(3, 21, 44, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  bottom: 22px;
  color: #ffffff;
  display: inline-flex;
  font-size: 20px;
  font-weight: 900;
  left: 22px;
  padding: 10px 16px;
  position: absolute;
  right: auto;
  z-index: 3;
}

.aqua-action-photo-card:hover {
  box-shadow: 0 34px 76px rgba(8, 120, 216, 0.24);
  transform: translateY(-8px);
}

.aqua-action-photo-card:hover:after {
  animation: aquaPhotoShine 0.95s ease;
  opacity: 1;
}

.aqua-action-photo-card:hover img {
  filter: saturate(1.18) contrast(1.04);
  transform: scale(1.08);
}

.aqua-why-choose-section {
  background:
    radial-gradient(circle at 14% 14%, rgba(56, 201, 255, 0.18), transparent 28%),
    radial-gradient(circle at 86% 24%, rgba(35, 213, 200, 0.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #eefbff 100%);
  overflow: hidden;
}

.aqua-why-choose-section:before,
.aqua-testimonials-section:before {
  animation: aquaWaveDrift 12s ease-in-out infinite alternate;
  background: radial-gradient(90px 24px at 50% 100%, rgba(56, 201, 255, 0.13) 98%, transparent 100%);
  background-size: 180px 54px;
  content: "";
  height: 58px;
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 0;
  width: 100%;
}

.aqua-why-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.aqua-why-card {
  animation: aquaFadeUp 0.78s ease both;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--aqua-border);
  border-radius: 26px;
  box-shadow: var(--aqua-shadow);
  min-height: 170px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.aqua-why-card:before {
  background: radial-gradient(circle at 100% 0%, rgba(56, 201, 255, 0.22), transparent 32%);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.28s ease;
}

.aqua-why-card i {
  align-items: center;
  background: linear-gradient(135deg, var(--aqua-blue), var(--aqua-teal));
  border-radius: 18px;
  color: #ffffff;
  display: inline-flex;
  font-size: 28px;
  height: 58px;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.28s ease;
  width: 58px;
}

.aqua-why-card h3 {
  font-size: 22px;
  margin: 0;
  position: relative;
}

.aqua-why-card p {
  color: var(--aqua-text);
  font-size: 14px;
  line-height: 1.7;
  margin: 12px 0 0;
  position: relative;
}

.aqua-why-card:nth-child(2),
.aqua-testimonial-card:nth-child(2) {
  animation-delay: 0.08s;
}

.aqua-why-card:nth-child(3),
.aqua-testimonial-card:nth-child(3) {
  animation-delay: 0.16s;
}

.aqua-why-card:nth-child(4),
.aqua-testimonial-card:nth-child(4) {
  animation-delay: 0.24s;
}

.aqua-why-card:nth-child(5) {
  animation-delay: 0.32s;
}

.aqua-why-card:nth-child(6) {
  animation-delay: 0.4s;
}

.aqua-why-card:hover,
.aqua-testimonial-card:hover {
  border-color: rgba(56, 201, 255, 0.45);
  box-shadow: 0 32px 74px rgba(8, 120, 216, 0.18);
  transform: translateY(-8px);
}

.aqua-why-card:hover:before {
  opacity: 1;
}

.aqua-why-card:hover i {
  transform: rotate(-6deg) scale(1.08);
}

.aqua-about-band,
.aqua-coaches,
.aqua-contact-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(56, 201, 255, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(238, 251, 255, 0.78), rgba(255, 255, 255, 0.9));
}

.aqua-about-intro-section,
.aqua-events-page-section,
.aqua-gallery-page-section,
.aqua-contact-info-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(56, 201, 255, 0.16), transparent 28%),
    radial-gradient(circle at 92% 14%, rgba(35, 213, 200, 0.14), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #eefbff 100%);
  overflow: hidden;
}

.aqua-about-intro-section:after,
.aqua-events-page-section:after,
.aqua-gallery-page-section:after,
.aqua-contact-info-section:after,
.aqua-contact-form-section:after {
  animation: aquaSparkleDrift 22s linear infinite;
  background-image:
    radial-gradient(circle, rgba(8, 120, 216, 0.14) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(35, 213, 200, 0.16) 0 1px, transparent 2px);
  background-size: 110px 110px, 170px 170px;
  content: "";
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  position: absolute;
}

.aqua-about-intro-section .container,
.aqua-events-page-section .container,
.aqua-gallery-page-section .container,
.aqua-contact-info-section .container,
.aqua-contact-form-section .container {
  position: relative;
  z-index: 1;
}

.aqua-about-story-panel {
  animation: aquaFadeUp 0.8s ease both;
  border-left: 6px solid var(--aqua-sky);
}

.aqua-about-band:before,
.aqua-home-gallery-section:before,
.aqua-home-events-section:before {
  animation: aquaWaveDrift 12s ease-in-out infinite alternate;
  background:
    radial-gradient(90px 24px at 50% 100%, rgba(56, 201, 255, 0.13) 98%, transparent 100%);
  background-size: 180px 54px;
  content: "";
  height: 58px;
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 0;
  width: 100%;
}

.aqua-image-stack {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 0.8fr;
}

.aqua-image-stack img,
.aqua-portrait-card img {
  border-radius: 28px;
  box-shadow: var(--aqua-shadow);
  height: 500px;
  object-fit: cover;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  width: 100%;
}

.aqua-image-stack:hover img:first-child {
  transform: translateY(-8px) rotate(-1deg);
}

.aqua-image-stack:hover img:nth-child(2) {
  transform: translateY(8px) rotate(1deg);
}

.aqua-image-stack img:nth-child(2) {
  margin-top: 70px;
}

.aqua-portrait-card {
  background: linear-gradient(135deg, #dff7ff, #ffffff);
  border-radius: 34px;
  padding: 16px;
}

.aqua-mini-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0;
}

.aqua-mini-grid div {
  background: #ffffff;
  border: 1px solid var(--aqua-border);
  border-radius: 20px;
  padding: 18px;
}

.aqua-mini-grid i {
  color: var(--aqua-blue);
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
}

.aqua-mini-grid p {
  color: var(--aqua-text);
  font-size: 13px;
  line-height: 1.6;
  margin: 8px 0 0;
}

.aqua-content-panel {
  margin-top: 50px;
  padding: 36px;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.aqua-coach-card {
  height: 100%;
  padding: 34px;
  animation: aquaFadeUp 0.78s ease both;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.aqua-coach-card:hover,
.aqua-content-panel:hover,
.aqua-contact-card:hover,
.aqua-form-card:hover,
.aqua-map-card:hover {
  border-color: rgba(56, 201, 255, 0.45);
  box-shadow: 0 32px 74px rgba(8, 120, 216, 0.18);
  transform: translateY(-6px);
}

.aqua-coach-card span {
  color: var(--aqua-blue);
  font-weight: 900;
  text-transform: uppercase;
}

.aqua-coach-card h4 {
  color: var(--aqua-teal);
  font-size: 18px;
}

.aqua-coach-card li {
  margin-bottom: 10px;
}

.aqua-highlight-strip {
  align-items: center;
  background: linear-gradient(135deg, var(--aqua-blue), var(--aqua-teal));
  border-radius: 28px;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 34px;
  padding: 24px;
}

.aqua-highlight-strip p {
  color: #ffffff;
  font-weight: 900;
  margin: 0;
}

.aqua-testimonials-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(56, 201, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #eefbff 0%, #ffffff 100%);
  overflow: hidden;
}

.aqua-testimonials-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.aqua-testimonial-slider {
  margin: 0 auto;
  max-width: 920px;
  padding: 0 82px 54px;
}

.aqua-testimonial-slider .carousel-inner {
  overflow: visible;
}

.aqua-testimonial-card {
  animation: aquaFadeUp 0.78s ease both;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--aqua-border);
  border-radius: 28px;
  box-shadow: var(--aqua-shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 30px;
  position: relative;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.aqua-testimonial-slider .aqua-testimonial-card {
  min-height: 360px;
}

.aqua-testimonial-card:before {
  background: linear-gradient(90deg, var(--aqua-blue), var(--aqua-sky), var(--aqua-teal));
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.aqua-testimonial-icon {
  align-items: center;
  background: linear-gradient(135deg, var(--aqua-blue), var(--aqua-teal));
  border-radius: 18px;
  color: #ffffff;
  display: inline-flex;
  font-size: 30px;
  height: 58px;
  justify-content: center;
  margin-bottom: 20px;
  width: 58px;
}

.aqua-testimonial-top {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.aqua-testimonial-top .aqua-testimonial-icon {
  margin-bottom: 0;
}

.aqua-testimonial-stars {
  align-items: center;
  background: #fff8dc;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 999px;
  color: #f59e0b;
  display: inline-flex;
  gap: 4px;
  padding: 8px 12px;
}

.aqua-testimonial-stars i {
  filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.22));
  font-size: 15px;
}

.aqua-testimonial-card p {
  color: var(--aqua-text);
  flex: 1;
  font-size: 15px;
  line-height: 1.8;
}

.aqua-testimonial-author {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.aqua-testimonial-author span {
  align-items: center;
  background: var(--aqua-foam);
  border: 1px solid var(--aqua-border);
  border-radius: 50%;
  color: var(--aqua-blue);
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  text-transform: uppercase;
  width: 44px;
}

.aqua-testimonial-author h3 {
  font-size: 18px;
  margin: 0;
  text-transform: capitalize;
}

.aqua-testimonial-control {
  align-items: center;
  background: linear-gradient(135deg, var(--aqua-blue), var(--aqua-sky)) !important;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(8, 120, 216, 0.24);
  color: #ffffff !important;
  display: inline-flex;
  height: 52px;
  justify-content: center;
  opacity: 1;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  width: 52px;
  z-index: 12;
}

.aqua-testimonial-control:hover {
  box-shadow: 0 24px 48px rgba(8, 120, 216, 0.32);
  transform: translateY(-50%) scale(1.06);
}

.aqua-testimonial-control i {
  color: #ffffff !important;
  display: block;
  font-size: 22px;
  line-height: 1;
  pointer-events: none;
}

.aqua-testimonial-slider .carousel-control-prev {
  left: 0;
}

.aqua-testimonial-slider .carousel-control-next {
  right: 0;
}

.aqua-testimonial-indicators {
  bottom: 0;
  gap: 9px;
  margin-bottom: 0;
}

.aqua-testimonial-indicators [data-bs-target] {
  background: rgba(8, 120, 216, 0.22);
  border: 0;
  border-radius: 999px;
  height: 8px;
  opacity: 1;
  width: 28px;
}

.aqua-testimonial-indicators .active {
  background: linear-gradient(90deg, var(--aqua-blue), var(--aqua-sky));
  width: 50px;
}

.aqua-card-image {
  display: block;
  height: 260px;
  overflow: hidden;
  position: relative;
}

.aqua-events-page-section .col-lg-4,
.aqua-gallery-page-section .col-lg-4,
.aqua-contact-info-section .col-lg-4 {
  animation: aquaFadeUp 0.78s ease both;
}

.aqua-events-page-section .col-lg-4:nth-child(2),
.aqua-gallery-page-section .col-lg-4:nth-child(2),
.aqua-contact-info-section .col-lg-4:nth-child(2) {
  animation-delay: 0.08s;
}

.aqua-events-page-section .col-lg-4:nth-child(3),
.aqua-gallery-page-section .col-lg-4:nth-child(3),
.aqua-contact-info-section .col-lg-4:nth-child(3) {
  animation-delay: 0.16s;
}

.aqua-event-list-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 251, 255, 0.88));
}

.aqua-event-list-card .aqua-card-body h3 {
  font-size: 24px;
}

.aqua-card-body .aqua-rich-text {
  display: -webkit-box;
  max-height: 5.4em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.aqua-card-image img {
  filter: saturate(1.04);
  height: 100%;
  object-fit: cover;
  transition: filter 0.35s ease, transform 0.35s ease;
  width: 100%;
}

.aqua-event-card:hover .aqua-card-image img,
.aqua-gallery-card:hover img {
  filter: saturate(1.18) contrast(1.04);
  transform: scale(1.08);
}

.aqua-home-events-section .aqua-event-card {
  animation: aquaFadeUp 0.78s ease both;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.aqua-home-events-section .aqua-card-image {
  height: 220px;
}

.aqua-home-events-section .aqua-card-body {
  padding: 24px;
}

.aqua-home-events-section .aqua-card-body h3 {
  font-size: 22px;
}

.aqua-home-events-section .aqua-card-body .aqua-rich-text {
  -webkit-line-clamp: 2;
  max-height: 3.6em;
}

.aqua-home-events-section .col-lg-4:nth-child(2) .aqua-event-card {
  animation-delay: 0.08s;
}

.aqua-home-events-section .col-lg-4:nth-child(3) .aqua-event-card {
  animation-delay: 0.16s;
}

.aqua-home-events-section .aqua-event-card:after {
  background: linear-gradient(90deg, var(--aqua-blue), var(--aqua-sky), var(--aqua-teal));
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  width: 100%;
}

.aqua-home-events-section .aqua-event-card:hover:after {
  transform: scaleX(1);
}

.aqua-card-image span,
.aqua-date-badge {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: var(--aqua-blue);
  font-weight: 900;
  left: 18px;
  padding: 8px 14px;
  position: absolute;
  top: 18px;
}

.aqua-date-badge {
  align-items: center;
  display: flex;
  flex-direction: column;
  left: auto;
  line-height: 1;
  right: 18px;
}

.aqua-date-badge strong {
  font-size: 24px;
}

.aqua-card-body {
  padding: 28px;
}

.aqua-date {
  align-items: center;
  color: var(--aqua-blue);
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
}

.aqua-card-body h3 a:hover,
.aqua-link:hover {
  color: var(--aqua-blue);
}

.aqua-link {
  align-items: center;
  color: var(--aqua-ink);
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
  margin-top: 12px;
}

.aqua-detail-card {
  padding: 18px;
}

.aqua-detail-card > img {
  border-radius: 22px;
  max-height: 560px;
  object-fit: cover;
  width: 100%;
}

.aqua-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px 22px 0;
}

.aqua-detail-meta span {
  background: var(--aqua-foam);
  border-radius: 999px;
  color: var(--aqua-blue);
  font-weight: 900;
  padding: 10px 16px;
}

.aqua-detail-body {
  padding: 24px 22px;
}

.aqua-detail-card .aqua-link {
  margin: 0 22px 20px;
}

.aqua-gallery-card {
  border-radius: 28px;
  box-shadow: var(--aqua-shadow);
  display: block;
  height: 330px;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.aqua-gallery-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.aqua-gallery-card span {
  background: linear-gradient(180deg, transparent, rgba(3, 21, 44, 0.88));
  bottom: 0;
  color: #ffffff;
  font-weight: 900;
  left: 0;
  padding: 70px 22px 22px;
  position: absolute;
  right: 0;
}

.aqua-home-gallery-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(56, 201, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff, #eefbff);
}

.aqua-gallery-head {
  align-items: end;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.aqua-gallery-head .aqua-section-title {
  margin-bottom: 0;
}

.aqua-home-gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.aqua-home-gallery-card {
  animation: aquaFadeUp 0.78s ease both;
  border-radius: 28px;
  box-shadow: var(--aqua-shadow);
  display: block;
  min-height: 240px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.aqua-home-gallery-card:nth-child(2) {
  animation-delay: 0.06s;
}

.aqua-home-gallery-card:nth-child(3) {
  animation-delay: 0.12s;
}

.aqua-home-gallery-card:nth-child(4) {
  animation-delay: 0.18s;
}

.aqua-home-gallery-card:nth-child(5) {
  animation-delay: 0.24s;
}

.aqua-home-gallery-card:nth-child(6) {
  animation-delay: 0.3s;
}

.aqua-home-gallery-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 498px;
}

.aqua-home-gallery-card:before {
  background:
    linear-gradient(180deg, transparent 30%, rgba(3, 21, 44, 0.86)),
    radial-gradient(circle at 24% 18%, rgba(56, 201, 255, 0.26), transparent 26%);
  content: "";
  inset: 0;
  opacity: 0.86;
  position: absolute;
  transition: opacity 0.25s ease;
  z-index: 1;
}

.aqua-home-gallery-card img {
  height: 100%;
  filter: saturate(1.06);
  object-fit: cover;
  position: absolute;
  transition: filter 0.4s ease, transform 0.4s ease;
  width: 100%;
}

.aqua-home-gallery-card span {
  align-items: center;
  bottom: 20px;
  color: #ffffff;
  display: flex;
  font-weight: 900;
  gap: 10px;
  left: 22px;
  position: absolute;
  right: 22px;
  z-index: 2;
}

.aqua-home-gallery-card span i {
  align-items: center;
  background: linear-gradient(135deg, var(--aqua-blue), var(--aqua-sky));
  border-radius: 50%;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.aqua-home-gallery-card:hover img {
  filter: saturate(1.2) contrast(1.04);
  transform: scale(1.08);
}

.aqua-home-gallery-card:hover:before {
  opacity: 1;
}

.aqua-home-gallery-card:hover {
  box-shadow: 0 34px 76px rgba(8, 120, 216, 0.24);
  transform: translateY(-8px);
}

.aqua-contact-card {
  height: 100%;
  padding: 30px;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.aqua-contact-card h3,
.aqua-form-card h2,
.aqua-event-list-card h3 {
  margin-bottom: 10px;
}

.aqua-contact-card:hover i {
  transform: rotate(-5deg) scale(1.08);
}

.aqua-contact-card p,
.aqua-contact-card div {
  overflow-wrap: anywhere;
}

.aqua-map-card {
  height: 100%;
  min-height: 520px;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.aqua-map-card iframe {
  border: 0;
  height: 100%;
  min-height: 520px;
  width: 100%;
}

.aqua-form-card {
  padding: 34px;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.aqua-form-card input,
.aqua-form-card textarea {
  background: linear-gradient(180deg, #ffffff, var(--aqua-foam));
  border: 1px solid var(--aqua-border);
  border-radius: 18px;
  color: var(--aqua-ink);
  display: block;
  font-weight: 700;
  margin-bottom: 16px;
  padding: 15px 18px;
  width: 100%;
}

.aqua-form-card input:focus,
.aqua-form-card textarea:focus {
  border-color: var(--aqua-blue);
  box-shadow: 0 0 0 4px rgba(8, 120, 216, 0.12);
  outline: none;
}

.aqua-alert {
  border-radius: 18px;
  font-weight: 900;
  margin-bottom: 18px;
  padding: 14px 16px;
}

.aqua-alert.success {
  background: #dff9ec;
  color: #0f7a44;
}

.aqua-alert.error {
  background: #ffe6e6;
  color: #b91c1c;
}

.aqua-footer {
  background:
    radial-gradient(circle at 84% 16%, rgba(56, 201, 255, 0.28), transparent 26%),
    radial-gradient(circle at 12% 78%, rgba(35, 213, 200, 0.2), transparent 28%),
    linear-gradient(135deg, #020b17 0%, #05284e 48%, #045b78 100%);
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
  padding: 108px 0 0;
  position: relative;
}

.aqua-footer-wave {
  /*background:    radial-gradient(80px 26px at 50% 0, #f6fcff 98%, transparent 100%); */
  
  background-size: 160px 52px;
  height: 54px;
  left: 0;
  position: absolute;
  top: -1px;
  width: 100%;
}

.aqua-footer:before,
.aqua-footer:after {
  content: "";
  pointer-events: none;
  position: absolute;
}

.aqua-footer:before {
  animation: aquaFooterBubbles 16s linear infinite;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(56, 201, 255, 0.26) 0 3px, transparent 4px);
  background-size: 86px 86px, 140px 140px;
  inset: 54px 0 0;
  opacity: 0.44;
}

.aqua-footer:after {
  animation: aquaFooterShimmer 7s ease-in-out infinite alternate;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  height: 1px;
  left: 0;
  top: 78px;
  width: 100%;
}

.aqua-footer > .container {
  position: relative;
  z-index: 1;
}

.aqua-footer h3,
.aqua-footer h4 {
  color: #ffffff;
}

.aqua-footer-brand {
  align-content: start;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
  display: grid;
  gap: 14px;
  justify-items: start;
  min-height: 100%;
  overflow: hidden;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.aqua-footer-brand img {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  display: block;
  height: 86px;
  max-width: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  width: 120px;
}

.aqua-footer-brand:hover img {
  box-shadow: 0 22px 42px rgba(56, 201, 255, 0.2);
  transform: translateY(-4px) scale(1.03);
}

.aqua-socials {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 18px;
  max-width: 100%;
}

.aqua-socials a,
.aqua-whatsapp,
.aqua-scroll-top {
  align-items: center;
  border-radius: 16px;
  display: inline-flex;
  justify-content: center;
}

.aqua-socials a {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  flex: 0 0 44px;
  height: 44px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  width: 44px;
}

.aqua-socials a:hover {
  background: #ffffff;
  color: var(--aqua-blue);
  transform: translateY(-4px);
}

.aqua-footer-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.16);
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 26px;
  position: relative;
  backdrop-filter: blur(10px);
}

.aqua-footer-card:before {
  background: linear-gradient(90deg, var(--aqua-sky), transparent);
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 26px;
  position: absolute;
  right: 42%;
  top: 0;
}

.aqua-footer-card h4 {
  margin-bottom: 12px;
}

.aqua-footer-card a,
.aqua-footer-card p,
.aqua-footer-address,
.aqua-footer-address p {
  color: rgba(255, 255, 255, 0.82);
}

.aqua-footer-card a {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
}

.aqua-footer-card a:before {
  background: var(--aqua-sky);
  border-radius: 50%;
  content: "";
  height: 7px;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.25s ease, transform 0.25s ease;
  width: 7px;
}

.aqua-footer-card a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.aqua-footer-card a:hover:before {
  opacity: 1;
  transform: scale(1);
}

.aqua-footer-address {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}

.aqua-footer-card p,
.aqua-footer-address {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}

.aqua-footer-card p i,
.aqua-footer-address > i {
  color: var(--aqua-sky);
  flex: 0 0 auto;
  margin-top: 3px;
}

.aqua-footer-bottom {
  background: rgba(0, 0, 0, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 52px;
  padding: 22px 0;
  text-align: center;
}

.aqua-footer-bottom p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

@keyframes aquaFooterBubbles {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 130px -180px, -160px -220px;
  }
}

@keyframes aquaFooterShimmer {
  from {
    opacity: 0.25;
    transform: translateX(-20%);
  }
  to {
    opacity: 0.7;
    transform: translateX(20%);
  }
}

.aqua-floating-actions {
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: fixed;
  right: 20px;
  z-index: 100;
}

.aqua-whatsapp,
.aqua-scroll-top {
  border: 0;
  box-shadow: 0 18px 38px rgba(3, 21, 44, 0.26);
  color: #ffffff;
  font-size: 24px;
  height: 54px;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  width: 54px;
}

.aqua-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.aqua-scroll-top {
  background: linear-gradient(135deg, var(--aqua-blue), var(--aqua-sky));
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}

.aqua-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.aqua-whatsapp:hover,
.aqua-scroll-top:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

@keyframes aquaSparkleDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 160px 160px, -180px 180px;
  }
}

@keyframes aquaHeroCaptionIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes aquaSlideZoom {
  from {
    background-position: center center;
    filter: saturate(1);
  }
  to {
    background-position: center top;
    filter: saturate(1.08);
  }
}

@keyframes aquaFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aquaShine {
  0%,
  45% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(350%);
  }
}

@keyframes aquaWaveDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 180px 0;
  }
}

@keyframes aquaPageGlow {
  from {
    filter: saturate(1) brightness(1);
  }
  to {
    filter: saturate(1.12) brightness(1.04);
  }
}

@keyframes aquaPhotoShine {
  from {
    transform: translateX(-40%) rotate(12deg);
  }
  to {
    transform: translateX(420%) rotate(12deg);
  }
}

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

@media (max-width: 1199px) {
  .aqua-brand span {
    display: none;
  }

  .aqua-brand {
    min-width: auto;
  }
}

@media (max-width: 991px) {
  .aqua-header {
    position: relative;
  }

  .aqua-topbar {
    display: none;
  }

  .aqua-nav {
    border-radius: 0;
    margin: 0 -12px;
  }

  .aqua-brand span {
    display: inline;
  }

  .aqua-menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 2;
  }

  .aqua-menu {
    background: #ffffff;
    border-radius: 0 0 24px 24px;
    box-shadow: var(--aqua-shadow);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 14px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .aqua-menu.is-open {
    display: flex;
  }

  .aqua-menu a {
    width: 100%;
  }

  .aqua-nav-cta {
    display: none;
  }

  .aqua-hero,
  .aqua-hero-slide {
    min-height: auto;
  }

  .aqua-simple-slide {
    min-height: 720px;
  }

  .aqua-simple-caption {
    margin: 82px 0 126px;
    padding: 30px;
  }

  .aqua-home-stats {
    margin-top: -48px;
  }

  .aqua-home-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aqua-lightbox-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 96px 0 150px;
  }

  .aqua-lightbox-copy,
  .aqua-lightbox-panel {
    max-width: 100%;
    padding: 38px;
  }

  .aqua-lightbox-frame {
    order: -1;
  }

  .aqua-page-hero {
    min-height: 280px;
    padding: 74px 0 54px;
  }

  .aqua-page-hero .container {
    max-width: calc(100% - 24px);
    padding: 0 12px;
  }

  .aqua-mini-grid {
    grid-template-columns: 1fr;
  }

  .aqua-home-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aqua-action-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aqua-action-photo-card.featured {
    grid-column: span 2;
  }

  .aqua-why-grid,
  .aqua-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aqua-testimonial-slider {
    max-width: 100%;
    padding: 0 64px 52px;
  }

  .aqua-home-gallery-card.featured {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .aqua-section {
    padding: 70px 0;
  }

  .aqua-brand img {
    height: 52px;
    width: 62px;
  }

  .aqua-brand span {
    font-size: 13px;
    max-width: 180px;
  }

  .aqua-hero h1,
  .aqua-page-hero h1 {
    font-size: 38px;
  }

  .aqua-page-hero {
    min-height: 250px;
    padding: 46px 0 44px;
  }

  .aqua-page-hero .container {
    padding: 0 12px;
  }

  .aqua-page-hero p,
  .aqua-page-hero a {
    font-size: 16px;
  }

  .aqua-page-hero span {
    font-size: 12px;
    padding: 8px 12px;
  }

  .aqua-simple-caption {
    border-radius: 22px;
    margin: 66px 0 96px;
    padding: 22px;
  }

  .aqua-simple-caption h1 {
    font-size: 36px;
  }

  .aqua-home-stats {
    margin-top: -32px;
    padding-bottom: 16px;
  }

  .aqua-home-stats-grid {
    border-radius: 22px;
    grid-template-columns: 1fr;
  }

  .aqua-home-stats-grid div {
    padding: 20px;
  }

  .aqua-home-stats-grid strong {
    font-size: 30px;
  }

  .aqua-lightbox-copy,
  .aqua-lightbox-panel {
    border-radius: 26px;
    padding: 28px 22px;
  }

  .aqua-lightbox-frame {
    border-radius: 24px;
    padding: 10px;
  }

  .aqua-lightbox-frame img {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .aqua-lightbox-frame:before {
    border-radius: 18px;
    inset: 20px;
  }

  .aqua-lightbox-zoom {
    bottom: 20px;
    left: 20px;
  }

  .aqua-hero-count {
    right: 20px;
    top: 20px;
  }

  .aqua-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .aqua-actions .aqua-btn {
    justify-content: center;
  }

  .aqua-nav-cta,
  .aqua-btn {
    min-height: 48px;
  }

  .aqua-hero-carousel .aqua-carousel-control,
  .aqua-simple-slider .aqua-carousel-control {
    display: none;
  }

  .aqua-simple-indicators {
    bottom: 44px;
  }

  .aqua-hero-thumbs-wrap {
    bottom: 26px;
    max-width: calc(100% - 24px);
  }

  .aqua-hero-thumbs {
    border-radius: 18px;
    max-width: 100%;
    overflow-x: auto;
  }

  .aqua-hero-thumb {
    flex: 0 0 auto;
    height: 58px;
    width: 82px;
  }

  .aqua-image-stack {
    grid-template-columns: 1fr;
  }

  .aqua-image-stack img,
  .aqua-image-stack img:nth-child(2) {
    height: 320px;
    margin-top: 0;
  }

  .aqua-action-photo-grid {
    grid-template-columns: 1fr;
  }

  .aqua-action-photo-card.featured {
    grid-column: auto;
  }

  .aqua-action-photo-card {
    min-height: 280px;
  }

  .aqua-card-image,
  .aqua-gallery-card {
    height: 240px;
  }

  .aqua-gallery-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .aqua-home-gallery-grid {
    grid-template-columns: 1fr;
  }

  .aqua-why-grid,
  .aqua-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .aqua-why-card,
  .aqua-testimonial-card {
    border-radius: 22px;
    padding: 24px;
  }

  .aqua-testimonial-slider {
    padding: 0 0 58px;
  }

  .aqua-testimonial-slider .aqua-testimonial-card {
    min-height: auto;
  }

  .aqua-testimonial-control {
    bottom: 0;
    height: 42px;
    top: auto;
    transform: none;
    width: 42px;
  }

  .aqua-testimonial-control:hover {
    transform: scale(1.04);
  }

  .aqua-testimonial-slider .carousel-control-prev {
    left: calc(50% - 86px);
  }

  .aqua-testimonial-slider .carousel-control-next {
    right: calc(50% - 86px);
  }

  .aqua-testimonial-indicators {
    bottom: 15px;
  }

  .aqua-testimonial-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .aqua-why-card {
    min-height: auto;
  }

  .aqua-home-gallery-card,
  .aqua-home-gallery-card.featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 270px;
  }

  .aqua-content-panel,
  .aqua-coach-card,
  .aqua-form-card {
    padding: 24px;
  }

  .aqua-map-card,
  .aqua-map-card iframe {
    min-height: 360px;
  }

  .aqua-floating-actions {
    bottom: 16px;
    right: 14px;
  }

  .aqua-footer {
    padding-top: 86px;
  }

  .aqua-footer-brand,
  .aqua-footer-card {
    border-radius: 20px;
    padding: 20px;
  }

  .aqua-footer-brand img {
    height: 62px;
    width: 86px;
  }

  .aqua-socials {
    gap: 8px;
    margin-top: 10px;
  }

  .aqua-socials a {
    border-radius: 13px;
    flex-basis: 38px;
    height: 38px;
    width: 38px;
  }

  .aqua-footer-bottom {
    margin-top: 34px;
  }

  .aqua-whatsapp,
  .aqua-scroll-top {
    height: 48px;
    width: 48px;
  }
}
