* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: 82px;
    color: var(--ink);
    background: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    transition: color .25s ease, background-color .25s ease;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-header {
    height: 82px;
    min-height: 82px;
    padding: 0 5.5vw;
    display: flex;
    align-items: center;
    gap: 42px;
    border-bottom: 1px solid rgba(219, 231, 234, .8);
    background: rgba(255, 255, 255, .94);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    backdrop-filter: blur(12px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.6px;
    white-space: nowrap;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--navy);
    background: var(--aqua);
}

.brand-mark svg {
    width: 18px;
    stroke-width: 2.8;
}

.brand-mark i,
.footer-logo-mark i,
.header-cta i,
.btn i,
.text-link i,
.nav-dropdown-toggle i,
.menu-toggle i,
.socials i,
.footer-contact i,
.footer-highlights i,
.footer-badges i,
.dashboard-page i {
    display: inline-block;
    line-height: 1;
}

.brand-mark i { font-size: 16px; }
.header-cta i, .btn i, .text-link i, .nav-dropdown-toggle i { font-size: 12px; }
.menu-toggle i { font-size: 18px; }

.brand-dot {
    color: #24a8bc;
}
.poolll-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
     background-color: #061e37;
    color: #24A8BC;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
  
}

.main-nav .poolll-login-btn {
    color: #ffffff;
}

.poolll-login-btn:hover {
    background: #24A8BC;
    border-color: #24A8BC;
    color: #ffffff;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-left: auto;
    min-height: 48px;
    min-width: 0;
    flex-wrap: nowrap;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 10px;
    color: #58707d;
    font-size: 13px;
    font-weight: 600;
    transition: color .2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--navy);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    width: calc(100% - 20px);
    height: 2px;
    background: var(--aqua);
    bottom: 1px;
    left: 10px;
}

.main-nav .nav-dropdown-toggle.active::after {
    content: '';
    position: absolute;
    width: calc(100% - 20px);
    height: 2px;
    background: var(--aqua);
    bottom: 1px;
    left: 10px;
}

.header-login {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-left: 2px;
    padding: 10px 14px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    border: 1px solid var(--line);
    background: var(--white);
}

.header-login:hover {
    color: #fff;
    border-color: var(--navy);
    background: var(--navy);
}

.nav-login-btn {
    margin-left: 2px;
    white-space: nowrap;
    min-height: 42px;
    padding: 10px 16px;
    box-shadow: none;
    color: #fff;
}

.nav-login-btn:hover,
.nav-login-btn:focus {
    color: #fff;
    transform: translateY(-2px);
}

.mobile-nav-login {
    display: flex;
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 8px;
    background: var(--navy);
    color: #fff;
    padding: 12px 17px;
    min-height: 44px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s, background .2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.header-cta:hover,
.btn:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

.header-cta svg,
.btn svg {
    width: 15px;
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: var(--navy);
}

main {
    min-height: 600px;
    overflow: hidden;
}

.hero {
    min-height: 610px;
    padding: 80px 5.5vw 70px;
    display: grid;
    grid-template-columns: minmax(0, .83fr) minmax(360px, 1.17fr);
    gap: 6vw;
    align-items: center;
    background: linear-gradient(110deg, #f4fbfc 0%, #fff 50%);
}

.home-banner {
    position: relative;
    isolation: isolate;
    min-height: 650px;
    padding-top: 92px;
    padding-bottom: 86px;
    color: #fff;
    background: linear-gradient(90deg, rgba(4, 25, 43, .9) 0%, rgba(4, 25, 43, .72) 43%, rgba(4, 25, 43, .34) 100%), url('../Images/img1.jpg') center / cover;
}

.home-banner::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: '';
    background: linear-gradient(180deg, rgba(4, 25, 43, .1), rgba(4, 25, 43, .32));
}

.home-banner-copy {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.home-banner-copy h1 {
    max-width: 540px;
    margin-bottom: 4px;
    color: #fff;
    font-size: clamp(52px, 6vw, 86px);
}

.home-banner-copy .eyebrow {
    color: var(--aqua);
}

.home-banner-copy .lede {
    max-width: 500px;
    margin-top: 25px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, .86);
    font-size: 17px;
}

.home-banner .actions {
    gap: 13px;
}

.home-banner .hero-visual {
    position: relative;
    z-index: 1;
    height: min(520px, 43vw);
    min-height: 390px;
}

.home-banner-panel {
    position: absolute;
    inset: 7% 5% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: clamp(28px, 4vw, 50px);
    overflow: hidden;
    border: 1px solid rgba(183, 247, 246, .3);
    border-radius: 26px;
    background: rgba(5, 42, 65, .72);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .16);
    backdrop-filter: blur(8px);
}

.hero-panel-waves {
    position: absolute;
    top: -45px;
    right: -25px;
    width: 230px;
    height: 150px;
    opacity: .55;
    transform: rotate(-18deg);
}

.hero-panel-waves span {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(101, 216, 220, .55);
    border-radius: 50%;
    animation: panel-wave-pulse 4s ease-out infinite;
}

.hero-panel-waves span:nth-child(2) { animation-delay: 1.2s; }
.hero-panel-waves span:nth-child(3) { animation-delay: 2.4s; }

.hero-panel-heading,
.hero-progress-item,
.hero-panel-footer {
    position: relative;
    z-index: 1;
}

.hero-panel-heading {
    display: grid;
    gap: 7px;
}

.hero-panel-heading span {
    color: var(--aqua);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.hero-panel-heading strong {
    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: clamp(28px, 3.5vw, 46px);
}

.hero-live-dot {
    position: absolute;
    top: 4px;
    right: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--aqua);
    box-shadow: 0 0 0 6px rgba(101, 216, 220, .14);
    animation: live-dot-pulse 2s ease-in-out infinite;
}

.hero-progress-item {
    display: grid;
    gap: 9px;
}

.hero-progress-item > div:first-child,
.hero-panel-footer {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: rgba(224, 250, 250, .75);
    font-size: 12px;
}

.hero-progress-item strong,
.hero-panel-footer b {
    color: #fff;
}

.hero-progress-track {
    height: 7px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, .15);
}

.hero-progress-track i {
    display: block;
    width: var(--progress);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--aqua), #b8f5ed);
    animation: progress-reveal 1.4s ease-out both;
}

.hero-panel-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

@keyframes panel-wave-pulse {
    0% { opacity: 0; transform: scale(.45); }
    35% { opacity: .7; }
    100% { opacity: 0; transform: scale(1.25); }
}

@keyframes live-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 5px rgba(101, 216, 220, .12); }
    50% { box-shadow: 0 0 0 9px rgba(101, 216, 220, .04); }
}

@keyframes progress-reveal {
    from { width: 0; }
}

.home-banner .btn-light {
    color: #fff;
    border-color: rgba(255, 255, 255, .48);
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
}

.home-banner .btn-light:hover {
    color: var(--navy);
    background: #fff;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 22px;
    color: #1b859a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.eyebrow::before {
    content: '';
    width: 25px;
    height: 2px;
    background: var(--aqua);
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    order: 5;
    direction: ltr;
}

.nav-direction-toggle {
    padding: 7px 10px;
    min-height: 34px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--navy);
    background: var(--white);
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(9, 44, 76, .1);
    backdrop-filter: blur(8px);
    transition: color .2s, border-color .2s, background .2s, transform .2s;
}

.nav-direction-toggle:hover {
    color: var(--blue);
    border-color: var(--blue);
    transform: translateY(-2px);
}

.auth-controls {
    position: fixed;
    top: 22px;
    right: 28px;
    z-index: 30;
}

.auth-page {
    min-height: calc(100vh - 82px);
    display: grid;
    grid-template-columns: minmax(320px, .82fr) minmax(420px, 1.18fr);
    background: #f4fbfc;
}

body[data-page="login"],
body[data-page="signup"] {
    padding-top: 0;
}

body[data-page="login"] .auth-page,
body[data-page="signup"] .auth-page {
    min-height: 100vh;
}

.auth-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 650px;
    padding: clamp(38px, 6vw, 86px);
    overflow: hidden;
    color: #fff;
    background: linear-gradient(145deg, rgba(7, 35, 58, .9), rgba(12, 101, 163, .76)), url('../Images/img1.jpg') center / cover;
}

.auth-showcase::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    right: -130px;
    bottom: -120px;
    border: 1px solid rgba(101, 216, 220, .45);
    border-radius: 50%;
    box-shadow: 0 0 0 36px rgba(101, 216, 220, .08), 0 0 0 72px rgba(101, 216, 220, .05);
}

.auth-showcase > * {
    position: relative;
    z-index: 1;
}

.auth-showcase .brand {
    color: #fff;
}

.auth-showcase h1 {
    max-width: 460px;
    color: #fff;
    font-size: clamp(42px, 5vw, 72px);
}

.auth-showcase h1 span {
    color: var(--aqua);
}

.auth-showcase p {
    max-width: 390px;
    color: rgba(255, 255, 255, .78);
}

.auth-quote {
    max-width: 330px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .25);
    font-size: 13px;
}

.auth-panel {
    display: grid;
    place-items: center;
    padding: 50px 7vw;
    background: var(--white);
}

.auth-card {
    width: min(100%, 460px);
}

.auth-card .eyebrow {
    margin-bottom: 14px;
}

.auth-card h2 {
    margin-bottom: 10px;
    font-size: clamp(30px, 4vw, 44px);
}

.auth-intro {
    margin: 0 0 28px;
    color: var(--muted);
}

.social-login {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.social-login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color .2s, background .2s, transform .2s;
}

.social-login-button:hover {
    border-color: var(--blue);
    background: var(--pale);
    transform: translateY(-2px);
}

.social-login-button .fa-google {
    color: #db4437;
}

.social-login-button .fa-facebook-f {
    color: #1877f2;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.auth-divider::before,
.auth-divider::after {
    flex: 1;
    height: 1px;
    content: '';
    background: var(--line);
}

.auth-form {
    display: grid;
    gap: 17px;
}

.auth-field {
    display: grid;
    gap: 7px;
}

.auth-field label {
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
}

.auth-field input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 15px;
    color: var(--ink);
    background: var(--mist);
    outline: 0;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.auth-field input:focus {
    border-color: var(--aqua);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(101, 216, 220, .15);
}

.password-wrap {
    position: relative;
}

.password-wrap input {
    padding-right: 48px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 0;
    color: var(--muted);
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
}

.auth-submit {
    width: 100%;
    margin-top: 5px;
}

.auth-form-note {
    min-height: 24px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.auth-form-note.is-success {
    color: #14798a;
    font-weight: 700;
}

.auth-switch {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.auth-back-home {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 12px;
    text-align: left;
}

.auth-back-home a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 800;
}

.auth-back-home a::before {
    content: '←';
    font-size: 14px;
    line-height: 1;
}

.auth-switch a {
    color: var(--blue);
    font-weight: 800;
}

h1,
h2,
h3 {
    color: var(--navy);
    font-family: Manrope, sans-serif;
    line-height: 1.06;
    letter-spacing: -1.5px;
    margin: 0;
}

h1 {
    max-width: 600px;
    font-size: clamp(46px, 5.5vw, 80px);
    letter-spacing: -4px;
}

h1 span {
    color: #2aaabd;
}

h2 {
    font-size: clamp(31px, 3.4vw, 47px);
}

h3 {
    font-size: 19px;
    letter-spacing: -.5px;
}

.lede {
    max-width: 430px;
    margin: 27px 0 30px;
    color: #657984;
    font-size: 16px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-light {
    color: var(--navy);
    border: 1px solid var(--line);
    background: #fff;
}

.btn-light:hover {
    background: var(--pale);
}

.hero-visual {
    position: relative;
    height: 478px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.image-note {
    position: absolute;
    bottom: 22px;
    left: 22px;
    display: flex;
    gap: 11px;
    align-items: center;
    background: rgba(255, 255, 255, .94);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

.image-note span {
    width: 8px;
    height: 8px;
    background: var(--aqua);
    border-radius: 50%;
}

.section {
    padding: 84px 5.5vw;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 25px;
    margin-bottom: 38px;
}

.section-head p {
    max-width: 390px;
    margin: 0;
    color: var(--muted);
}

.kicker {
    color: #1b859a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.stat {
    padding: 27px 5.5vw;
    border-right: 1px solid var(--line);
}

.stat:last-child {
    border: 0;
}

.stat strong {
    display: block;
    color: var(--navy);
    font-family: Manrope;
    font-size: 27px;
}

.stat span {
    color: var(--muted);
    font-size: 12px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    min-height: 290px;
    flex-direction: column;
    padding: 26px 24px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(9, 44, 76, .06);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--aqua);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border: 2px solid var(--aqua);
    background: var(--pale);
    transform: translateY(-8px);
}

.pricing-card.featured:hover {
    transform: translateY(-13px);
}

.pricing-tag {
    width: fit-content;
    margin-bottom: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--blue);
    background: var(--mist);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.pricing-card h3 {
    margin-bottom: 12px;
}

.pricing-card > strong {
    color: var(--navy);
    font-family: Manrope, sans-serif;
    font-size: 30px;
    line-height: 1;
}

.pricing-card > small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
}

.pricing-card ul {
    display: grid;
    gap: 9px;
    margin: auto 0 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
    color: var(--muted);
    font-size: 12px;
}

.pricing-card li::before {
    content: '\2713';
    margin-right: 8px;
    color: var(--blue);
    font-weight: 800;
}

.program-card,
.coach-card,
.facility-card,
.age-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: transform .25s, box-shadow .25s;
}

.program-card:hover,
.coach-card:hover,
.facility-card:hover,
.age-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.card-image {
    height: 205px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 22px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    color: #268ca0;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.card-body p,
.coach-body p {
    color: var(--muted);
    font-size: 13px;
    margin: 11px 0 19px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.text-link svg {
    width: 14px;
    transition: transform .2s;
}

.text-link:hover svg {
    transform: translateX(4px);
}

.why-section {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 8vw;
    align-items: center;
    background: var(--pale);
}

.why-image {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 18px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 30px;
    margin-top: 34px;
}

.feature {
    display: flex;
    gap: 13px;
}

.feature-icon {
    flex: 0 0 37px;
    display: grid;
    place-items: center;
    height: 37px;
    border-radius: 9px;
    color: var(--blue);
    background: #fff;
}

.feature-icon svg {
    width: 18px;
}

.feature-icon i {
    display: inline-block;
    font-size: 15px;
    line-height: 1;
}

.feature h3 {
    font-size: 14px;
    letter-spacing: 0;
}

.feature p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.age-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.age-card {
    position: relative;
    min-height: 210px;
    border: 0;
}

.age-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 28%, rgba(4, 29, 50, .82));
}

.age-card img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
    display: block;
}

.age-copy {
    position: absolute;
    z-index: 1;
    bottom: 18px;
    left: 20px;
    color: #fff;
}

.age-copy h3 {
    color: #fff;
    font-size: 20px;
}

.age-copy span {
    color: #bdeef0;
    font-size: 11px;
}

.dark-cta {
    margin: 0 5.5vw 100px;
    padding: 53px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-radius: 18px;
    background: var(--navy);
}

.dark-cta h2 {
    color: #fff;
    max-width: 530px;
}

.dark-cta .btn {
    background: var(--aqua);
    color: var(--navy);
}

.page-hero {
    padding: 72px 5.5vw 64px;
    background: linear-gradient(120deg, var(--pale), #fff 65%);
}

.page-hero h1 {
    font-size: clamp(42px, 5vw, 66px);
    max-width: 700px;
}

.page-hero .lede {
    margin-bottom: 0;
}

.page-hero:not(.programs-banner) {
    position: relative;
    display: flex;
    min-height: 390px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
    color: var(--white);
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
}

.page-hero:not(.programs-banner)::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: '';
    background: rgba(5, 29, 49, .68);
}

.page-hero:not(.programs-banner) > * {
    position: relative;
    z-index: 1;
}

.page-hero:not(.programs-banner) h1 {
    max-width: 760px;
    color: var(--white);
}

.page-hero:not(.programs-banner) .eyebrow {
    color: var(--aqua);
}

.page-hero:not(.programs-banner) .lede {
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
    color: rgba(255, 255, 255, .82);
}

.about-banner {
    background-image: url('../Images/img6.jpg');
    background-position: center 42%;
}

.coaches-banner {
    background-image: url('../Images/img17.jpg');
    background-position: center 28%;
}

.timings-banner {
    background-image: url('../Images/img21.jpg');
    background-position: center 56%;
}

.facilities-banner {
    background-image: url('../Images/img20.jpg');
    background-position: center 62%;
}

.contact-banner {
    background-image: url('../Images/img5.jpg');
    background-position: center 44%;
}

.about-banner::before {
    background: rgba(5, 29, 49, .58);
}

.coaches-banner::before {
    background: rgba(5, 29, 49, .66);
}

.timings-banner::before {
    background: rgba(4, 39, 55, .62);
}

.facilities-banner::before {
    background: rgba(5, 29, 49, .52);
}

.contact-banner::before {
    background: rgba(5, 29, 49, .64);
}

.programs-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
    align-items: center;
    gap: clamp(36px, 7vw, 92px);
    padding-top: clamp(58px, 7vw, 94px);
    padding-bottom: clamp(58px, 7vw, 94px);
    text-align: center;
    color: var(--white);
    background: var(--navy);
}

.programs-banner-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.programs-banner h1 {
    max-width: 680px;
    color: var(--white);
}

.programs-banner .eyebrow {
    color: var(--aqua);
}

.programs-banner .lede {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
    color: rgba(255, 255, 255, .76);
}

.programs-banner .actions {
    margin-top: 30px;
}

.programs-banner .btn-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, .34);
    background: transparent;
}

.programs-banner .btn-light:hover {
    color: var(--navy);
    background: var(--white);
}

.programs-banner-media {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--radius);
    box-shadow: 0 24px 55px rgba(0, 0, 0, .22);
}

.programs-banner-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
}

.programs-banner-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 1px;
    min-width: 145px;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--navy);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .16);
}

.programs-banner-badge strong {
    font-family: Manrope, sans-serif;
    font-size: 25px;
    line-height: 1;
}

.programs-banner-badge span {
    color: var(--muted);
    font-size: 11px;
}

.filter-title {
    margin: 0 0 20px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.level-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 68px;
}

.level-card {
    min-height: 210px;
    padding: 27px;
    border-radius: 15px;
    background: var(--navy);
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.level-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 44, 76, .93), rgba(9, 44, 76, .27));
}

.level-card>* {
    position: relative;
}

.level-card h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.level-card p {
    max-width: 240px;
    color: #d1e2e7;
    font-size: 13px;
    margin: 0 0 22px;
}

.level-card .text-link {
    color: var(--aqua);
}

.coach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.coach-image {
    width: 100%;
    height: 290px;
    object-fit: cover;
    display: block;
    object-position: center 10%;
}

.coach-body {
    padding: 20px;
}

.coach-body p {
    margin-bottom: 12px;
}

.coach-role {
    color: #238ca0;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.coach-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.coach-foot small {
    color: var(--muted);
    font-size: 11px;
}

.icon-links {
    display: flex;
    gap: 8px;
}

.icon-links a {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    color: var(--blue);
    border: 1px solid var(--line);
    border-radius: 50%;
}

.icon-links svg {
    width: 13px;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.schedule {
    min-width: 720px;
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.schedule th {
    padding: 17px 20px;
    color: var(--muted);
    background: var(--mist);
    font-size: 11px;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.schedule td {
    padding: 21px 20px;
    border-top: 1px solid var(--line);
    font-size: 13px;
}

.schedule td:first-child {
    color: var(--navy);
    font-weight: 800;
}

.pill {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 100px;
    color: #258295;
    background: var(--pale);
    font-size: 11px;
    font-weight: 700;
}

.facility-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 18px;
}

.three-d-showcase {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 32px;
    align-items: center;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(230, 247, 250, .85), rgba(255, 255, 255, .9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7), 0 18px 45px rgba(9, 44, 76, .08);
    perspective: 1200px;
}

.floating-stack {
    position: relative;
    height: 340px;
    perspective: 1200px;
}

.float-card {
    position: absolute;
    inset: auto;
    width: min(340px, 82%);
    min-height: 180px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(25, 120, 146, .18);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(7, 35, 58, .92), rgba(17, 95, 137, .82));
    color: #fff;
    box-shadow: 0 28px 45px rgba(9, 44, 76, .18);
    transform-style: preserve-3d;
    animation: float-3d 6s ease-in-out infinite;
}

.float-card strong {
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: -1px;
}

.card-back {
    left: 30px;
    bottom: 26px;
    transform: rotateX(18deg) rotateY(-18deg) translateZ(-30px);
    background: linear-gradient(160deg, rgba(9, 44, 76, .9), rgba(24, 145, 161, .75));
}

.card-mid {
    left: 80px;
    bottom: 75px;
    transform: rotateX(16deg) rotateY(-10deg) translateZ(10px);
    animation-delay: .8s;
}

.card-top {
    left: 130px;
    bottom: 120px;
    transform: rotateX(14deg) rotateY(-4deg) translateZ(40px);
    animation-delay: 1.6s;
}

.mini-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #dff7ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.showcase-copy {
    align-self: center;
}

.showcase-copy h3 {
    margin: 0 0 14px;
    font-size: clamp(22px, 2vw, 32px);
    line-height: 1.2;
    color: var(--navy);
}

.showcase-copy p {
    margin: 0 0 16px;
    color: var(--muted);
}

.showcase-copy ul {
    padding-left: 20px;
    margin: 0;
    color: var(--navy);
    display: grid;
    gap: 10px;
    font-size: 13px;
}

@keyframes float-3d {
    0%,
    100% {
        transform: translateY(0) rotateX(14deg) rotateY(-10deg);
    }
    50% {
        transform: translateY(-14px) rotateX(18deg) rotateY(-4deg);
    }
}

.facility-card:first-child {
    grid-row: span 2;
}

.facility-card:first-child .card-image {
    height: 100%;
    min-height: 425px;
}

.facility-card:not(:first-child) .card-image {
    height: 160px;
}

.facility-card .card-body {
    padding: 19px;
}

.premium-facility-section {
    background: var(--mist);
}

.premium-facility-section .section-head {
    margin-bottom: 28px;
}

.premium-facility-section .facility-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.premium-facility-section .facility-card,
.premium-facility-section .facility-card:first-child {
    grid-row: auto;
}

.premium-facility-section .facility-card .card-image,
.premium-facility-section .facility-card:first-child .card-image,
.premium-facility-section .facility-card:not(:first-child) .card-image {
    height: 220px;
    min-height: 0;
}

.premium-facility-section .facility-card {
    display: flex;
    flex-direction: column;
}

.premium-facility-section .facility-card .card-body {
    flex: 1;
    padding: 21px;
}

.premium-facility-section .facility-card h3 {
    margin-bottom: 8px;
}

.premium-facility-section .facility-card p {
    margin-bottom: 0;
}

body[data-page="home"] .facility-grid .facility-card:first-child {
    grid-row: auto;
}

body[data-page="home"] .facility-grid .facility-card .card-image,
body[data-page="home"] .facility-grid .facility-card:first-child .card-image {
    height: 205px;
    min-height: 0;
}

.facility-extra {
    position: relative;
}

.facility-arrival {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
    align-items: center;
    gap: clamp(34px, 7vw, 90px);
    background: var(--mist);
}

.facility-extra-media {
    aspect-ratio: 4 / 3;
    max-height: 420px;
    overflow: hidden;
    border-radius: var(--radius);
}

.facility-extra-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.facility-arrival .facility-extra-copy {
    min-width: 0;
}

.facility-extra-copy .lede,
.facility-tech-copy .lede {
    max-width: 520px;
    color: var(--muted);
}

.facility-check-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
}

.facility-check-list span,
.standards-list p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.facility-check-list i,
.standards-list i {
    color: var(--blue);
    font-size: 16px;
}

.facility-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.facility-detail-grid article {
    padding: 27px 23px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform .25s, box-shadow .25s;
}

.facility-detail-grid article:hover,
.facility-family-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.facility-detail-grid h3 {
    margin-top: 20px;
}

.facility-detail-grid p,
.facility-family-card p,
.standards-list span {
    color: var(--muted);
    font-size: 13px;
}

.facility-tech {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(35px, 8vw, 110px);
    align-items: center;
    background: var(--navy);
    color: var(--white);
}

.facility-tech h2,
.facility-tech .kicker {
    color: var(--white);
}

.facility-tech .kicker {
    color: var(--aqua);
}

.facility-tech-copy .lede {
    color: rgba(255, 255, 255, .75);
}

.facility-tech-list {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.facility-tech-list div {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.facility-tech-list strong {
    color: var(--aqua);
    font-size: 12px;
    letter-spacing: 1px;
}

.facility-tech-list span {
    color: rgba(255, 255, 255, .84);
    font-size: 14px;
}

.facility-family-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.facility-family-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform .25s, box-shadow .25s;
}

.facility-family-card img {
    width: 100%;
    height: 245px;
    display: block;
    object-fit: cover;
}

.facility-family-card h3,
.facility-family-card p {
    margin-right: 22px;
    margin-left: 22px;
}

.facility-family-card h3 {
    margin-top: 20px;
    margin-bottom: 0;
}

.facility-family-card p {
    margin-bottom: 22px;
}

.facility-standards {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(35px, 8vw, 110px);
    align-items: center;
    background: var(--pale);
}

.standards-list {
    display: grid;
    gap: 18px;
}

.standards-list p {
    align-items: flex-start;
    margin: 0;
}

.standards-list span {
    display: grid;
    gap: 3px;
}

.standards-list strong {
    color: var(--navy);
    font-size: 14px;
}

.contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 8vw;
    align-items: start;
}

.contact-details {
    display: grid;
    gap: 21px;
    margin-top: 28px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: center;
}

.contact-item .feature-icon {
    border: 1px solid var(--line);
}

.contact-item strong {
    display: block;
    font-family: Manrope;
    font-size: 13px;
}

.contact-item span {
    color: var(--muted);
    font-size: 12px;
}

.contact-support {
    max-width: 390px;
    margin-top: 34px;
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--pale);
}

.contact-support .kicker {
    margin-bottom: 16px;
}

.contact-support-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(9, 44, 76, .10);
}

.contact-support-item:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.contact-support-item:last-child {
    padding-bottom: 0;
}

.contact-support-item > svg {
    flex: 0 0 auto;
    width: 16px;
    margin-top: 2px;
    color: var(--blue);
}

.contact-support-item strong,
.contact-support-item span {
    display: block;
}

.contact-support-item strong {
    color: var(--navy);
    font-family: Manrope, sans-serif;
    font-size: 12px;
}

.contact-map-section {
    background: var(--mist);
}

.contact-map-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(240px, .25fr);
    gap: 24px;
    align-items: stretch;
}

.contact-map {
    min-height: 650px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #d9edef;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 650px;
    display: block;
    border: 0;
}

.contact-map-note {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 650px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.contact-map-note h3 {
    margin-top: 24px;
}

.contact-map-note p {
    color: var(--muted);
    font-size: 13px;
}

.contact-map-note .text-link {
    margin-top: 12px;
}

.contact-route-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.contact-route-grid article {
    padding: 26px 23px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform .25s, box-shadow .25s;
}

.contact-route-grid article:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-route-grid h3 {
    margin-top: 20px;
}

.contact-route-grid p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.contact-response-section {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(35px, 8vw, 110px);
    align-items: center;
    background: var(--navy);
    color: var(--white);
}

.contact-response-section h2,
.contact-response-section .kicker {
    color: var(--white);
}

.contact-response-section .kicker {
    color: var(--aqua);
}

.contact-response-copy .lede {
    max-width: 480px;
    color: rgba(255, 255, 255, .76);
}

.contact-response-steps {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.contact-response-steps > div {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.contact-response-steps strong {
    color: var(--aqua);
    font-size: 12px;
    letter-spacing: 1px;
}

.contact-response-steps span {
    display: grid;
    gap: 3px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.contact-response-steps b {
    color: var(--white);
    font-size: 14px;
}

.contact-support-item span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
}

body[data-page="contact"] .section {
    padding-top: 68px;
    padding-bottom: 68px;
}

body[data-page="contact"] .section-head {
    margin-bottom: 28px;
}

body[data-page="contact"] .contact-layout {
    gap: clamp(32px, 5vw, 72px);
}

body[data-page="contact"] .contact-details {
    gap: 16px;
    margin-top: 22px;
}

body[data-page="contact"] .contact-support {
    margin-top: 26px;
}

body[data-page="contact"] .contact-route-grid,
body[data-page="contact"] .contact-map-layout {
    gap: 16px;
}

body[data-page="contact"] .contact-route-grid article {
    padding: 22px 20px;
}

body[data-page="contact"] .contact-response-steps > div {
    padding: 16px 0;
}

.enquiry-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
    padding: 32px;
    border-radius: 17px;
    background: var(--mist);
}

.field {
    display: grid;
    gap: 7px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 14px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 7px;
    outline: none;
    background: #fff;
    font-size: 13px;
}

.field textarea {
    min-height: 115px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--aqua);
    box-shadow: 0 0 0 3px rgba(101, 216, 220, .17);
}

.form-note {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 11px;
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 76px 5.5vw 25px;
    color: #b9d1da;
    background: #061e37;
}

.footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
}

.footer-ripples,
.footer-ripples::before,
.footer-ripples::after {
    position: absolute;
    left: -5%;
    width: 110%;
    height: 190px;
    border: 1px solid rgba(101, 216, 220, .15);
    border-radius: 50%;
    content: '';
}

.footer-ripples {
    bottom: -142px;
    box-shadow: 0 -12px 35px rgba(101, 216, 220, .06);
}

.footer-ripples::before {
    bottom: 24px;
    left: 3%;
    width: 94%;
}

.footer-ripples::after {
    bottom: 48px;
    left: 9%;
    width: 82%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr .8fr .9fr 1.2fr 1.15fr;
    gap: 0;
    padding-bottom: 50px;
}

.footer-branding,
.footer-column,
.footer-newsletter {
    min-width: 0;
    padding: 0 28px;
    border-left: 1px solid rgba(255, 255, 255, .13);
}

.footer-branding {
    padding-left: 0;
    border-left: 0;
}

.footer-column h3,
.footer-newsletter h3 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 13px;
    letter-spacing: .4px;
}

.footer-academy-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .8px;
    line-height: 1.05;
}

.footer-academy-logo strong {
    color: var(--aqua);
}

.footer-academy-logo small {
    display: block;
    margin-top: 5px;
    color: #8caab7;
    font-size: 8px;
    letter-spacing: 3.2px;
}

.footer-logo-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #061e37;
    background: var(--aqua);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(101, 216, 220, .23);
}

.footer-logo-mark svg,
.footer-logo-mark i {
    width: 23px;
    font-size: 20px;
}

.footer-academy-logo>span:last-child {
    font-size: 0;
}

.footer-academy-logo>span:last-child::after {
    content: 'bluecurrent.';
    color: #fff;
    font-size: 17px;
}

.footer-branding>p {
    max-width: 285px;
    margin: 22px 0;
    color: #a8c2cd;
    font-size: 12px;
    line-height: 1.75;
}

.footer-highlights {
    display: grid;
    gap: 9px;
    color: #d8e8eb;
    font-size: 10px;
    font-weight: 700;
}

.footer-highlights span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-highlights svg {
    width: 14px;
    color: var(--aqua);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    width: fit-content;
    color: #aac4ce;
    font-size: 12px;
    transition: color .2s, transform .2s;
}

.footer-column a:hover {
    color: var(--aqua);
    transform: translateX(4px);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 0;
    color: #aac4ce;
    font-size: 11px;
    line-height: 1.45;
}

.footer-contact p svg {
    flex: 0 0 auto;
    width: 14px;
    color: var(--aqua);
}

.footer-contact p a {
    font-size: 11px;
}

.footer-newsletter p {
    margin: -4px 0 18px;
    color: #9cb9c4;
    font-size: 12px;
    line-height: 1.6;
}

.footer-subscribe {
    display: flex;
    min-width: 0;
    border: 1px solid rgba(101, 216, 220, .35);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    overflow: hidden;
}

.footer-subscribe input {
    min-width: 0;
    width: 100%;
    padding: 12px;
    color: #fff;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 11px;
}

.footer-subscribe input::placeholder {
    color: #8daab6;
}

.footer-subscribe button {
    display: grid;
    flex: 0 0 42px;
    place-items: center;
    color: #061e37;
    border: 0;
    background: var(--aqua);
    cursor: pointer;
    transition: background .2s, box-shadow .2s;
}

.footer-subscribe button:hover {
    background: #a0f0ed;
    box-shadow: 0 0 18px rgba(101, 216, 220, .35);
}

.footer-subscribe svg {
    width: 15px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 19px 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 11px;
    color: #cfe4e8;
    border: 1px solid rgba(101, 216, 220, .2);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
}

.footer-badges svg {
    width: 13px;
    color: var(--aqua);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 22px;
    color: #7898a7;
    font-size: 10px;
}

.footer-bottom>span:first-child {
    font-size: 0;
}

.footer-bottom>span:first-child::after {
    content: '© 2026 Bluecurrent Aquatics. All Rights Reserved.';
    font-size: 10px;
}

.footer-bottom>span:nth-child(2) {
    color: #a9c6cf;
    font-style: italic;
}

.socials {
    display: flex;
    gap: 8px;
}

.socials a {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #dcebed;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    transition: color .2s, border-color .2s, transform .2s, box-shadow .2s;
}

.socials a:hover {
    color: var(--aqua);
    border-color: var(--aqua);
    box-shadow: 0 0 13px rgba(101, 216, 220, .22);
    transform: translateY(-2px);
}

.socials svg {
    width: 14px;
}

.reveal {
    animation: rise .55s both;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal:nth-child(2) {
    transition-delay: .1s;
}

.scroll-reveal:nth-child(3) {
    transition-delay: .2s;
}

.scroll-reveal:nth-child(4) {
    transition-delay: .3s;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .scroll-reveal,
    .hero-panel-waves span,
    .hero-live-dot,
    .hero-progress-track i {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(13px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 850px) {
    body {
        padding-top: 0;
    }

    .site-header {
        height: auto;
        min-height: 70px;
        gap: 15px;
        padding: 0 5vw;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        position: sticky;
    }

    .main-nav {
        display: none;
        position: static;
        flex: 0 0 100%;
        order: 4;
        padding: 20px 5vw;
        flex-direction: column;
        align-items: flex-start;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 15px 25px rgba(9, 44, 76, .08);
    }

    .main-nav.open {
        display: flex;
    }

    .nav-dropdown { width: 100%; }
    .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 12px 0; font-size: 16px; }
    .nav-dropdown-menu { position: static; display: none; width: 100%; padding: 0 0 5px 16px; opacity: 1; visibility: visible; transform: none; border: 0; border-radius: 0; box-shadow: none; background: transparent; }
    .nav-dropdown.open .nav-dropdown-menu { display: grid; }
    .nav-dropdown-menu a { padding: 9px 0; font-size: 14px; }

    .header-login {
        margin-left: auto;
        padding: 8px 9px;
        font-size: 10px;
    }

    .site-header > .header-login {
        display: none;
    }

    .main-nav .mobile-nav-login {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        margin: 8px 0 0;
        padding: 12px 0;
        border-radius: 0;
        border-top: 1px solid var(--line);
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        background: transparent;
        color: var(--navy);
        font-size: 16px;
    }

    .header-cta {
        margin-left: auto;
        padding: 10px 12px;
    }

    .menu-toggle {
        display: block;
        order: 6;
    }

    .header-controls {
        gap: 5px;
    }

    .hero,
    .why-section,
    .contact-layout,
    .contact-map-layout,
    .contact-response-section {
        grid-template-columns: 1fr;
    }

    .contact-route-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-map,
    .contact-map iframe,
    .contact-map-note {
        min-height: 520px;
    }

    .hero {
        padding-top: 55px;
    }

    .hero-visual {
        height: 390px;
    }

    .programs-banner {
        grid-template-columns: 1fr;
    }

    .programs-banner-media {
        min-height: 290px;
    }

    .programs-banner-media img {
        min-height: 290px;
    }

    .card-grid,
    .coach-grid,
    .testimonial-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .age-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-grid,
    .three-d-showcase,
    .facility-arrival,
    .facility-tech,
    .facility-standards {
        grid-template-columns: 1fr 1fr;
    }

    .facility-arrival,
    .facility-tech,
    .facility-standards {
        gap: 34px;
    }

    .facility-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-detail-grid article:last-child {
        grid-column: 1 / -1;
    }

    .facility-card:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .facility-card:first-child .card-image {
        min-height: 300px;
    }

    .dark-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .auth-page {
        grid-template-columns: 1fr;
    }

    .auth-showcase {
        min-height: 390px;
        padding: 42px 7vw;
    }

    .auth-showcase h1 {
        font-size: 50px;
    }

    .auth-panel {
        padding: 52px 7vw 68px;
    }
}

@media (max-width: 560px) {
    body {
        padding-top: 0;
    }

    .site-header {
        height: auto;
    }

    .header-cta {
        display: none;
    }

    h1 {
        font-size: 48px;
        letter-spacing: -2.5px;
    }

    .section {
        padding: 60px 5vw;
    }

    .social-login {
        grid-template-columns: 1fr;
    }

    body[data-page="contact"] .section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .hero {
        padding: 55px 5vw 50px;
    }

    .home-banner {
        min-height: 0;
        padding: 52px 5vw 58px;
    }

    .home-banner .hero-visual {
        height: 320px;
        min-height: 320px;
    }

    .home-banner-panel {
        inset: 4% 0;
        gap: 18px;
        padding: 24px;
        border-radius: 20px;
    }

    .hero-panel-waves {
        width: 170px;
        height: 110px;
    }

    .home-banner .image-note {
        right: 18px;
        bottom: 18px;
        left: 18px;
        justify-content: center;
    }

    .hero-visual {
        height: 300px;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        padding: 20px 5vw;
    }

    .stat:nth-child(2) {
        border-right: 0;
    }

    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .section-head {
        display: block;
    }

    .section-head p {
        margin-top: 15px;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 400px;
    }

    .contact-map-note {
        min-height: 0;
        padding: 24px;
    }

    .card-grid,
    .coach-grid,
    .level-grid,
    .facility-grid,
    .contact-route-grid,
    .facility-detail-grid,
    .facility-family-grid,
    .testimonial-grid,
    .pricing-grid,
    .performance-grid,
    .three-d-showcase,
    .facility-arrival,
    .facility-tech,
    .facility-standards {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        min-height: 0;
    }

    .facility-detail-grid article:last-child {
        grid-column: auto;
    }

    .facility-extra-media,
    .facility-extra-media img {
        min-height: 0;
    }

    .facility-family-card img {
        height: 210px;
    }

    .three-d-showcase {
        padding: 18px;
    }

    .floating-stack {
        height: 260px;
    }

    .float-card {
        width: min(260px, 80%);
    }

    .card-back { left: 10px; }
    .card-mid { left: 40px; }
    .card-top { left: 70px; }

    .age-grid {
        gap: 10px;
    }

    .age-card {
        min-height: 170px;
    }

    .age-card img {
        min-height: 170px;
    }

    .feature-list,
    .enquiry-form {
        grid-template-columns: 1fr;
    }

    .field.full,
    .form-note {
        grid-column: auto;
    }

    .why-image {
        height: 280px;
    }

    .dark-cta {
        margin: 0 5vw 65px;
        padding: 37px 25px;
    }

    .page-hero {
        padding: 55px 5vw;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 25px;
    }

    .site-footer {
        padding: 58px 5vw 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 35px;
    }

    .footer-branding,
    .footer-column,
    .footer-newsletter {
        padding: 0;
        border-left: 0;
    }

    .footer-branding {
        text-align: center;
    }

    .footer-academy-logo {
        justify-content: center;
    }

    .footer-branding>p {
        margin-right: auto;
        margin-left: auto;
    }

    .footer-highlights {
        justify-items: center;
    }

    .footer-column h3,
    .footer-newsletter h3 {
        margin-bottom: 13px;
    }

    .footer-column {
        align-items: center;
    }

    .footer-contact {
        align-items: stretch;
        gap: 12px;
    }

    .footer-contact h3 {
        text-align: center;
    }

    .footer-contact p span,
    .footer-contact p a {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .footer-newsletter {
        text-align: center;
    }

    .footer-subscribe {
        width: 100%;
        text-align: left;
    }

    .footer-badges {
        justify-content: center;
    }

    .footer-bottom {
        align-items: center;
        text-align: center;
    }

    .footer-ripples {
        bottom: -150px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .schedule-row { grid-template-columns: 44px minmax(0,1fr); gap: 10px; }
    .schedule-time, .schedule-row .status-badge { grid-column: 2; }
    .schedule-time { margin-top: -4px; }
    .schedule-row .status-badge { width: fit-content; }
}

@media (min-width: 561px) and (max-width: 1050px) {
    .site-footer {
        padding: 65px 5vw 24px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 0;
    }

    .footer-branding,
    .footer-newsletter {
        border-left: 0;
    }

    .footer-branding,
    .footer-column:nth-child(3),
    .footer-newsletter {
        padding-left: 0;
    }

    .footer-column:nth-child(2),
    .footer-column:nth-child(4) {
        padding-right: 0;
    }
}

/* Shared template utilities */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-content: center;
    gap: 12px;
    color: var(--navy);
    background: var(--white);
    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    transition: opacity .45s ease, visibility .45s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin: auto;
    border-radius: 50%;
    color: var(--navy);
    background: var(--aqua);
    animation: loader-pulse 1s ease-in-out infinite alternate;
}

.loader-mark svg {
    width: 24px;
}

.loader-mark i {
    font-size: 21px;
}

.footer-account a {
    display: block;
    margin-top: 9px;
    color: inherit;
    font-size: 12px;
    font-weight: 600;
}

.footer-account a:hover {
    color: var(--aqua);
}

.auth-footer {
    padding: 0 5vw;
}

.auth-footer .footer-inner {
    padding: 22px 0;
}

.auth-footer .footer-bottom {
    border-top: 0;
    padding-top: 0;
}

.auth-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.auth-footer-brand .footer-logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
}

.auth-footer a:hover {
    color: var(--aqua);
}

.site-preferences {
    display: flex;
    gap: 7px;
}

.site-preferences button {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--navy);
    background: var(--white);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(9, 44, 76, .12);
}

.site-preferences svg {
    width: 16px;
}

.field-error {
    min-height: 16px;
    color: #c62828;
    font-size: 11px;
    font-weight: 700;
}

@keyframes loader-pulse {
    to {
        transform: translateY(-5px) rotate(8deg);
    }
}

@media (max-width: 850px) {
    .main-nav.open {
        min-height: calc(100vh - 70px);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        justify-content: flex-start;
        padding-top: 28px;
        padding-bottom: 40px;
    }

    .main-nav.open a {
        width: 100%;
        min-height: 48px;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--line);
    }

    .menu-toggle,
    .header-login,
    .nav-direction-toggle,
    .site-preferences button {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #dcebed;
    font-size: 12px;
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--aqua);
}

.community-section {
    background: var(--mist);
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: var(--ink);
    background: var(--white);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.utility-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--pale), var(--white));
}

.utility-content {
    max-width: 680px;
    text-align: center;
}

.utility-content .eyebrow {
    justify-content: center;
}

.utility-content .lede {
    margin: 24px auto 30px;
}

.utility-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 25px;
    border-radius: 50%;
    color: var(--navy);
    background: var(--aqua);
}

.utility-icon svg {
    width: 30px;
}

.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 5px; min-height: 42px; padding: 0; color: #58707d; border: 0; background: transparent; font-size: 13px; font-weight: 600; cursor: pointer; }
.nav-dropdown-toggle svg { width: 13px; transition: transform .2s; }
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle { color: var(--navy); }
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: calc(100% + 17px); right: -12px; display: grid; min-width: 175px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: 0 15px 30px rgba(9, 44, 76, .14); transition: opacity .2s, transform .2s, visibility .2s; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { padding: 9px 10px; color: #58707d; border-radius: 6px; font-size: 12px; }
.nav-dropdown-menu a:hover { color: var(--navy); background: var(--pale); }

.profile-avatar, .table-avatar { display: grid; flex: 0 0 auto; place-items: center; width: 38px; height: 38px; color: var(--navy); background: var(--aqua); border-radius: 50%; font-size: 11px; font-weight: 800; }
.admin-avatar { color: #fff; background: var(--blue); }

.schedule-row { display: grid; grid-template-columns: 48px minmax(0,1fr) auto auto; align-items: center; gap: 14px; padding: 15px 0; border-top: 1px solid var(--line); }.schedule-date { display: grid; place-items: center; width: 44px; height: 44px; color: var(--navy); border-radius: 9px; background: var(--pale); line-height: 1; }.schedule-date strong { font-size: 17px; }.schedule-date span { color: #168b99; font-size: 8px; font-weight: 800; }.schedule-info { display: grid; gap: 3px; }.schedule-info strong, .plan-name { color: var(--navy); font-size: 13px; }.schedule-info span, .schedule-time { color: var(--muted); font-size: 11px; }.schedule-time { display: inline-flex; align-items: center; gap: 5px; }.schedule-time svg { width: 13px; }
.status-badge { display: inline-block; padding: 4px 8px; border-radius: 20px; font-size: 9px; font-weight: 800; white-space: nowrap; }.status-badge.confirmed, .status-badge.paid { color: #198d75; background: #e3f7ef; }.status-badge.pending { color: #a16b13; background: #fff1d5; }
