/* =========================================================
   LAS CASCADAS - VIBRANT SUMMER THEME
========================================================= */

:root {
    --font-heading: "Paytone One", system-ui, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;

    --color-primary: #0b63ce;
    --color-primary-2: #084da3;
    --color-primary-3: #063b7c;
    --color-secondary: #35b6ff;
    --color-secondary-2: #7fd8ff;
    --color-accent: #ffca28;
    --color-accent-2: #ffb300;
    --color-accent-3: #ff9800;

    --color-bg: #f6fbff;
    --color-bg-soft: #ebf8ff;
    --color-surface: #ffffff;
    --color-surface-2: #f8fcff;

    --color-text: #14324a;
    --color-text-soft: #5e7488;
    --color-heading: #0a4f99;
    --color-dark: #0a2c52;
    --color-danger: #d94a38;

    --color-line: rgba(11, 99, 206, 0.1);
    --color-line-strong: rgba(11, 99, 206, 0.18);

    --shadow-sm: 0 10px 24px rgba(10, 79, 153, 0.1);
    --shadow-md: 0 20px 44px rgba(10, 79, 153, 0.16);
    --shadow-lg: 0 28px 70px rgba(10, 79, 153, 0.2);

    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --radius-pill: 999px;

    --navH: 92px;
    --navFloatTop: 20px;
    --navFloatSide: 32px;

    --footer-bg: #0a355f;
    --footer-bg-2: #082948;
    --footer-text: #eef7ff;
    --footer-link: #ffffff;
}

/* =========================================================
   RESET / BASE
========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    min-height: 100%;
}

body.theme-lascascadas {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: radial-gradient(
            circle at top left,
            rgba(127, 216, 255, 0.18),
            transparent 24%
        ),
        radial-gradient(
            circle at top right,
            rgba(255, 202, 40, 0.18),
            transparent 18%
        ),
        linear-gradient(180deg, #eff9ff 0%, #f8fcff 36%, #f4fbff 100%);
    display: flex;
    flex-direction: column;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1 0 auto;
    position: relative;
}

main {
    flex: 1 0 auto;
}

img {
    max-width: 100%;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.22s ease;
}

a:hover {
    color: var(--color-primary-2);
}

section,
.section {
    position: relative;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

p,
li {
    line-height: 1.75;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */
h1,
h2,
h3,
h4,
h5,
h6,
.h-waterpark,
h1.display-4,
h2.h3,
h3.h4 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    letter-spacing: 0;
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.6rem, 4vw, 4.6rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    margin-bottom: 0.9rem;
}

h3 {
    font-size: clamp(1.3rem, 2vw, 2rem);
}

.lead {
    font-size: 1.08rem;
    color: var(--color-text-soft);
    line-height: 1.8;
}

@media (max-width: 767.98px) {
    .plans-slider {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.25rem;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .plans-slider > .plan-slide {
        flex: 0 0 auto;
        width: 88%;
        max-width: 88%;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .plans-slider::-webkit-scrollbar {
        height: 8px;
    }

    .plans-slider::-webkit-scrollbar-thumb {
        background: rgba(11, 99, 206, 0.22);
        border-radius: 999px;
    }

    .plans-slider::-webkit-scrollbar-track {
        background: rgba(11, 99, 206, 0.08);
    }

    .plans-slider.g-4 {
        --bs-gutter-x: 0rem;
    }
}

/* =========================================================
   BOOTSTRAP OVERRIDES
========================================================= */
.btn {
    border-radius: var(--radius-pill);
    font-weight: 700;
    padding: 0.78rem 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:focus {
    box-shadow: 0 0 0 0.24rem rgba(53, 182, 255, 0.18);
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-secondary) 100%
    );
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    border-color: transparent;
    filter: brightness(1.02);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.84);
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
}

.card {
    border: 1px solid rgba(11, 99, 206, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 28px rgba(8, 77, 163, 0.08);
    overflow: hidden;
}

.form-control,
.form-select {
    min-height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(11, 99, 206, 0.14);
    box-shadow: none !important;
    background-color: rgba(255, 255, 255, 0.98);
    color: var(--color-text);
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(53, 182, 255, 0.48);
    box-shadow: 0 0 0 0.22rem rgba(53, 182, 255, 0.14) !important;
}

/* =========================================================
   THEME UTILITIES - LAS CASCADAS
   Bootstrap-like helpers
========================================================= */

:root {
    --color-primary: #0b63ce;
    --color-secondary: #35b6ff;
    --color-accent: #ffca28;

    --color-primary-rgb: 11, 99, 206;
    --color-secondary-rgb: 53, 182, 255;
    --color-accent-rgb: 255, 202, 40;

    --color-primary-dark: #084da3;
    --color-secondary-dark: #1599e8;
    --color-accent-dark: #e0ae00;

    --color-primary-soft: rgba(11, 99, 206, 0.12);
    --color-secondary-soft: rgba(53, 182, 255, 0.12);
    --color-accent-soft: rgba(255, 202, 40, 0.18);

    --color-on-primary: #ffffff;
    --color-on-secondary: #083548;
    --color-on-accent: #17313a;
}

/* =========================================================
   TEXT
========================================================= */
.text-primary {
    color: var(--color-primary) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.text-accent {
    color: var(--color-accent) !important;
}

.text-primary-emphasis {
    color: var(--color-primary-dark) !important;
}

.text-secondary-emphasis {
    color: var(--color-secondary-dark) !important;
}

.text-accent-emphasis {
    color: var(--color-accent-dark) !important;
}

/* =========================================================
   BACKGROUNDS
========================================================= */
.bg-primary {
    background-color: var(--color-primary) !important;
    color: var(--color-on-primary) !important;
}

.bg-secondary {
    background-color: var(--color-secondary) !important;
    color: var(--color-on-secondary) !important;
}

.bg-accent {
    background-color: var(--color-accent) !important;
    color: var(--color-on-accent) !important;
}

.bg-primary-subtle {
    background-color: var(--color-primary-soft) !important;
}

.bg-secondary-subtle {
    background-color: var(--color-secondary-soft) !important;
}

.bg-accent-subtle {
    background-color: var(--color-accent-soft) !important;
}

/* Gradients */
.bg-primary-gradient {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-secondary) 100%
    ) !important;
    color: #fff !important;
}

.bg-accent-gradient {
    background: linear-gradient(
        135deg,
        var(--color-accent) 0%,
        #ffb300 100%
    ) !important;
    color: var(--color-on-accent) !important;
}

/* =========================================================
   BORDERS
========================================================= */
.border-primary {
    border-color: var(--color-primary) !important;
}

.border-secondary {
    border-color: var(--color-secondary) !important;
}

.border-accent {
    border-color: var(--color-accent) !important;
}

.border-primary-subtle {
    border-color: rgba(var(--color-primary-rgb), 0.22) !important;
}

.border-secondary-subtle {
    border-color: rgba(var(--color-secondary-rgb), 0.22) !important;
}

.border-accent-subtle {
    border-color: rgba(var(--color-accent-rgb), 0.28) !important;
}

/* =========================================================
   LINKS
========================================================= */
.link-primary {
    color: var(--color-primary) !important;
    text-decoration-color: rgba(var(--color-primary-rgb), 0.34);
}

.link-primary:hover,
.link-primary:focus {
    color: var(--color-primary-dark) !important;
    text-decoration-color: var(--color-primary-dark);
}

.link-secondary {
    color: var(--color-secondary-dark) !important;
    text-decoration-color: rgba(var(--color-secondary-rgb), 0.34);
}

.link-secondary:hover,
.link-secondary:focus {
    color: var(--color-secondary-dark) !important;
    filter: brightness(0.92);
}

.link-accent {
    color: #b88600 !important;
    text-decoration-color: rgba(var(--color-accent-rgb), 0.5);
}

.link-accent:hover,
.link-accent:focus {
    color: var(--color-accent-dark) !important;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn-primary-theme,
.btn-secondary-theme,
.btn-accent-theme,
.btn-outline-primary-theme,
.btn-outline-secondary-theme,
.btn-outline-accent-theme,
.btn-soft-primary,
.btn-soft-secondary,
.btn-soft-accent {
    --btn-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    font-weight: 800;
    padding: 0.85rem 1.2rem;
    border: 1px solid transparent;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease,
        background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-primary-theme:hover,
.btn-secondary-theme:hover,
.btn-accent-theme:hover,
.btn-outline-primary-theme:hover,
.btn-outline-secondary-theme:hover,
.btn-outline-accent-theme:hover,
.btn-soft-primary:hover,
.btn-soft-secondary:hover,
.btn-soft-accent:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-primary-theme:focus,
.btn-secondary-theme:focus,
.btn-accent-theme:focus,
.btn-outline-primary-theme:focus,
.btn-outline-secondary-theme:focus,
.btn-outline-accent-theme:focus,
.btn-soft-primary:focus,
.btn-soft-secondary:focus,
.btn-soft-accent:focus {
    box-shadow: 0 0 0 0.24rem rgba(var(--color-primary-rgb), 0.16);
    outline: 0;
}

/* Filled */
.btn-primary-theme {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-secondary) 100%
    );
    color: #fff;
    box-shadow: 0 12px 26px rgba(var(--color-primary-rgb), 0.22);
}

.btn-primary-theme:hover,
.btn-primary-theme:focus {
    color: #fff;
    filter: brightness(1.02);
}

.btn-secondary-theme {
    background: var(--color-secondary);
    color: var(--color-on-secondary);
    box-shadow: 0 12px 26px rgba(var(--color-secondary-rgb), 0.2);
}

.btn-secondary-theme:hover,
.btn-secondary-theme:focus {
    color: var(--color-on-secondary);
    filter: brightness(0.98);
}

.btn-accent-theme {
    background: linear-gradient(135deg, var(--color-accent) 0%, #ffb300 100%);
    color: var(--color-on-accent);
    box-shadow: 0 12px 26px rgba(var(--color-accent-rgb), 0.24);
}

.btn-accent-theme:hover,
.btn-accent-theme:focus {
    color: var(--color-on-accent);
    filter: brightness(0.98);
}

/* Outline */
.btn-outline-primary-theme {
    background: transparent;
    border-color: rgba(var(--color-primary-rgb), 0.28);
    color: var(--color-primary);
}

.btn-outline-primary-theme:hover,
.btn-outline-primary-theme:focus {
    background: rgba(var(--color-primary-rgb), 0.08);
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.btn-outline-secondary-theme {
    background: transparent;
    border-color: rgba(var(--color-secondary-rgb), 0.32);
    color: var(--color-secondary-dark);
}

.btn-outline-secondary-theme:hover,
.btn-outline-secondary-theme:focus {
    background: rgba(var(--color-secondary-rgb), 0.1);
    border-color: var(--color-secondary);
    color: var(--color-secondary-dark);
}

.btn-outline-accent-theme {
    background: transparent;
    border-color: rgba(var(--color-accent-rgb), 0.4);
    color: #a37700;
}

.btn-outline-accent-theme:hover,
.btn-outline-accent-theme:focus {
    background: rgba(var(--color-accent-rgb), 0.14);
    border-color: var(--color-accent);
    color: #8b6500;
}

/* Soft */
.btn-soft-primary {
    background: rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary-dark);
    border-color: rgba(var(--color-primary-rgb), 0.12);
}

.btn-soft-primary:hover,
.btn-soft-primary:focus {
    background: rgba(var(--color-primary-rgb), 0.16);
    color: var(--color-primary-dark);
}

.btn-soft-secondary {
    background: rgba(var(--color-secondary-rgb), 0.12);
    color: var(--color-secondary-dark);
    border-color: rgba(var(--color-secondary-rgb), 0.14);
}

.btn-soft-secondary:hover,
.btn-soft-secondary:focus {
    background: rgba(var(--color-secondary-rgb), 0.18);
    color: var(--color-secondary-dark);
}

.btn-soft-accent {
    background: rgba(var(--color-accent-rgb), 0.18);
    color: #8b6500;
    border-color: rgba(var(--color-accent-rgb), 0.2);
}

.btn-soft-accent:hover,
.btn-soft-accent:focus {
    background: rgba(var(--color-accent-rgb), 0.24);
    color: #7c5a00;
}

/* =========================================================
   BADGES / PILLS
========================================================= */
.badge-primary-theme,
.badge-secondary-theme,
.badge-accent-theme {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.48rem 0.78rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
}

.badge-primary-theme {
    background: rgba(var(--color-primary-rgb), 0.12);
    color: var(--color-primary-dark);
}

.badge-secondary-theme {
    background: rgba(var(--color-secondary-rgb), 0.14);
    color: var(--color-secondary-dark);
}

.badge-accent-theme {
    background: rgba(var(--color-accent-rgb), 0.22);
    color: #8b6500;
}

/* =========================================================
   SHADOW HELPERS
========================================================= */
.shadow-primary {
    box-shadow: 0 14px 28px rgba(var(--color-primary-rgb), 0.18) !important;
}

.shadow-secondary {
    box-shadow: 0 14px 28px rgba(var(--color-secondary-rgb), 0.18) !important;
}

.shadow-accent {
    box-shadow: 0 14px 28px rgba(var(--color-accent-rgb), 0.2) !important;
}

/* =========================================================
   PRELOADER
========================================================= */
.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: radial-gradient(
            circle at center,
            rgba(255, 179, 0, 0.2),
            transparent 26%
        ),
        linear-gradient(180deg, #f4fcff 0%, #eaf7ff 100%);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-preloader__inner {
    text-align: center;
}

.site-preloader__logo-wrap {
    width: 146px;
    height: 146px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 45px rgba(8, 77, 163, 0.12);
    backdrop-filter: blur(10px);
}

.site-preloader__logo {
    width: 88px;
    max-width: 60vw;
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(8, 77, 163, 0.18));
    animation: preloaderPop 0.5s ease both;
}

.site-preloader__line {
    width: 190px;
    max-width: 65vw;
    height: 4px;
    border-radius: 999px;
    margin: 0 auto;
    overflow: hidden;
    background: rgba(8, 77, 163, 0.08);
    position: relative;
}

.site-preloader__line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--color-accent) 20%,
        var(--color-secondary) 50%,
        var(--color-primary) 80%,
        transparent 100%
    );
    transform: translateX(-100%);
    animation: preloaderRun 1.15s linear infinite;
}

.site-preloader.is-hidden,
#preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes preloaderRun {
    to {
        transform: translateX(100%);
    }
}

@keyframes preloaderPop {
    from {
        transform: translateY(8px) scale(0.96);
        opacity: 0;
    }
    to {
        transform: none;
        opacity: 1;
    }
}

/* =========================================================
   NAVBAR
========================================================= */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1080;
    pointer-events: none;
    height: calc(var(--navH) + var(--navFloatTop));
}

.site-navbar {
    min-height: var(--navH);
    padding: 0;
    pointer-events: none;
}

.site-navbar__inner {
    min-height: var(--navH);
    display: flex;
    align-items: center;
    pointer-events: auto;

    max-width: 1180px;
    width: calc(100% - 64px);
    margin-left: auto;
    margin-right: auto;
    margin-top: var(--navFloatTop);
    padding: 0.8rem 1.25rem;

    border-radius: 22px;
    background: linear-gradient(
        180deg,
        rgba(10, 85, 185, 0.96) 0%,
        rgba(8, 77, 163, 0.94) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow: 0 18px 38px rgba(8, 77, 163, 0.16),
        0 0 0 1px rgba(127, 216, 255, 0.05), 0 0 22px rgba(53, 182, 255, 0.16);

    transition: width 0.28s ease, max-width 0.28s ease, margin-top 0.28s ease,
        border-radius 0.28s ease, box-shadow 0.28s ease, padding 0.28s ease;
}

body.is-scrolled .site-navbar__inner {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    border-radius: 0;
    padding: 0.7rem 1.25rem;
    box-shadow: 0 10px 28px rgba(8, 77, 163, 0.16),
        0 0 0 1px rgba(127, 216, 255, 0.03), 0 0 18px rgba(53, 182, 255, 0.1);
}

.navbar .navbar-nav {
    gap: 0.2rem;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
}

.nav-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.14));
    transition: transform 0.2s ease, height 0.28s ease;
}

body.is-scrolled .nav-logo {
    height: 54px;
}

.navbar .nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    letter-spacing: 0.01em;
    font-size: 0.97rem;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #ffffff;
}

.navbar .nav-link.active {
    color: var(--color-accent) !important;
}

.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.2rem;
    height: 3px;
    border-radius: 999px;
    background: var(--color-accent);
}

.navbar .nav-link.active:hover,
.navbar .nav-link.active:focus {
    color: var(--color-accent) !important;
}

.site-navbar__actions .btn {
    min-width: 138px;
    justify-content: center;
}

.navbar .btn.btn-pill {
    border-radius: var(--radius-pill) !important;
    padding: 0.72rem 1.08rem;
    line-height: 1.2;
}

.site-btn-ticket {
    background: linear-gradient(
        135deg,
        var(--color-accent) 0%,
        var(--color-accent-2) 100%
    );
    color: #17313a !important;
    border: 0;
    box-shadow: 0 12px 28px rgba(255, 179, 0, 0.28);
    font-weight: 800;
}

.site-btn-ticket:hover,
.site-btn-ticket:focus {
    color: #17313a !important;
    filter: brightness(0.98);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar .navbar-collapse {
    visibility: visible !important;
}

.site-navbar .dropdown-menu {
    min-width: 220px;
    border: 1px solid rgba(11, 99, 206, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(8, 77, 163, 0.12);
    padding: 0.45rem;
}

.site-navbar .dropdown-item {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.7rem 0.85rem;
    color: var(--color-dark);
}

.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item:focus {
    background: rgba(53, 182, 255, 0.08);
    color: var(--color-primary-2);
}

.site-navbar .dropdown-item.text-danger:hover,
.site-navbar .dropdown-item.text-danger:focus {
    background: rgba(220, 53, 69, 0.08);
    color: #b42318;
}

.site-navbar .dropdown-divider {
    margin: 0.35rem 0;
    border-top-color: rgba(11, 99, 206, 0.08);
}

@media (min-width: 992px) {
    .navbar .navbar-collapse {
        display: flex !important;
        flex-basis: auto !important;
    }

    .navbar .navbar-nav {
        flex-direction: row !important;
    }
}

@media (max-width: 991.98px) {
    :root {
        --navFloatSide: 14px;
        --navFloatTop: 14px;
    }

    .site-header {
        height: calc(var(--navH) + var(--navFloatTop));
    }

    .site-navbar__inner {
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        padding: 0.7rem 0.95rem;
        border-radius: 18px;
    }

    body.is-scrolled .site-navbar__inner {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        border-radius: 0;
        padding: 0.68rem 0.95rem;
    }

    .navbar .navbar-collapse.show {
        background: rgba(8, 77, 163, 0.98);
        backdrop-filter: blur(14px);
        border-radius: 16px;
        padding: 1rem;
        margin-top: 0.75rem;
        box-shadow: 0 18px 40px rgba(8, 77, 163, 0.22);
    }

    .navbar-nav .nav-item + .nav-item {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 0.35rem;
        padding-top: 0.35rem;
    }

    .navbar .nav-link {
        padding-left: 0;
        padding-right: 0;
    }

    .navbar .navbar-collapse.show .btn {
        width: 100%;
    }

    .nav-logo {
        height: 48px;
    }

    body.is-scrolled .nav-logo {
        height: 44px;
    }
}

/* =========================================================
   HERO
========================================================= */
.hero-home {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    filter: saturate(1.08) contrast(1.03) brightness(0.98);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
            180deg,
            rgba(7, 74, 153, 0.1) 0%,
            rgba(7, 74, 153, 0.12) 35%,
            rgba(7, 74, 153, 0.18) 100%
        ),
        radial-gradient(
            circle at 82% 18%,
            rgba(255, 255, 255, 0.34),
            transparent 18%
        ),
        radial-gradient(
            circle at 20% 20%,
            rgba(255, 202, 40, 0.16),
            transparent 24%
        );
}

.hero-bottom-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 240px;
    z-index: 3;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.55) 55%,
        rgba(255, 255, 255, 0.92) 82%,
        #ffffff 100%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
}

.hero-copy {
    max-width: 760px;
    padding-top: 140px;
    padding-bottom: 120px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    font-size: clamp(3rem, 6vw, 6.2rem);
    margin-bottom: 1rem;
}

.hero-title span {
    display: block;
    color: var(--color-accent);
}

.hero-subtitle {
    color: var(--color-accent);
    font-size: clamp(1rem, 1.8vw, 1.45rem);
    font-weight: 700;
    line-height: 1.5;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
    margin-bottom: 1.8rem;
}

.hero-actions {
    position: relative;
    z-index: 5;
}

.btn-hero-primary,
.btn-hero-secondary {
    min-width: 180px;
    padding: 0.98rem 1.55rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1rem;
    border: 0;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
    color: #17313a;
    box-shadow: 0 16px 34px rgba(255, 179, 0, 0.28);
}

.btn-hero-primary:hover,
.btn-hero-primary:focus {
    color: #17313a;
    filter: brightness(0.98);
}

.btn-hero-secondary {
    background: linear-gradient(135deg, #0d6adf 0%, #084da3 100%);
    color: #fff;
    box-shadow: 0 14px 30px rgba(8, 77, 163, 0.24);
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
    color: #fff;
    filter: brightness(1.02);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-glass {
    position: relative;
    max-width: 720px;
    padding: 1.35rem 1.2rem;
    border-radius: 28px;
    /* background: linear-gradient(
        135deg,
        rgba(8, 77, 163, 0.52) 0%,
        rgba(11, 99, 206, 0.34) 55%,
        rgba(53, 182, 255, 0.24) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px); */
}

.hero-title {
    margin-bottom: 1rem;
}

.hero-title span {
    display: block;
    color: var(--color-accent);
}

.hero-subtitle {
    max-width: 60ch;
    margin-bottom: 1.6rem;
}

@media (max-width: 991.98px) {
    .hero-copy {
        padding-top: 150px;
        padding-bottom: 90px;
    }
}

@media (max-width: 576px) {
    .hero-home {
        min-height: 92vh;
    }

    .hero-title {
        font-size: clamp(2.4rem, 11vw, 3.8rem);
        line-height: 0.96;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-bottom-fade {
        height: 140px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }
}

/* =========================================================
   SUBHERO
========================================================= */
.subhero {
    position: relative;
    min-height: 340px;
    padding-top: calc(var(--navH) + 40px);
    padding-bottom: 50px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.subhero-bg {
    position: absolute;
    inset: -80px 0 -40px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: translate3d(0, 0, 0) scale(1.12);
    will-change: transform;
    z-index: 1;
}

.subhero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
            180deg,
            rgba(6, 44, 94, 0.38) 0%,
            rgba(8, 77, 163, 0.52) 55%,
            rgba(8, 77, 163, 0.72) 100%
        ),
        radial-gradient(
            circle at 82% 18%,
            rgba(255, 255, 255, 0.18),
            transparent 18%
        ),
        radial-gradient(
            circle at 18% 20%,
            rgba(255, 202, 40, 0.14),
            transparent 24%
        );
}

.subhero-bottom-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.55) 60%,
        #ffffff 100%
    );
}

.subhero-content {
    position: relative;
    z-index: 4;
}

.subhero-card {
    display: inline-block;
    max-width: 760px;
    padding: 1.1rem 1.2rem;
    border-radius: 24px;
    /* background: linear-gradient(
        135deg,
        rgba(8, 77, 163, 0.46) 0%,
        rgba(11, 99, 206, 0.32) 55%,
        rgba(53, 182, 255, 0.18) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(8px); */
}

.subhero-title {
    margin: 0;
    color: #fff;
    font-family: var(--font-heading);
    /* font-size: clamp(2rem, 4vw, 3.4rem); */
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.subhero-breadcrumb-wrap {
    margin-top: 0.65rem;
}

.subhero-crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.65rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.subhero-crumb-item {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.subhero-crumb-link,
.subhero-crumb-current {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.9rem;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.subhero-crumb-link {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.subhero-crumb-link:hover,
.subhero-crumb-link:focus {
    color: #17313a;
    background: var(--color-accent);
    transform: translateY(-1px);
}

.subhero-crumb-current {
    color: #17313a;
    background: linear-gradient(135deg, #ffd54f 0%, #ffca28 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(255, 202, 40, 0.2);
}

.subhero-crumb-sep {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
}

@media (max-width: 991.98px) {
    .subhero {
        min-height: 300px;
        padding-top: calc(var(--navH) + 28px);
        padding-bottom: 54px;
    }
}

@media (max-width: 575.98px) {
    .subhero {
        min-height: 260px;
        padding-bottom: 42px;
    }

    .subhero-card {
        width: 100%;
        padding: 1rem;
        border-radius: 20px;
    }

    .subhero-title {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

    .subhero-breadcrumb .breadcrumb-item,
    .subhero-breadcrumb .breadcrumb-item.active {
        font-size: 0.86rem;
    }
}

/* =========================================================
   HOME SECTIONS
========================================================= */
.section-home {
    padding: clamp(3rem, 5vw, 5rem) 0;
}

.section-heading-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-title-home {
    font-family: var(--font-heading);
    /* font-weight: 800; */
    font-size: clamp(2rem, 3vw, 3rem);
    /* letter-spacing: -0.03em; */
    line-height: 1.04;
    color: var(--color-secondary);
}

.section-copy-home {
    /* color: var(--color-text-soft); */
    font-size: 1.02rem;
    line-height: 1.75;
}

/* =========================================================
   HOME WELCOME
========================================================= */
.home-welcome {
    background: #ffffff;
    padding: clamp(3rem, 5vw, 5.5rem) 0;
}

.welcome-card {
    background: linear-gradient(
            rgba(255, 255, 255, 0.8),
            rgba(251, 253, 255, 0.77)
        ),
        url("/assets/img/waterBG.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* border: 1px solid rgba(11, 99, 206, 0.08); */
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(8, 77, 163, 0.08);
    padding: clamp(1.5rem, 3vw, 3rem);
    overflow: hidden;
    position: relative;
}

.welcome-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(127, 216, 255, 0.22) 0%,
        rgba(127, 216, 255, 0) 72%
    );
    pointer-events: none;
}

.welcome-card::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: -70px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 202, 40, 0.18) 0%,
        rgba(255, 202, 40, 0) 72%
    );
    pointer-events: none;
}

.welcome-brand {
    position: relative;
    z-index: 2;
}

.welcome-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 14px 30px rgba(8, 77, 163, 0.12));
}

.welcome-copy {
    position: relative;
    z-index: 2;
}

.welcome-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: var(--color-accent);
    color: var(--color-primary-2);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.welcome-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.welcome-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: #f3f9ff;
    border: 1px solid rgba(11, 99, 206, 0.08);
    color: var(--color-dark);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
}

.welcome-highlights i {
    color: var(--color-primary);
}

.btn-welcome-secondary {
    background: linear-gradient(135deg, #7fd8ff 0%, #35b6ff 100%);
    color: #0f3742;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    padding: 0.95rem 1.7rem;
    box-shadow: 0 12px 26px rgba(53, 182, 255, 0.18);
}

.btn-welcome-secondary:hover,
.btn-welcome-secondary:focus {
    color: #0f3742;
    filter: brightness(0.98);
}

.btn-welcome-outline {
    background: #fff;
    color: var(--color-primary-2);
    border: 1px solid rgba(11, 99, 206, 0.16);
    border-radius: 999px;
    font-weight: 800;
    padding: 0.95rem 1.7rem;
    box-shadow: 0 10px 24px rgba(8, 77, 163, 0.06);
}

.btn-welcome-outline:hover,
.btn-welcome-outline:focus {
    color: var(--color-primary-2);
    border-color: rgba(11, 99, 206, 0.26);
    background: #f8fcff;
}

@media (max-width: 991.98px) {
    .welcome-logo {
        max-width: 260px;
    }
}

@media (max-width: 575.98px) {
    .welcome-card {
        border-radius: 24px;
        padding: 1.25rem;
    }

    .welcome-highlights span {
        width: 100%;
        justify-content: flex-start;
    }

    .btn-welcome-secondary,
    .btn-welcome-outline,
    .btn-home-pill-primary {
        width: 100%;
    }
}

/* =========================================================
   ATTRACTIONS
========================================================= */
.home-attractions {
    background: linear-gradient(180deg, #f4fbff 0%, #f8fcff 100%);
}

.attraction-card-v2 {
    position: relative;
    display: block;
    border-radius: 24px;
    overflow: hidden;
    min-height: 390px;
    background: #fff;
    border: 1px solid rgba(11, 99, 206, 0.1);
    box-shadow: 0 18px 34px rgba(8, 77, 163, 0.12);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.attraction-card-v2 img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    display: block;
}

.attraction-card-v2__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.02) 0%,
        rgba(0, 0, 0, 0.1) 42%,
        rgba(6, 35, 78, 0.82) 100%
    );
}

.attraction-card-v2__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1rem 1rem 1.1rem;
}

.attraction-card-v2__content h3 {
    margin: 0 0 0.35rem;
    color: #fff;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.24);
}

.attraction-card-v2__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.94rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.attraction-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(8, 77, 163, 0.18);
}

.btn-home-pill-primary {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-secondary) 100%
    );
    color: #fff;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    padding: 0.95rem 1.7rem;
    box-shadow: var(--shadow-sm);
}

.btn-home-pill-primary:hover,
.btn-home-pill-primary:focus {
    color: #fff;
    filter: brightness(1.02);
}

/* =========================================================
   BIRTHDAYS
========================================================= */
.home-birthdays {
    position: relative;
    padding: clamp(3rem, 5vw, 5rem) 0;
    overflow: hidden;
    background: linear-gradient(180deg, #eef9ff 0%, #f8fcff 100%);
    min-height: 500px !important;
}

.birthdays-parallax {
    position: absolute;
    inset: -60px 0;
    background-image: url("/assets/img/birthBG.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: translate3d(0, 0, 0) scale(1.08);
    will-change: transform;
    z-index: 1;
}

.birthdays-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(9, 54, 110, 0.72) 0%,
        rgba(8, 77, 163, 0.58) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.home-birthdays > .container {
    position: relative;
    z-index: 3;
}

.home-birthdays .section-title-home,
.home-birthdays .section-copy-home {
    color: #fff;
}

.home-birthdays .section-copy-home {
    color: rgba(255, 255, 255, 0.9);
}

.home-birthdays .birthday-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(4px);
}

.birthday-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 52px rgba(8, 77, 163, 0.16);
}

.birthday-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.birthday-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.birthday-card__body {
    padding: 1.2rem;
}

.birthday-card__body h3 {
    font-family: var(--font-body);
    font-weight: 800;
    color: var(--color-dark);
    font-size: 1.35rem;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.birthday-card__body p {
    color: var(--color-text-soft);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.birthday-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.78rem;
    margin-bottom: 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    background: rgba(255, 202, 40, 0.18);
    color: #8b5a00;
}

.birthday-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: linear-gradient(135deg, #ffd54f 0%, #ff9800 100%);
    color: #17313a;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(255, 179, 0, 0.24);
}

.birthday-price-wrap {
    margin-bottom: 1rem;
}

.birthday-price-old {
    font-size: 0.95rem;
    color: #8ea2b3;
    text-decoration: line-through;
    margin-bottom: 0.1rem;
}

.birthday-price-now {
    font-size: 1.9rem;
    line-height: 1;
    font-weight: 900;
    color: var(--color-primary-2);
}

.empty-home-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(11, 99, 206, 0.1);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 16px 32px rgba(8, 77, 163, 0.08);
}

.empty-home-card h3 {
    font-family: var(--font-body);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.birthday-empty-wrap {
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.empty-home-card--birthday {
    position: relative;
    bottom: -30px;
    width: 100%;
    max-width: 860px;
    margin-inline: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
}

@media (max-width: 991.98px) {
    .home-birthdays {
        background-attachment: scroll;
    }
}

/* =========================================================
   EVENTS BANNER
========================================================= */
.home-events-strip {
    padding: 1rem 0 5rem;
    background: linear-gradient(180deg, #f8fcff 0%, #dff7fb 100%);
}

.events-banner {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 280px;
    box-shadow: var(--shadow-md);
    background: #0b63ce;
}

.events-banner > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.events-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(8, 57, 116, 0.82) 0%,
        rgba(8, 77, 163, 0.44) 45%,
        rgba(8, 77, 163, 0.16) 100%
    );
}

.events-banner__content {
    position: relative;
    z-index: 2;
    min-height: 280px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    color: #fff;
}

.events-banner__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-body);
    font-weight: 900;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.04;
    color: #fff;
}

.events-banner__eyebrow span {
    color: #ffd54f;
}

.events-banner__content p {
    margin: 0.65rem 0 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 1.08rem;
}

.btn-events-cta {
    background: linear-gradient(135deg, #ffd54f 0%, #ff9800 100%);
    color: #17313a;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    padding: 0.95rem 1.5rem;
    white-space: nowrap;
    box-shadow: 0 14px 28px rgba(255, 179, 0, 0.28);
}

.btn-events-cta:hover,
.btn-events-cta:focus {
    color: #17313a;
    filter: brightness(0.98);
}

@media (max-width: 991.98px) {
    .events-banner__content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
}

/* =========================================================
   SPONSORS
========================================================= */

.home-sponsors {
    /* background: linear-gradient(180deg, #f8fcff 0%, #eef9ff 100%); */
    background-color: white;
}

.logo-marquee {
    position: relative;
}

.logo-marquee img {
    height: 78px;
    width: auto;
    object-fit: contain;
    opacity: 0.92;
    transition: opacity 0.2s ease, transform 0.2s ease;
    filter: grayscale(0.06);
}

.logo-marquee img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.marquee-viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 8%,
        #000 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 8%,
        #000 92%,
        transparent 100%
    );
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
}

.marquee-set {
    display: flex;
    align-items: center;
    gap: 72px;
    padding-inline: 8px;
}

.logo-marquee.is-static .marquee-viewport {
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
}

.logo-marquee.is-static .marquee-track {
    width: 100%;
    justify-content: center;
    transform: none !important;
}

.logo-marquee.is-static .marquee-set {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.logo-marquee.is-marquee .marquee-track {
    animation: sponsorMarquee linear infinite;
    animation-duration: var(--marquee-duration, 18s);
}

@keyframes sponsorMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-1 * var(--marquee-distance, 0px)));
    }
}

.logo-marquee.is-marquee:hover .marquee-track {
    animation-play-state: paused;
}

@media (max-width: 575.98px) {
    .logo-marquee img {
        height: 58px;
    }
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
    color: var(--footer-text);
    background: linear-gradient(180deg, #0c4f86 0%, #083b67 100%);
    margin-top: 72px !important;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: none;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at 10% 10%,
            rgba(255, 202, 40, 0.1),
            transparent 20%
        ),
        radial-gradient(
            circle at 90% 15%,
            rgba(127, 216, 255, 0.08),
            transparent 18%
        );
    pointer-events: none;
}

.footer-wave,
.wave-sep,
.wave-between,
.footer-wave svg {
    display: none !important;
}

.footer-logo {
    height: 74px;
    width: auto;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.site-footer .footer-bottom,
.footer-bottom {
    background: rgba(0, 0, 0, 0.16);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.94);
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffd54f;
    text-decoration: none;
}

.footer-links li,
.footer-contact li {
    line-height: 1.8rem;
}

.footer-contact li,
.footer-contact a {
    color: rgba(255, 255, 255, 0.94);
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ffd54f;
    text-decoration: none;
}

.btn-ticket,
.btn-plans {
    border-radius: 999px;
    border: 0;
    padding: 0.84rem 1.05rem;
    font-weight: 800;
}

.btn-ticket {
    background: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
    color: #17313a;
    box-shadow: 0 12px 26px rgba(255, 179, 0, 0.26);
}

.btn-ticket:hover {
    color: #17313a;
    filter: brightness(0.98);
}

.btn-plans {
    background: linear-gradient(135deg, #7fd8ff 0%, #35b6ff 100%);
    color: #0f3742;
    box-shadow: 0 12px 26px rgba(53, 182, 255, 0.18);
}

.btn-plans:hover {
    color: #0f3742;
    filter: brightness(0.98);
}

.site-footer .eidt-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    max-width: 100%;
}

.site-footer .eidt-footer-brand-text {
    color: #ff6a1a;
}

.site-footer .eidt-footer-brand-name {
    color: #ff6a1a;
    font-weight: 800;
}

.site-footer .eidt-footer-brand:hover {
    text-decoration: none;
    opacity: 0.95;
}

.site-footer .eidt-footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    overflow: hidden;
}

.site-footer .eidt-footer-logo img {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}

.btn-social,
.btn-social-alt {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: grid;
    place-items: center;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-social:hover,
.btn-social-alt:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    color: #ffd54f;
    background: rgba(255, 255, 255, 0.16);
}

/* =========================================================
   FLOATING UI
========================================================= */
.scroll-top-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1050;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-secondary) 100%
    );
    color: #fff;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(12px) scale(0.95);
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.2s ease;
    cursor: pointer;
    pointer-events: none;
}

.scroll-top-btn.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.scroll-top-btn:hover {
    box-shadow: var(--shadow-lg);
}

.floating-cake {
    position: fixed;
    right: 18px;
    top: calc(var(--navH) + 16px);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--color-accent) 0%,
        var(--color-accent-2) 100%
    );
    color: #17313a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 1060;
    text-decoration: none;
}

.floating-cake:hover {
    color: #17313a;
    transform: translateY(-1px);
}

.floating-cake i {
    font-size: 1.4rem;
}

.floating-cake .badge {
    position: absolute;
    top: -6px;
    right: -4px;
    background: var(--color-danger);
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    padding: 4px 7px;
    border: 2px solid #fff;
}

/* =========================================================
   SELECT2 / TABLES
========================================================= */
.select2-container--bootstrap-5 .select2-selection {
    min-height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(11, 99, 206, 0.14);
    padding-top: 0.4rem;
    background-color: rgba(255, 255, 255, 0.98);
}

table.dataTable {
    border-color: rgba(11, 99, 206, 0.08) !important;
}

table.dataTable thead th {
    color: var(--color-heading);
}

/* =========================================================
   PUBLIC ADMIN FLOAT
========================================================= */
.pub-admin-float {
    position: fixed;
    right: 18px;
    bottom: 76px;
    z-index: 1065;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-height: 58px;
    max-width: min(92vw, 420px);
    padding: 0.8rem 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(248, 252, 255, 0.98) 100%
    );
    border: 1px solid rgba(11, 99, 206, 0.12);
    box-shadow: 0 18px 42px rgba(8, 77, 163, 0.14);
    color: var(--color-dark);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.pub-admin-float::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-primary),
        var(--color-accent),
        var(--color-secondary)
    );
}

.pub-admin-float:hover,
.pub-admin-float:focus {
    color: var(--color-dark);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 24px 50px rgba(8, 77, 163, 0.18);
    border-color: rgba(11, 99, 206, 0.18);
}

.pub-admin-float__icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(11, 99, 206, 0.1);
    border: 1px solid rgba(11, 99, 206, 0.14);
    color: var(--color-primary);
    font-size: 1.05rem;
}

.pub-admin-float__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.15;
}

.pub-admin-float__title {
    font-weight: 900;
    font-size: 0.92rem;
    color: var(--color-heading);
    white-space: nowrap;
}

.pub-admin-float__sub {
    margin-top: 0.18rem;
    font-size: 0.82rem;
    color: var(--color-text-soft);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pub-admin-float__cta {
    margin-left: 0.15rem;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.5rem 0.78rem;
    border-radius: 999px;
    background: rgba(53, 182, 255, 0.1);
    color: var(--color-primary-2);
    border: 1px solid rgba(11, 99, 206, 0.1);
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
}

.pub-admin-float:hover .pub-admin-float__cta,
.pub-admin-float:focus .pub-admin-float__cta {
    background: rgba(255, 202, 40, 0.18);
    color: #8b6500;
    border-color: rgba(255, 202, 40, 0.22);
}

@media (max-width: 576px) {
    .pub-admin-float {
        right: 12px;
        left: 12px;
        bottom: 70px;
        max-width: none;
        width: auto;
        border-radius: 22px;
        padding: 0.75rem 0.85rem;
    }

    .pub-admin-float__title {
        font-size: 0.88rem;
    }
}

/* =========================================================
   IMPERSONATE CUSTOMER INDICATOR
========================================================= */
#customerImpersonateIndicator {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 1080;
}

.imp-card {
    width: 290px;
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(248, 252, 255, 0.98) 100%
    );
    border: 1px solid rgba(11, 99, 206, 0.1);
    box-shadow: 0 18px 42px rgba(8, 77, 163, 0.12);
    position: relative;
    overflow: hidden;
}

.imp-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--color-primary),
        var(--color-accent),
        var(--color-secondary)
    );
}

.imp-title {
    font-weight: 900;
    color: var(--color-heading);
    font-size: 0.92rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.imp-body {
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.5;
}

.imp-body b {
    color: var(--color-dark);
}

#btnStopCustomerImpersonate {
    border-radius: 999px;
    font-weight: 800;
}

@media (max-width: 576px) {
    #customerImpersonateIndicator {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .imp-card {
        width: 100%;
    }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 576px) {
    :root {
        --navH: 78px;
        --navFloatSide: 10px;
        --navFloatTop: 10px;
    }

    .site-footer {
        margin-top: 32px !important;
    }

    .floating-cake {
        width: 48px;
        height: 48px;
        right: 12px;
        top: calc(var(--navH) + 10px);
    }

    .scroll-top-btn {
        right: 12px;
        bottom: 12px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================================
   ATTRACTIONS PAGE
========================================================= */
.attractions-page {
    background: linear-gradient(180deg, #f4fbff 0%, #f9fdff 100%);
}

.section-header-home {
    max-width: 900px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.9rem;
    border-radius: 999px;
    background: rgba(53, 182, 255, 0.1);
    border: 1px solid rgba(11, 99, 206, 0.08);
    color: var(--color-primary-2);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.attraction-list-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(11, 99, 206, 0.08);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(8, 77, 163, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.attraction-list-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(8, 77, 163, 0.16);
}

.attraction-list-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.attraction-list-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.attraction-list-card:hover .attraction-list-card__media img {
    transform: scale(1.04);
}

.attraction-list-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 77, 163, 0.02) 0%,
        rgba(8, 77, 163, 0.06) 45%,
        rgba(8, 77, 163, 0.14) 100%
    );
}

.attraction-list-card__body {
    padding: 1.2rem;
}

.attraction-list-card__top {
    margin-bottom: 0.8rem;
}

.attraction-list-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    background: rgba(53, 182, 255, 0.12);
    color: var(--color-primary-2);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
}

.attraction-list-card__body h3 {
    margin-bottom: 0.65rem;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1.12;
    color: var(--color-dark);
}

.attraction-list-card__body p {
    margin-bottom: 1rem;
    color: var(--color-text-soft);
    line-height: 1.65;
    font-size: 0.96rem;
}

.attraction-list-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    color: var(--color-primary);
    font-weight: 800;
    font-size: 0.95rem;
}

.attraction-list-card:hover .attraction-list-card__cta {
    color: var(--color-primary-2);
}

/* Empty state */
.empty-state-waterpark {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
    border: 1px solid rgba(11, 99, 206, 0.08);
    border-radius: 30px;
    box-shadow: 0 18px 42px rgba(8, 77, 163, 0.08);
    padding: clamp(1.25rem, 3vw, 2.4rem);
}

.empty-state-waterpark::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(127, 216, 255, 0.18) 0%,
        rgba(127, 216, 255, 0) 72%
    );
    pointer-events: none;
}

.empty-state-waterpark::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: -70px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 202, 40, 0.14) 0%,
        rgba(255, 202, 40, 0) 72%
    );
    pointer-events: none;
}

.empty-state-waterpark__content,
.empty-state-waterpark__media {
    position: relative;
    z-index: 2;
}

.empty-state-waterpark__title {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    color: var(--color-heading);
    margin-bottom: 0.85rem;
}

.empty-state-waterpark__media {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(8, 77, 163, 0.12);
    aspect-ratio: 1 / 1;
}

.empty-state-waterpark__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
