/* =====================================================
   WATER SPORTS BANUS - Main Stylesheet
   Brand: Mediterranean Adventure Luxury
   ===================================================== */

/* =====================================================
   CUSTOM FONTS
   ===================================================== */
@font-face {
    font-family: 'Rubik Puddles';
    src: url('../fonts/RubikPuddles-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* =====================================================
   CSS VARIABLES & ROOT STYLES
   ===================================================== */
:root {
    /* Primary Colors */
    --ocean-blue: #0077B6;
    --deep-navy: #023E8A;
    --sunlit-turquoise: #00B4D8;
    --seafoam: #90E0EF;
    --seafoam-light: #CAF0F8;

    /* Accent Colors */
    --warm-sand: #F4A261;
    --warm-sand-dark: #E76F51;
    --coral: #E63946;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --medium-gray: #6C757D;
    --charcoal: #1D3557;
    --black: #0D1B2A;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    --gradient-cta: linear-gradient(90deg, #F4A261 0%, #E76F51 100%);
    --gradient-hero-overlay: linear-gradient(135deg, rgba(0,119,182,0.7) 0%, rgba(0,180,216,0.5) 100%);
    --gradient-dark: linear-gradient(180deg, rgba(13,27,42,0.9) 0%, rgba(29,53,87,0.8) 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Montserrat', var(--font-primary);

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
}

/* =====================================================
   RESET & BASE STYLES
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Body loading state - prevents scroll during load */
body.is-loading {
    overflow: hidden;
}

/* =====================================================
   LOADING SCREEN
   Logo animation that shrinks into navbar
   ===================================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
        ellipse 120% 100% at 50% 30%,
        #00B4D8 0%,
        #0096C7 25%,
        #0077B6 50%,
        #023E8A 100%
    );
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.loading-logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: loadingPulse 2s ease-in-out infinite;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo animation is now handled by JavaScript for precise positioning */
.loading-screen.shrinking .loading-logo {
    filter: none; /* Remove shadow during animation for cleaner look */
}

@keyframes loadingPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
    }
}

/* logoShrink animation removed - JS now handles precise logo positioning */

.loading-text {
    margin-top: var(--space-6);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 500;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.loading-progress {
    margin-top: var(--space-4);
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.loading-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #F4A261, #E76F51);
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

/* Loading ripple effects */
.loading-ripples {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.loading-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: loadingRippleExpand 3s ease-out infinite;
}

.loading-ripple:nth-child(2) {
    animation-delay: 1s;
}

.loading-ripple:nth-child(3) {
    animation-delay: 2s;
}

@keyframes loadingRippleExpand {
    0% {
        width: 150px;
        height: 150px;
        opacity: 0.6;
    }
    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

/* Hide loading elements when shrinking */
.loading-screen.shrinking .loading-text,
.loading-screen.shrinking .loading-progress,
.loading-screen.shrinking .loading-ripples {
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

a {
    color: var(--ocean-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--deep-navy);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 {
    font-size: var(--text-5xl);
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--text-4xl);
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

h5 {
    font-size: var(--text-lg);
}

h6 {
    font-size: var(--text-base);
}

p {
    margin-bottom: var(--space-4);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   LAYOUT UTILITIES
   ===================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-sm {
    max-width: 768px;
}

.container-lg {
    max-width: 1440px;
}

.section {
    padding: var(--space-20) 0;
}

.section-lg {
    padding: var(--space-24) 0;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

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

.justify-between {
    justify-content: space-between;
}

.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

.grid {
    display: grid;
}

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

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

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

/* =====================================================
   SANDY ISLAND NAVBAR - Floating Island Navigation
   Premium Mediterranean island floating on water
   ===================================================== */

/* =====================================================
   ISLAND VARIABLES
   ===================================================== */
:root {
    /* Island dimensions */
    --island-height: 94px;
    --island-max-width: 1160px;

    /* Sand colors - uniform warm Mediterranean beach */
    --sand-light: #f0dfc0;
    --sand-mid: #ead8b0;
    --sand-dark: #e5d0a8;
    --sand-wet: #d8c090;
    --sand-shadow: #d0b888;

    /* Animation timing */
    --island-float-duration: 5s;
    --island-float-amplitude: 2px;
    --island-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --wave-duration: 2s;
}

/* =====================================================
   HEADER CONTAINER
   ===================================================== */
.island-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: 18px 24px;
    pointer-events: none;
}

/* =====================================================
   MAIN ISLAND NAVIGATION
   ===================================================== */
.island-nav {
    position: relative;
    max-width: var(--island-max-width);
    height: var(--island-height);
    margin: 0 auto;
    pointer-events: auto;
}

/* =====================================================
   ISLAND SHAPE (SVG organic sand body)
   ===================================================== */
.island-shape {
    position: absolute;
    inset: 0;
    overflow: visible;
}

.island-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    overflow: visible;
}

.island-body {
    transition: d 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sand grain texture overlay (very subtle) */
.sand-texture {
    position: absolute;
    inset: 5px 20px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    mix-blend-mode: soft-light;
    border-radius: 40px;
    pointer-events: none;
}

/* Sun shimmer reflection (ultra-subtle) */
.sand-shimmer {
    position: absolute;
    top: 12px;
    left: 10%;
    right: 10%;
    height: 45%;
    background: radial-gradient(
        ellipse 80% 60% at 50% 40%,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.08) 40%,
        transparent 70%
    );
    border-radius: 50px;
    opacity: 0.5;
    animation: shimmerMove 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmerMove {
    0%, 100% {
        transform: translateX(-2%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateX(2%) scale(1.02);
        opacity: 0.55;
    }
}

/* =====================================================
   ISLAND CONTENT LAYOUT
   ===================================================== */
.island-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--island-height);
    padding: 14px 24px;
    z-index: 2;
    gap: 8px;
}

/* =====================================================
   LOGO - CENTERED
   ===================================================== */
.island-logo {
    display: flex;
    align-items: center;
    padding: 4px 16px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.island-logo:hover {
    transform: scale(1.03);
}

.island-logo .logo-image {
    height: 56px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.island-logo:hover .logo-image {
    transform: scale(1.02);
}

/* Hide navbar logo during loading screen - allows seamless logo transition */
body.is-loading .island-logo .logo-image {
    opacity: 0;
}

/* =====================================================
   NAVIGATION LINKS - SPLIT LAYOUT
   ===================================================== */
.island-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.island-links-left {
    justify-content: flex-end;
}

.island-links-right {
    justify-content: flex-start;
}

.island-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #3D2914;
    text-decoration: none;
    background: transparent;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease;
    overflow: hidden;
    text-transform: uppercase;
}

.island-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(0, 119, 182, 0.12) 0%,
        rgba(0, 180, 216, 0.08) 100%);
    border-radius: inherit;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.25s ease;
}

.island-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Active state - no pill, just lighter brown color */
.island-link.active::before {
    opacity: 0;
    transform: scale(0.9);
}

.island-link:hover {
    color: #2A1A0A;
}

.island-link.active {
    color: #9B7B3A;
}

/* =====================================================
   LANGUAGE SWITCHER
   ===================================================== */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 12px;
    padding-left: 16px;
    border-left: 1px solid rgba(61, 41, 20, 0.2);
}

.lang-option {
    font-size: 13px;
    font-weight: 700;
    color: rgba(61, 41, 20, 0.6);
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 4px;
    transition: all 0.25s ease;
    text-transform: uppercase;
}

.lang-option:hover {
    color: #3D2914;
    background: rgba(0, 119, 182, 0.1);
}

.lang-option.active {
    color: #0077B6;
    background: rgba(0, 119, 182, 0.15);
}

.lang-divider {
    color: rgba(61, 41, 20, 0.3);
    font-size: 12px;
}

/* Mobile Language Switcher */
.mobile-language-switcher {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(61, 41, 20, 0.15);
}

.mobile-lang-option {
    font-size: 14px;
    font-weight: 600;
    color: rgba(61, 41, 20, 0.6);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.25s ease;
}

.mobile-lang-option:hover {
    color: #3D2914;
    background: rgba(0, 119, 182, 0.1);
}

.mobile-lang-option.active {
    color: #fff;
    background: #0077B6;
}

/* =====================================================
   NAVIGATION LINKS
   ===================================================== */
.island-links {
    position: relative;
}

/* Nav link styling */
.island-link {
    z-index: 2;
    position: relative;
}

/* Dropdowns z-index */
.island-dropdown {
    z-index: 2;
    position: relative;
}

/* Dropdown arrow */
.island-dropdown .dropdown-arrow {
    width: 12px;
    height: 12px;
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.island-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* =====================================================
   DROPDOWN PANELS (Sand-themed)
   ===================================================== */
.island-dropdown {
    position: relative;
}

.island-dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

/* Invisible hover bridge */
.island-dropdown-panel::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 20px;
}

.island-dropdown:hover .island-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Sand-themed dropdown background */
.dropdown-sand-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        var(--sand-light) 0%,
        var(--sand-mid) 100%);
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 60, 80, 0.15),
        0 4px 16px rgba(0, 60, 80, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.island-dropdown-panel .dropdown-inner {
    position: relative;
    padding: 12px;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}

.island-dropdown-panel .dropdown-inner a {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #3d5a6e;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.island-dropdown-panel .dropdown-inner a:hover {
    background: rgba(0, 119, 182, 0.1);
    color: #0077B6;
    padding-left: 20px;
}

/* =====================================================
   CTA LINK (Same style as nav links)
   ===================================================== */
.island-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 16px;
    background: transparent;
    transition: all 0.2s ease;
    text-transform: uppercase;
    flex-shrink: 0;
}

.island-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.island-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.island-cta:hover svg {
    transform: translateX(3px);
}

/* =====================================================
   MOBILE MENU BUTTON
   ===================================================== */
.island-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    gap: 5px;
    transition: background 0.2s ease;
}

.island-menu-btn:hover {
    background: rgba(139, 105, 20, 0.1);
}

.island-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #3D2914;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Menu button active state (X) */
.island-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.island-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.island-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================================================
   HERO MODE - Sand Island on Water
   ===================================================== */
.island-header.hero-mode .island-body {
    fill-opacity: 0.95;
}

.island-header.hero-mode .island-logo,
.island-header.hero-mode .island-cta {
    color: #ffffff;
}

.island-header.hero-mode .island-link {
    color: #3D2914;
}

.island-header.hero-mode .island-link.active {
    color: #9B7B3A;
}

.island-header.hero-mode .water-ambient-ripple {
    border-color: rgba(255, 255, 255, 0.3);
}

.island-header.hero-mode .island-water-shadow {
    background: radial-gradient(ellipse at center,
        rgba(0, 60, 80, 0.25) 0%,
        rgba(0, 60, 80, 0.1) 50%,
        transparent 80%);
}

/* =====================================================
   MOBILE ISLAND PANEL (Expanded Sand Platform)
   ===================================================== */
.island-mobile-panel {
    position: fixed;
    top: 85px;
    left: 12px;
    right: 12px;
    max-height: calc(100vh - 110px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: var(--z-modal);
    pointer-events: auto;
    overflow: visible;
}

.island-mobile-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Water surrounding the island */
.mobile-water-surround {
    position: absolute;
    inset: -20px;
    pointer-events: none;
    z-index: 0;
}

.mobile-water-ripple {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(0, 180, 216, 0.3);
    border-radius: 45px;
    animation: mobileWaterRipple 4s ease-in-out infinite;
}

.mobile-water-ripple-1 {
    animation-delay: 0s;
}

.mobile-water-ripple-2 {
    inset: -8px;
    border-radius: 50px;
    animation-delay: 1.3s;
    border-color: rgba(0, 180, 216, 0.2);
}

.mobile-water-ripple-3 {
    inset: -16px;
    border-radius: 55px;
    animation-delay: 2.6s;
    border-color: rgba(0, 180, 216, 0.1);
}

@keyframes mobileWaterRipple {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.02);
        opacity: 1;
    }
}

/* Mobile island sand shape */
.mobile-island-shape {
    position: absolute;
    inset: 0;
    overflow: visible;
    filter: drop-shadow(0 12px 40px rgba(0, 60, 80, 0.25))
            drop-shadow(0 4px 12px rgba(139, 105, 20, 0.15));
}

.mobile-island-svg {
    position: absolute;
    inset: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
}

.mobile-island-body {
    /* Shadow handled by parent filter */
}

.mobile-sand-texture {
    position: absolute;
    inset: 5px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.04;
    mix-blend-mode: multiply;
    border-radius: 35px;
    pointer-events: none;
}

/* Foam ring around island edge */
.mobile-foam-ring {
    position: absolute;
    inset: -3px;
    border: 3px solid transparent;
    border-radius: 40px;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0.2) 100%
    ) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: mobileFoamPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes mobileFoamPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

/* Decorative palm tree */
.mobile-palm-decor {
    position: absolute;
    top: -25px;
    right: 25px;
    width: 50px;
    height: 65px;
    z-index: 10;
    pointer-events: none;
    animation: mobilePalmSway 4s ease-in-out infinite;
    transform-origin: bottom center;
}

.mobile-palm-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(2px 3px 4px rgba(0,0,0,0.2));
}

@keyframes mobilePalmSway {
    0%, 100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

.mobile-panel-content {
    position: relative;
    padding: 28px 24px;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    z-index: 5;
}

.mobile-link {
    display: block;
    padding: 18px 16px;
    font-size: 18px;
    font-weight: 600;
    color: #3D2914;
    text-decoration: none;
    border-bottom: 1px solid rgba(139, 105, 20, 0.15);
    transition: all 0.3s ease;
    border-radius: 12px;
    margin: 4px 0;
    position: relative;
}

.mobile-link:hover {
    color: #8B6914;
    background: rgba(139, 105, 20, 0.08);
    padding-left: 24px;
}

.mobile-link.active {
    color: #8B6914;
    font-weight: 700;
    background: rgba(139, 105, 20, 0.1);
}

.mobile-link.active::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #c4a870, #8B6914);
    border-radius: 2px;
}

.mobile-link:last-of-type {
    border-bottom: none;
}

.mobile-section {
    margin: 16px 0;
    padding-left: 16px;
    border-left: 3px solid #c4a870;
}

.mobile-section .mobile-link {
    font-size: 15px;
    padding: 12px 0;
}

.mobile-section-title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8B6914;
    margin-bottom: 8px;
}

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 18px 32px;
    background: linear-gradient(135deg,
        #8B6914 0%,
        #A67C00 50%,
        #c4a870 100%);
    color: white;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow:
        0 8px 24px rgba(139, 105, 20, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.mobile-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.mobile-cta:hover::before {
    left: 100%;
}

.mobile-cta:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(139, 105, 20, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.3);
    color: white;
}

.mobile-cta svg {
    width: 20px;
    height: 20px;
}

/* =====================================================
   PAGE OVERLAY (Water darkens)
   ===================================================== */
.island-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 60, 80, 0.4) 0%,
        rgba(0, 40, 60, 0.5) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: calc(var(--z-modal) - 1);
    pointer-events: none;
}

.island-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* =====================================================
   RESPONSIVE - Tablet
   ===================================================== */
@media (max-width: 1200px) {
    .island-nav {
        max-width: 97%;
    }

    .island-link {
        padding: 12px 16px;
        font-size: 15px;
    }

    .island-cta span {
        display: none;
    }

    .island-cta {
        padding: 14px 20px;
    }
}

/* =====================================================
   RESPONSIVE - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .island-header {
        padding: 12px 16px;
    }

    :root {
        --island-height: 64px;
        --island-float-amplitude: 1.5px;
    }

    .island-links {
        display: none;
    }

    .island-cta {
        display: none;
    }

    .island-menu-btn {
        display: flex;
    }

    .island-water-zone {
        display: none;
    }

    .island-foam {
        display: none;
    }

    .island-nav.scrolled {
        max-width: 200px;
    }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    .island-nav {
        animation: none;
    }

    .water-ambient-ripple,
    .scroll-wave,
    .island-water-shadow,
    .foam-ring,
    .foam-bubbles span,
    .sand-shimmer,
    .hover-ripple {
        animation: none;
    }
}

/* =====================================================
   LEGACY SUPPORT - Hide old navbar elements
   ===================================================== */
.liquid-header,
.liquid-island,
.island-blob,
.buoy-header,
.buoy-nav,
.buoy-water-effect,
.buoy-surface,
.buoy-content,
.buoy-links,
.buoy-cta,
.buoy-mobile-panel,
.buoy-overlay,
.mobile-drawer,
.header-inner,
.nav:not(.island-nav),
.nav-links,
.mobile-menu-btn:not(.island-menu-btn),
.mobile-nav {
    display: none !important;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-weight: 600;
    font-size: var(--text-base);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-cta);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 162, 97, 0.5);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--charcoal);
}

.btn-ocean {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.4);
}

.btn-ocean:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.5);
    color: var(--white);
}

.btn-lg {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-lg);
}

.btn-sm {
    padding: var(--space-2) var(--space-5);
    font-size: var(--text-sm);
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* =====================================================
   CINEMATIC HERO SECTION - Premium Caustic Water
   Real swimming-pool style with sharp light refraction
   ===================================================== */

/* Mediterranean Pool Color Palette */
:root {
    /* Water colors - bright, crystal clear turquoise */
    --water-shallow: #5DD3D9;
    --water-mid: #2EC4B6;
    --water-deep: #0A8A8A;
    --water-deepest: #066;

    /* Caustic colors - crisp white lines */
    --caustic-bright: rgba(255, 255, 255, 0.95);
    --caustic-medium: rgba(255, 255, 255, 0.7);
    --caustic-soft: rgba(255, 255, 255, 0.4);

    /* Jetski */
    --jetski-red: #DC143C;
    --jetski-red-dark: #B91C3C;
}

/* =====================================================
   PERSISTENT WATER BACKGROUND
   The water effect stays fixed behind all content
   ===================================================== */
.water-background-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    /* Base gradient - Mediterranean turquoise */
    background: radial-gradient(
        ellipse 120% 100% at 50% 30%,
        #5DD3D9 0%,
        #2EC4B6 30%,
        #14A89F 50%,
        #0A8A8A 70%,
        #067070 100%
    );
}

/* Hero Container - now just for hero content */
.cinematic-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-scene {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* =====================================================
   CONTENT SECTIONS AS CARDS
   All sections float above the water background
   ===================================================== */
.content-wrapper {
    position: relative;
    z-index: 20;
}

/* Card-style sections */
.section-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    /* Increased bottom margin for rope visibility */
    margin: 0 auto 50px auto;
    max-width: 1400px;
    padding: var(--space-12) var(--space-8);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.08),
        0 12px 48px rgba(0, 0, 0, 0.05);
    /* Side spacing to show water background */
    width: calc(100% - 80px);
    position: relative;
}

/* Left rope connecting cards */
.section-card:not(.trust-bar):not(.footer)::before {
    content: '';
    position: absolute;
    top: -55px;
    left: 80px;
    width: 10px;
    height: 60px;
    /* Nautical rope texture - braided look */
    background:
        repeating-linear-gradient(
            180deg,
            #A08060 0px,
            #8B7355 3px,
            #6B5344 6px,
            #7A6349 9px,
            #A08060 12px
        );
    border-radius: 5px;
    box-shadow:
        3px 4px 8px rgba(0,0,0,0.35),
        inset 2px 0 3px rgba(255,255,255,0.2),
        inset -1px 0 2px rgba(0,0,0,0.2);
    z-index: 100;
    /* Slight angle for realism */
    transform: rotate(-2deg);
}

/* Right rope connecting cards */
.section-card:not(.trust-bar):not(.footer)::after {
    content: '';
    position: absolute;
    top: -55px;
    right: 80px;
    width: 10px;
    height: 60px;
    /* Nautical rope texture - braided look */
    background:
        repeating-linear-gradient(
            180deg,
            #A08060 0px,
            #8B7355 3px,
            #6B5344 6px,
            #7A6349 9px,
            #A08060 12px
        );
    border-radius: 5px;
    box-shadow:
        3px 4px 8px rgba(0,0,0,0.35),
        inset 2px 0 3px rgba(255,255,255,0.2),
        inset -1px 0 2px rgba(0,0,0,0.2);
    z-index: 100;
    /* Slight angle for realism */
    transform: rotate(2deg);
}

/* First card after hero - slight overlap */
.section-card:first-child {
    margin-top: -80px;
    position: relative;
    z-index: 15;
}

/* No-ropes modifier - hide rope decorations on specific sections */
.section-card.no-ropes::before,
.section-card.no-ropes::after {
    display: none !important;
}

/* Trust bar as REALISTIC BANANA BOAT shape */
.trust-bar.section-card {
    /* Position below hero - connects to jetski rope */
    margin-top: var(--space-12);
    /* Realistic banana yellow with shading */
    background: linear-gradient(
        180deg,
        #FFE74C 0%,
        #FFD93D 15%,
        #FFC300 40%,
        #FFB700 60%,
        #E6A200 85%,
        #CC8F00 100%
    );
    /* Banana curved shape - elongated oval with tapered ends */
    border-radius: 50% / 45%;
    padding: var(--space-5) var(--space-16);
    max-width: 900px;
    min-height: 90px;
    /* Banana boat 3D effect */
    box-shadow:
        0 12px 40px rgba(255, 183, 0, 0.5),
        0 25px 70px rgba(0, 0, 0, 0.2),
        inset 0 -15px 30px rgba(180, 130, 0, 0.3),
        inset 0 15px 20px rgba(255, 255, 200, 0.5),
        inset 8px 0 15px rgba(255, 255, 200, 0.3),
        inset -8px 0 15px rgba(180, 130, 0, 0.2);
    /* 3D perspective - using transform3d for GPU acceleration */
    transform: perspective(600px) rotateX(8deg) translateZ(0);
    border: none;
    position: relative;
    overflow: visible;
    z-index: 25;
    /* Optimize for scroll tracking */
    will-change: transform;
}

/* Hide CSS rope pseudo-elements - using SVG rope system instead */
.trust-bar.section-card::before,
.trust-bar.section-card::after {
    display: none;
}

/* Handles on the banana boat (black grips where ropes attach) */
.trust-bar.section-card .container {
    position: relative;
}

.trust-bar.section-card .container::before,
.trust-bar.section-card .container::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 35px;
    background: linear-gradient(90deg, #1a1a1a 0%, #3a3a3a 50%, #1a1a1a 100%);
    border-radius: 4px;
    box-shadow:
        inset 0 2px 4px rgba(255,255,255,0.15),
        inset 0 -2px 4px rgba(0,0,0,0.3),
        0 3px 6px rgba(0,0,0,0.4);
    z-index: 60;
}

.trust-bar.section-card .container::before {
    left: 35px;
}

.trust-bar.section-card .container::after {
    right: 35px;
}

/* Front towing ring on banana boat */
.trust-bar.section-card .trust-items::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 20px;
    border: 4px solid #555;
    border-radius: 50%;
    background: transparent;
    box-shadow:
        inset 0 2px 4px rgba(0,0,0,0.4),
        0 2px 4px rgba(0,0,0,0.3);
}

/* Metal sheen on towing ring */
.trust-bar.section-card .trust-items::after {
    content: '';
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 14px;
    border: 2px solid #888;
    border-radius: 50%;
    background: transparent;
}

/* Activities section as card */
.activities-section.section-card {
    background: rgba(255, 255, 255, 0.92);
}

/* Features section as card */
.features-section.section-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 249, 250, 0.95) 100%
    );
}

/* =====================================================
   WATER FLOATING SECTIONS
   Transparent sections with cards floating on water
   ===================================================== */

.water-floating-section {
    background: transparent;
    padding: var(--space-16) 0;
    position: relative;
}

.water-floating-section .container {
    position: relative;
    z-index: 1;
}

/* Activity/Feature cards in water-floating sections */
.water-floating-section .activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.water-floating-section .activity-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.water-floating-section .activity-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Features grid in water-floating section */
.water-floating-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: 1200px;
    margin: 0 auto;
}

.water-floating-section .feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.water-floating-section .feature-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 14px 42px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Section subtitle for water-floating sections */
.water-section-subtitle {
    text-align: center;
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto var(--space-10);
}

/* =====================================================
   ISLAND TITLE HEADERS
   Sandy island-style section titles
   ===================================================== */

.island-title-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: 70px;
    margin: 0 auto var(--space-4);
}

.island-title-wrapper.island-title-wide {
    width: 480px;
}

/* Island with subtitle - larger to fit both title and subtitle */
.island-title-wrapper.island-title-with-subtitle {
    width: 440px;
    height: 100px;
}

.island-title-wrapper.island-title-wide.island-title-with-subtitle {
    width: 580px;
    height: 105px;
}

.island-title-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.island-title-body {
    /* Sand texture via CSS */
}

.island-title-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 8px 16px;
    text-align: center;
}

.island-title-text {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: #3D2914;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.5),
        0 -1px 0 rgba(0, 0, 0, 0.1);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Subtitle inside island */
.island-subtitle-text {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 400;
    color: #ffffff;
    margin: 4px 0 0 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    line-height: 1.2;
}

/* Subtle floating animation for island titles */
@keyframes islandTitleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.island-title-wrapper {
    animation: islandTitleFloat 4s ease-in-out infinite;
}

/* Water-floating section responsive styles */
@media (max-width: 1024px) {
    .water-floating-section .activities-grid,
    .water-floating-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .island-title-wrapper {
        width: 280px;
        height: 60px;
    }

    .island-title-wrapper.island-title-wide {
        width: 400px;
    }

    .island-title-wrapper.island-title-with-subtitle {
        width: 380px;
        height: 85px;
    }

    .island-title-wrapper.island-title-wide.island-title-with-subtitle {
        width: 500px;
        height: 90px;
    }

    .island-title-text {
        font-size: var(--text-xl);
    }

    .island-subtitle-text {
        font-size: var(--text-xs);
    }
}

@media (max-width: 768px) {
    .water-floating-section {
        padding: var(--space-12) var(--space-4);
    }

    .water-floating-section .activities-grid,
    .water-floating-section .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .island-title-wrapper {
        width: 240px;
        height: 55px;
    }

    .island-title-wrapper.island-title-wide {
        width: 340px;
    }

    .island-title-wrapper.island-title-with-subtitle {
        width: 320px;
        height: 80px;
    }

    .island-title-wrapper.island-title-wide.island-title-with-subtitle {
        width: 380px;
        height: 85px;
    }

    .island-subtitle-text {
        font-size: 10px;
        margin-top: 2px;
    }

    .island-title-text {
        font-size: var(--text-lg);
    }

    .water-section-subtitle {
        font-size: var(--text-base);
        padding: 0 var(--space-4);
    }

    .water-floating-section .feature-card {
        padding: var(--space-6);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .island-title-wrapper {
        animation: none;
    }
}

/* Mobile adjustments for cards */
@media (max-width: 768px) {
    .section-card {
        width: calc(100% - 32px);
        margin-left: auto;
        margin-right: auto;
        border-radius: 20px;
        padding: var(--space-8) var(--space-4);
    }

    .section-card:first-child {
        margin-top: -40px;
    }
}

/* =====================================================
   WEBGL CAUSTIC CANVAS
   Sharp Voronoi-based light refraction
   ===================================================== */

.water-shader-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    /* Ensure crisp rendering */
    image-rendering: auto;
}

/* =====================================================
   CSS FALLBACK - Sharp Caustic Water
   Used when WebGL is not available
   Uses SVG-based patterns for crisp edges
   ===================================================== */

/* Hide fallback when WebGL is active */
.water-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: none;
}

.water-css-fallback .water-fallback {
    display: block;
}

/* Background base */
.scene-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Base water - clean turquoise gradient */
.water-layer {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 100% 80% at 50% 35%,
        var(--water-shallow) 0%,
        var(--water-mid) 40%,
        var(--water-deep) 70%,
        var(--water-deepest) 100%
    );
}

/* Sun highlight */
.water-layer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 60% 40% at 50% 25%,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 60%
    );
}

/* Hide legacy elements */
.beach-layer,
.shoreline-curve,
.foam-line {
    display: none;
}

/* =====================================================
   SVG CAUSTIC PATTERN (CSS Fallback)
   Sharp polygonal light refraction lines
   ===================================================== */

.water-texture {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}

/* Only show when fallback is active */
.water-css-fallback .water-texture {
    opacity: 1;
}

/* Inline SVG caustic pattern via CSS */
.water-texture::before {
    content: '';
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cdefs%3E%3Cfilter id='glow'%3E%3CfeGaussianBlur stdDeviation='1' result='blur'/%3E%3CfeMerge%3E%3CfeMergeNode in='blur'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Cg fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='1.5' filter='url(%23glow)'%3E%3Cpath d='M20,80 Q60,40 100,70 T180,50 T260,80 T340,60 T400,90'/%3E%3Cpath d='M0,140 Q50,100 100,130 T200,110 T300,140 T380,120'/%3E%3Cpath d='M30,200 Q80,160 140,190 T240,170 T340,200 T400,180'/%3E%3Cpath d='M0,260 Q60,220 120,250 T220,230 T320,260 T400,240'/%3E%3Cpath d='M20,320 Q70,280 130,310 T230,290 T330,320 T400,300'/%3E%3Cpath d='M0,380 Q50,340 110,370 T210,350 T310,380 T400,360'/%3E%3C/g%3E%3Cg fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='1'%3E%3Cpath d='M50,50 Q100,80 150,40 T250,70 T350,30'/%3E%3Cpath d='M0,110 Q70,140 140,100 T280,130 T400,90'/%3E%3Cpath d='M40,170 Q110,200 180,160 T320,190 T400,150'/%3E%3Cpath d='M0,230 Q80,260 160,220 T300,250 T400,210'/%3E%3Cpath d='M30,290 Q100,320 170,280 T310,310 T400,270'/%3E%3Cpath d='M0,350 Q90,380 180,340 T340,370 T400,330'/%3E%3C/g%3E%3Ccircle cx='80' cy='90' r='15' fill='rgba(255,255,255,0.5)'/%3E%3Ccircle cx='220' cy='60' r='10' fill='rgba(255,255,255,0.4)'/%3E%3Ccircle cx='320' cy='120' r='12' fill='rgba(255,255,255,0.45)'/%3E%3Ccircle cx='150' cy='180' r='8' fill='rgba(255,255,255,0.35)'/%3E%3Ccircle cx='280' cy='220' r='14' fill='rgba(255,255,255,0.5)'/%3E%3Ccircle cx='60' cy='280' r='11' fill='rgba(255,255,255,0.4)'/%3E%3Ccircle cx='340' cy='300' r='9' fill='rgba(255,255,255,0.35)'/%3E%3Ccircle cx='180' cy='340' r='13' fill='rgba(255,255,255,0.45)'/%3E%3C/svg%3E");
    background-size: 400px 400px;
    animation: causticShift 30s linear infinite;
}

.water-texture::after {
    content: '';
    position: absolute;
    inset: -30%;
    width: 160%;
    height: 160%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2'%3E%3Cpath d='M10,50 Q50,20 90,45 T170,25 T250,50 T300,35'/%3E%3Cpath d='M0,100 Q40,70 80,95 T160,75 T240,100 T300,85'/%3E%3Cpath d='M20,150 Q60,120 100,145 T180,125 T260,150 T300,135'/%3E%3Cpath d='M0,200 Q45,170 90,195 T175,175 T260,200 T300,185'/%3E%3Cpath d='M15,250 Q55,220 95,245 T175,225 T255,250 T300,235'/%3E%3C/g%3E%3Ccircle cx='70' cy='70' r='20' fill='rgba(255,255,255,0.6)'/%3E%3Ccircle cx='180' cy='45' r='12' fill='rgba(255,255,255,0.5)'/%3E%3Ccircle cx='250' cy='100' r='16' fill='rgba(255,255,255,0.55)'/%3E%3Ccircle cx='120' cy='150' r='10' fill='rgba(255,255,255,0.4)'/%3E%3Ccircle cx='220' cy='180' r='18' fill='rgba(255,255,255,0.6)'/%3E%3Ccircle cx='50' cy='220' r='14' fill='rgba(255,255,255,0.5)'/%3E%3Ccircle cx='280' cy='250' r='11' fill='rgba(255,255,255,0.45)'/%3E%3C/svg%3E");
    background-size: 300px 300px;
    animation: causticShift 25s linear infinite reverse;
}

@keyframes causticShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, -100px); }
}

/* =====================================================
   HIDE BLURRY RIPPLES IN FALLBACK
   The SVG caustics are enough
   ===================================================== */

.water-ripples {
    display: none;
}

.water-css-fallback .water-ripples {
    display: none;
}

/* Wave motion - simplified */
.wave-motion {
    display: none;
}

.ripple-5 {
    width: 220px;
    height: 6px;
    top: 75%;
    left: 45%;
    transform: rotate(-3deg);
    animation-delay: 3s;
}

@keyframes softRipple {
    0%, 100% {
        opacity: 0;
        transform: translateX(-20px) scaleX(0.8);
    }
    20% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
        transform: translateX(0) scaleX(1);
    }
    80% {
        opacity: 0.5;
    }
}

/* =====================================================
   FOAM - Hidden for clean pool look
   ===================================================== */

.water-foam {
    display: none;
}

.foam-patch,
.foam-detail {
    display: none;
}

/* =====================================================
   GENTLE WAVE MOTION
   Subtle surface movement
   ===================================================== */

.wave-motion {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.4;
}

.wave-motion::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 80px,
            rgba(255, 255, 255, 0.03) 82px,
            transparent 84px,
            transparent 160px
        );
    animation: waveShift 12s linear infinite;
}

.wave-motion::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            180deg,
            transparent 0px,
            transparent 60px,
            rgba(255, 255, 255, 0.02) 62px,
            transparent 64px,
            transparent 120px
        );
    animation: waveShift 15s linear infinite reverse;
}

@keyframes waveShift {
    0% { transform: translateX(0); }
    100% { transform: translateX(160px); }
}

/* =====================================================
   FALLBACK STATE STYLES
   ===================================================== */

/* When WebGL fails, enhance CSS fallback */
.water-css-fallback .water-texture {
    opacity: 1;
}

.water-css-fallback .water-ripples {
    display: none; /* Keep hidden - SVG caustics are better */
}

/* Reduced motion preference */
.water-reduced-motion .water-texture::before,
.water-reduced-motion .water-texture::after,
.water-reduced-motion .water-ripples .ripple,
.water-reduced-motion .wave-motion::before,
.water-reduced-motion .wave-motion::after,
.water-reduced-motion .water-layer::before,
.water-reduced-motion .water-layer::after {
    animation: none;
}

/* =====================================================
   WATER FALLBACK VISIBILITY
   ===================================================== */

/* Hide fallback when WebGL canvas is active */
.water-shader-canvas ~ .water-fallback {
    opacity: 0;
    pointer-events: none;
}

/* Show fallback when flagged */
.water-fallback.active,
.water-css-fallback .water-fallback {
    display: block;
    opacity: 1;
}

/* =====================================================
   DEPTH VIGNETTE OVERLAY - DISABLED
   (Removed to prevent visible line between hero and content)
   ===================================================== */

/* =====================================================
   TOW ROPE SYSTEM
   Realistic rope connecting jetski to banana boat

   Z-INDEX LAYERING (bottom to top):
   1. Water background (z-index: 0)
   4. Jetski container (z-index: 10)
   5. Content wrapper (z-index: 20)
   6. Banana boat / trust bar (z-index: 25)
   7. Tow rope SVG (z-index: 30) - ON TOP of banana boat
   ===================================================== */

.tow-rope-system {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 250; /* Below navbar (--z-fixed: 300) */
    pointer-events: none;
    overflow: visible;
}

/* Rope paths - NO CSS transitions, all updates via JS */
.tow-rope,
.tow-rope-shadow,
.tow-rope-braid {
    /* No transitions - instant updates only */
    /* will-change hints browser to optimize these elements */
    will-change: d;
}

/* Knot groups also update frequently */
#knotHook,
#knotBananaLeft,
#knotBananaRight {
    will-change: transform;
}

/* Water ripples where rope touches water */
.rope-ripple {
    animation: rippleExpand 2.5s ease-out infinite;
    transform-origin: center;
}

.rope-water-interaction ellipse:nth-child(2),
.rope-water-interaction ellipse:nth-child(4) {
    animation-delay: 1.25s;
}

@keyframes rippleExpand {
    0% {
        transform: scale(0.7);
        opacity: 0.5;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Tow hook connection styling */
.tow-hook-point {
    animation: hookFloat 3s ease-in-out infinite;
}

@keyframes hookFloat {
    0%, 100% {
        transform: translate(200px, 15px) translateY(0);
    }
    50% {
        transform: translate(200px, 15px) translateY(-4px);
    }
}

/* Banana towing ring */
.banana-tow-ring {
    animation: ringFloat 2.5s ease-in-out infinite;
}

@keyframes ringFloat {
    0%, 100% {
        transform: translate(200px, 285px) rotate(-1deg);
    }
    50% {
        transform: translate(200px, 285px) rotate(1deg);
    }
}

/* =====================================================
   JETSKI ON WATER
   ===================================================== */

/* Jetski Container */
.jetski-container {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    will-change: transform;
}

.jetski {
    position: relative;
    width: 130px;
    height: auto;
    /* animation removed - jetski stays fixed for rope attachment */
}

@keyframes jetskiFloat {
    0%, 100% {
        transform: translateY(0) rotate(-0.5deg);
    }
    50% {
        transform: translateY(-6px) rotate(0.5deg);
    }
}

.jetski-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 50, 80, 0.5));
}

/* Water Shadow/Reflection under jetski */
.jetski-shadow {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 50px;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 60, 100, 0.4) 0%,
        rgba(0, 80, 120, 0.2) 40%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(8px);
    /* animation removed - shadow stays fixed with jetski */
}

@keyframes shadowFloat {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: 0.4;
    }
}

/* Water displacement around jetski */
.jetski-displacement {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 30%,
        transparent 60%
    );
    pointer-events: none;
    animation: displacementPulse 2s ease-in-out infinite;
}

@keyframes displacementPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.7;
    }
}

/* Idle ripples from jetski */
.jetski-idle-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: idleRipple 3s ease-out infinite;
}

.jetski-idle-ripple:nth-child(2) {
    animation-delay: 1s;
}

.jetski-idle-ripple:nth-child(3) {
    animation-delay: 2s;
}

@keyframes idleRipple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
        border-width: 2px;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
        border-width: 0.5px;
    }
}

/* =====================================================
   WAKE TRAIL & SPRAY (Scroll-activated)
   ===================================================== */

/* Wake Trail */
.jetski-wake {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    opacity: 0;
    z-index: 9;
    will-change: opacity;
}

.wake-trail {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.85) 20%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.3) 75%,
        transparent 100%
    );
    border-radius: 4px;
    filter: blur(1px);
    will-change: height;
}

/* V-shaped wake spray */
.wake-spray {
    position: absolute;
    top: 20px;
    width: 100px;
    height: 0;
    opacity: 0;
    will-change: height, opacity;
}

.wake-spray-left {
    right: 50%;
    margin-right: 4px;
    transform-origin: top right;
    transform: rotate(-25deg);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.5) 40%,
        rgba(255, 255, 255, 0.2) 70%,
        transparent 100%
    );
    border-radius: 0 0 0 80%;
    filter: blur(2px);
}

.wake-spray-right {
    left: 50%;
    margin-left: 4px;
    transform-origin: top left;
    transform: rotate(25deg);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.5) 40%,
        rgba(255, 255, 255, 0.2) 70%,
        transparent 100%
    );
    border-radius: 0 0 80% 0;
    filter: blur(2px);
}

/* Wake ripples */
.wake-ripple {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    opacity: 0;
}

/* Splash Particles */
.splash-particles {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 100px;
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
}

.splash-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
    will-change: transform, opacity;
}

/* Particle positions - spread around jetski */
.splash-particles span:nth-child(1) { left: 10%; top: 40%; }
.splash-particles span:nth-child(2) { left: 25%; top: 20%; }
.splash-particles span:nth-child(3) { left: 40%; top: 10%; }
.splash-particles span:nth-child(4) { left: 60%; top: 10%; }
.splash-particles span:nth-child(5) { left: 75%; top: 20%; }
.splash-particles span:nth-child(6) { left: 90%; top: 40%; }
.splash-particles span:nth-child(7) { left: 20%; top: 55%; }
.splash-particles span:nth-child(8) { left: 80%; top: 55%; }

/* =====================================================
   TEXT OVERLAY
   ===================================================== */

.cinematic-content {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 20;
    color: white;
    will-change: opacity, transform;
    width: 90%;
    max-width: 900px;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Headline - 2-line intentional layout */
.hero-headline {
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
    line-height: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15em;
}

/* Top line - smaller, elegant intro */
.hero-line-top {
    display: block;
    font-size: clamp(1.6rem, 4.5vw, 2.8rem);
    letter-spacing: 0.2em;
    font-weight: 600;
    /* Lighter sand gradient for contrast */
    color: var(--hero-title-color-2, #caa882);
    background: linear-gradient(180deg,
        var(--hero-title-color-1, #d4b896) 0%,
        var(--hero-title-color-2, #caa882) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bottom line - large, dominant word */
.hero-line-bottom {
    display: block;
    font-size: clamp(2.6rem, 8.5vw, 6rem);
    letter-spacing: 0.04em;
    font-weight: 800;
    /* Full sand gradient for impact */
    /* Debug: Press 'D' then Hero tab to adjust colors */
    color: var(--hero-title-color-3, #c9a87a);
    background: linear-gradient(180deg,
        var(--hero-title-color-1, #d4b896) 0%,
        var(--hero-title-color-2, #caa882) 25%,
        var(--hero-title-color-3, #c9a87a) 50%,
        var(--hero-title-color-4, #b8935e) 75%,
        var(--hero-title-color-5, #a07840) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 2.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.05em;
}

/* CTA Button with Water Ripple Effect */
.hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 3rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: white;
    background: linear-gradient(135deg, #DC143C 0%, #B91C3C 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    box-shadow:
        0 4px 20px rgba(220, 20, 60, 0.5),
        0 8px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 8px 30px rgba(220, 20, 60, 0.6),
        0 15px 50px rgba(0, 0, 0, 0.25);
    color: white;
}

.hero-cta:active {
    transform: translateY(-2px) scale(1.01);
}

/* Ripple effect on hover */
.cta-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-cta:hover .cta-ripple {
    width: 350px;
    height: 350px;
}

.cta-text {
    position: relative;
    z-index: 1;
}

/* Shine effect on CTA */
.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 20;
    color: #c4a870;
    opacity: 0.9;
    will-change: opacity, transform;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, #c4a870 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.15);
    }
}

/* =====================================================
   OCEAN TRANSITION OVERLAY
   ===================================================== */

.ocean-transition {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(248, 249, 250, 0.3) 30%,
        rgba(248, 249, 250, 0.7) 60%,
        rgba(248, 249, 250, 0.95) 85%,
        var(--off-white) 100%
    );
    z-index: 25;
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
}

/* =====================================================
   Z-INDEX LAYER MAP
   Layer 1:  .scene-background (water base)
   Layer 2:  .wave-motion
   Layer 3:  .water-texture (caustics)
   Layer 4:  .water-ripples
   Layer 5:  .water-foam
   Layer 9:  .jetski-wake
   Layer 10: .jetski-container
   Layer 20: .hero-content + .scroll-indicator
   Layer 25: .ocean-transition
   ===================================================== */

/* =====================================================
   RESPONSIVE - MOBILE
   ===================================================== */

@media (max-width: 768px) {
    .cinematic-hero {
        height: 100vh;
    }

    .jetski {
        width: 100px;
    }

    .jetski-container {
        /* Position in viewport: use vh units instead of % of tall container */
        bottom: auto;
        top: 65vh;
    }

    /* Tow rope system - viewport fixed on mobile too */
    .tow-rope-system {
        /* Already position: fixed, full viewport - no changes needed */
    }

    .tow-rope {
        stroke-width: 5px;
    }

    .hero-headline {
        gap: 0.1em;
        margin-bottom: 1rem;
    }

    .hero-line-top {
        font-size: clamp(1.2rem, 3.5vw, 1.8rem);
        letter-spacing: 0.15em;
    }

    .hero-line-bottom {
        font-size: clamp(2rem, 7vw, 3.5rem);
        letter-spacing: 0.02em;
    }

    .hero-subheadline {
        font-size: 1.05rem;
    }

    .hero-cta {
        padding: 1rem 2.2rem;
        font-size: 0.9rem;
    }

    .cinematic-content {
        top: 12%;
        padding: 0 var(--space-4);
    }

    /* Simplified effects on mobile */
    .wake-spray-left,
    .wake-spray-right {
        width: 60px;
    }

    .wake-trail {
        width: 5px;
    }

    /* Reduce foam patches */
    .foam-patch:nth-child(n+4) {
        display: none;
    }

    /* Reduce ripples */
    .ripple:nth-child(n+4) {
        display: none;
    }

    /* Reduce particles */
    .splash-particles span:nth-child(n+6) {
        display: none;
    }
}

@media (max-width: 480px) {
    .cinematic-hero {
        height: 100vh;
    }

    .jetski {
        width: 80px;
        animation-duration: 4s;
    }

    .jetski-container {
        /* Position in viewport: use vh units instead of % of tall container */
        bottom: auto;
        top: 60vh;
    }

    .jetski-shadow {
        width: 80px;
        height: 35px;
    }

    .hero-headline {
        gap: 0.08em;
        margin-bottom: 0.8rem;
    }

    .hero-line-top {
        font-size: clamp(1rem, 3vw, 1.4rem);
        letter-spacing: 0.1em;
    }

    .hero-line-bottom {
        font-size: clamp(1.6rem, 6vw, 2.8rem);
        letter-spacing: 0.01em;
    }

    .hero-subheadline {
        font-size: 0.95rem;
    }

    .cinematic-content {
        top: 10%;
        padding: 0 var(--space-3);
    }

    .scroll-indicator {
        bottom: 25px;
    }

    .scroll-line {
        height: 35px;
    }

    /* Further simplify mobile */
    .foam-detail {
        display: none;
    }

    .water-texture::after {
        display: none;
    }
}

/* =====================================================
   REDUCED MOTION PREFERENCE
   ===================================================== */

@media (prefers-reduced-motion: reduce) {
    .water-texture,
    .water-texture::before,
    .water-texture::after {
        animation: none;
    }

    .water-layer::before {
        animation: none;
    }

    .wave-motion {
        animation: none;
    }

    .foam-patch {
        animation: none;
    }

    .foam-detail {
        animation: none;
    }

    .ripple {
        animation: none;
    }

    .jetski {
        animation: none;
    }

    .jetski-shadow {
        animation: none;
    }

    .jetski-displacement {
        animation: none;
    }

    .jetski-idle-ripple {
        animation: none;
    }

    .scroll-line {
        animation: none;
    }
}

/* =====================================================
   ORIGINAL HERO SECTION (kept for fallback)
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero-overlay);
    z-index: 0;
}

.hero-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    color: var(--white);
    padding: var(--space-8);
    max-width: 900px;
    width: 100%;
    pointer-events: none;
}

.hero-title {
    font-size: var(--text-7xl);
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-6);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: var(--text-xl);
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-2);
    opacity: 0.95;
}

.hero-location {
    font-size: var(--text-lg);
    opacity: 0.8;
    margin-bottom: var(--space-10);
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    pointer-events: auto;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-10);
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* =====================================================
   TRUST BAR (BANANA BOAT STYLE)
   ===================================================== */
.trust-bar {
    position: relative;
    z-index: 30;
    background: transparent;
    padding: var(--space-6) 0;
    border-bottom: none;
}

.trust-bar .container {
    position: relative;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: var(--space-12);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-icon {
    margin-bottom: var(--space-1);
    /* No background - let Lottie animations show cleanly */
    background: none;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-value {
    font-size: var(--text-lg);
    font-weight: 800;
    color: #1a1a1a;
    text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}

.trust-label {
    font-size: var(--text-xs);
    color: #4a3c00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
    color: var(--charcoal);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: var(--space-4) auto 0;
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--medium-gray);
}

/* =====================================================
   ACTIVITY CARDS
   ===================================================== */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.activity-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.activity-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.activity-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.activity-card:hover .activity-card-image img {
    transform: scale(1.1);
}

.activity-card-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--warm-sand);
    color: var(--white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
}

.activity-card-content {
    padding: var(--space-6);
}

.activity-card-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.activity-card-description {
    color: var(--medium-gray);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.activity-card-meta {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    color: var(--medium-gray);
}

.activity-card-meta span {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.activity-card-price {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--ocean-blue);
    margin-bottom: var(--space-4);
}

.activity-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 600;
    color: var(--ocean-blue);
}

.activity-card-link:hover {
    gap: var(--space-3);
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.feature-card {
    text-align: center;
    padding: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.feature-card:hover {
    background: var(--seafoam-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
}

.feature-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.feature-description {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-section {
    background: var(--off-white);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-stars {
    color: var(--warm-sand);
    font-size: var(--text-xl);
    margin-bottom: var(--space-6);
}

.testimonial-text {
    font-size: var(--text-xl);
    line-height: 1.8;
    color: var(--charcoal);
    font-style: italic;
    margin-bottom: var(--space-8);
    /* Fixed height to prevent layout shifts when cycling through reviews */
    min-height: 180px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: var(--text-xl);
}

.testimonial-info h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-1);
}

.testimonial-info p {
    font-size: var(--text-sm);
    color: var(--medium-gray);
    margin: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-8);
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--light-gray);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dot.active {
    background: var(--ocean-blue);
    width: 32px;
}

/* =====================================================
   VIDEO SECTION
   ===================================================== */
.video-section {
    background: var(--charcoal);
    padding: var(--space-20) 0;
}

.video-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.video-placeholder {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--ocean-blue) 100%);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-3xl);
    color: var(--ocean-blue);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-xl);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-caption {
    text-align: center;
    color: var(--white);
    margin-top: var(--space-6);
    opacity: 0.8;
}

/* Transparent video section - floating on water */
.video-section-transparent {
    background: transparent;
    padding: var(--space-12) 0;
}

.video-section-transparent .video-caption {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Transparent testimonials section - floating on water */
.testimonials-section-transparent {
    background: transparent;
    padding: var(--space-12) 0;
}

.testimonials-section-transparent .testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.testimonials-section-transparent .testimonial-stars {
    color: var(--sand-gold);
}

.testimonials-section-transparent .testimonial-text {
    color: var(--charcoal);
}

.testimonials-section-transparent .testimonial-author h4 {
    color: var(--charcoal);
}

.testimonials-section-transparent .testimonial-author p {
    color: var(--gray);
}

.testimonials-section-transparent .testimonial-dots {
    margin-top: var(--space-6);
}

.testimonials-section-transparent .testimonial-dot {
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.testimonials-section-transparent .testimonial-dot.active {
    background: var(--white);
    border-color: var(--white);
}

.testimonials-section-transparent .btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--ocean-blue);
    border: none;
}

.testimonials-section-transparent .btn-secondary:hover {
    background: var(--white);
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
    background: var(--gradient-primary);
    padding: var(--space-16) 0;
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    font-size: var(--text-4xl);
    color: var(--white);
    margin-bottom: var(--space-4);
}

.cta-banner p {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn {
    margin-bottom: var(--space-6);
}

.cta-contact {
    font-size: var(--text-lg);
}

.cta-contact a {
    color: var(--white);
    font-weight: 600;
}

/* =====================================================
   GROUPS SECTION
   ===================================================== */
.groups-section {
    background: var(--seafoam-light);
}

.groups-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.groups-text h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
}

.groups-text p {
    font-size: var(--text-lg);
    color: var(--medium-gray);
    margin-bottom: var(--space-6);
}

.groups-list {
    margin-bottom: var(--space-8);
}

.groups-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    font-size: var(--text-lg);
}

.groups-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.groups-images img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* =====================================================
   LOCATION SECTION
   ===================================================== */
.location-section {
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
}

.location-map {
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-6);
}

.location-address {
    margin-bottom: var(--space-6);
}

.location-address p {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

/* Weather Widget */
.weather-widget {
    background: var(--seafoam-light);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
}

.weather-widget h4 {
    margin-bottom: var(--space-4);
}

.weather-current {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-4);
}

.weather-item {
    text-align: center;
}

.weather-item .icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-2);
}

.weather-lottie {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-2);
}

.weather-item .value {
    font-weight: 700;
    font-size: var(--text-lg);
}

.weather-item .label {
    font-size: var(--text-sm);
    color: var(--medium-gray);
}

.weather-status {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: #22C55E;
    font-weight: 600;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-section {
    background: var(--off-white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--charcoal);
    text-align: left;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--ocean-blue);
}

.faq-icon {
    font-size: var(--text-xl);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 var(--space-6) var(--space-6);
    color: var(--medium-gray);
    line-height: 1.7;
}

/* =====================================================
   INSTAGRAM FEED
   ===================================================== */
.instagram-section {
    background: var(--white);
    padding: var(--space-16) 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-4);
}

.instagram-item {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 119, 182, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
    color: var(--white);
    font-size: var(--text-2xl);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* =====================================================
   WAVE DIVIDER (Before Footer)
   Hidden - using footer's built-in wave transition instead
   ===================================================== */
.wave-divider {
    display: none;
}

/* =====================================================
   BEACH FOOTER - Natural Sand Theme
   Matches navbar sandy island styling exactly

   LAYER STRUCTURE (bottom to top):
   1. Sand body SVG (radial + vertical + horizontal gradients)
   2. Subtle grain texture overlay
   3. Optional shimmer
   4. Footer content

   Z-INDEX STRUCTURE:
   - Sand SVG layers: 1
   - Shimmer overlay: 2
   - Shoreline transition: 5
   - Footer content: 10
   ===================================================== */

.beach-footer {
    position: relative;
    z-index: 30;
    /* No background - SVG handles it */
    background: none;
    overflow: visible;
}

/* =====================================================
   WAVE TRANSITION - Modern wavy design
   Organic curves transitioning water to sand
   ===================================================== */
.wave-transition {
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 5;
    pointer-events: none;
}

.wave-transition svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* =====================================================
   SAND BODY - Gradient sand with darker tones at top
   Starts matching wave color, darkens slightly below
   ===================================================== */
.sand-body {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        #E8D4A8 0%,
        #E2CFA0 20%,
        #DCCA98 40%,
        #D6C590 60%,
        #D4C090 100%
    );
}

/* =====================================================
   FOOTER CONTENT
   All text and links above sand layers
   ===================================================== */
.beach-footer-content {
    position: relative;
    z-index: 10;
    padding: calc(var(--space-16) + 40px) 0 var(--space-8);
    /* Extra top padding to account for shoreline overlap */
}

.beach-footer .container {
    position: relative;
    z-index: 10;
}

/* =====================================================
   FOOTER GRID LAYOUT
   ===================================================== */
.beach-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: var(--space-10);
    margin-bottom: var(--space-12);
}

/* =====================================================
   FOOTER BRAND
   ===================================================== */
.beach-footer .footer-brand {
    max-width: 280px;
}

.beach-footer .footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    text-decoration: none;
}

.beach-footer .footer-logo-image {
    width: auto;
    height: 70px;
    max-width: 180px;
    object-fit: contain;
}

.beach-footer .footer-logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-xl);
    color: var(--deep-navy);
}

.beach-footer .footer-tagline {
    color: rgba(29, 53, 87, 0.65);
    margin-bottom: var(--space-5);
    font-style: italic;
    font-size: var(--text-base);
}

/* =====================================================
   SOCIAL ICONS
   ===================================================== */
.beach-footer .footer-social {
    display: flex;
    gap: var(--space-2);
}

.beach-footer .footer-social a {
    width: 40px;
    height: 40px;
    background: var(--deep-navy);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
    box-shadow:
        0 3px 8px rgba(2, 62, 138, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.beach-footer .footer-social a svg {
    width: 18px;
    height: 18px;
}

.beach-footer .footer-social a:hover {
    background: var(--ocean-blue);
    transform: translateY(-2px);
    box-shadow:
        0 5px 12px rgba(0, 119, 182, 0.3),
        0 2px 5px rgba(0, 0, 0, 0.1);
}

/* =====================================================
   FOOTER COLUMNS
   ===================================================== */
.beach-footer .footer-column h4 {
    color: var(--deep-navy);
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.beach-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.beach-footer .footer-links li {
    margin-bottom: var(--space-2);
}

.beach-footer .footer-links a {
    color: rgba(29, 53, 87, 0.7);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.beach-footer .footer-links a:hover {
    color: var(--ocean-blue);
}

/* =====================================================
   FOOTER CERTIFICATIONS
   ===================================================== */
.beach-footer .footer-certifications {
    text-align: center;
    padding: var(--space-6) 0;
    border-top: 1px solid rgba(29, 53, 87, 0.12);
    margin-top: var(--space-4);
}

.beach-footer .certification-label {
    color: rgba(29, 53, 87, 0.7);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-4);
}

.beach-footer .certification-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.beach-footer .certification-logo {
    height: 60px;
    width: auto;
    opacity: 0.85;
    transition: opacity var(--transition-fast);
}

.beach-footer .certification-logo:hover {
    opacity: 1;
}

/* =====================================================
   FOOTER BOTTOM
   ===================================================== */
.beach-footer .footer-bottom {
    border-top: 1px solid rgba(29, 53, 87, 0.12);
    padding-top: var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.beach-footer .footer-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.beach-footer .footer-license,
.beach-footer .footer-copyright {
    color: rgba(29, 53, 87, 0.55);
    font-size: var(--text-sm);
    margin: 0;
}

.beach-footer .footer-contact {
    text-align: right;
}

.beach-footer .footer-contact p {
    color: rgba(29, 53, 87, 0.6);
    font-size: var(--text-sm);
    margin: 0 0 var(--space-1);
}

.beach-footer .footer-contact a {
    color: rgba(29, 53, 87, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.beach-footer .footer-contact a:hover {
    color: var(--ocean-blue);
}

/* =====================================================
   FOOTER LEGAL
   ===================================================== */
.beach-footer .footer-legal {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(29, 53, 87, 0.08);
}

.beach-footer .footer-legal a {
    color: rgba(29, 53, 87, 0.5);
    font-size: var(--text-xs);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.beach-footer .footer-legal a:hover {
    color: var(--ocean-blue);
}

/* =====================================================
   BOOKING SIDEBAR
   ===================================================== */
.booking-sidebar {
    position: sticky;
    top: 100px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: var(--space-6);
}

.booking-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--light-gray);
}

.booking-field {
    margin-bottom: var(--space-5);
}

.booking-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--medium-gray);
    margin-bottom: var(--space-2);
}

.booking-input {
    width: 100%;
    padding: var(--space-4);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: border-color var(--transition-fast);
}

.booking-input:focus {
    outline: none;
    border-color: var(--ocean-blue);
}

.booking-select {
    width: 100%;
    padding: var(--space-4);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    background: var(--white);
    cursor: pointer;
}

.booking-time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
}

.booking-time-btn {
    padding: var(--space-3);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.booking-time-btn:hover,
.booking-time-btn.selected {
    border-color: var(--ocean-blue);
    background: var(--seafoam-light);
    color: var(--ocean-blue);
}

.booking-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
}

.booking-qty-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: var(--text-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.booking-qty-btn:hover {
    border-color: var(--ocean-blue);
    color: var(--ocean-blue);
}

.booking-qty-value {
    font-size: var(--text-2xl);
    font-weight: 700;
    min-width: 40px;
    text-align: center;
}

.booking-total {
    padding: var(--space-4) 0;
    border-top: 2px solid var(--light-gray);
    border-bottom: 2px solid var(--light-gray);
    margin: var(--space-6) 0;
    text-align: center;
}

.booking-total-label {
    font-size: var(--text-sm);
    color: var(--medium-gray);
}

.booking-total-value {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--charcoal);
}

.booking-submit {
    width: 100%;
    margin-bottom: var(--space-4);
}

.booking-guarantees {
    font-size: var(--text-sm);
    color: var(--medium-gray);
}

.booking-guarantees p {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
}

.booking-contact {
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--light-gray);
    text-align: center;
    font-size: var(--text-sm);
    color: var(--medium-gray);
}

.booking-contact a {
    display: block;
    margin-top: var(--space-2);
    font-weight: 600;
}

/* =====================================================
   PAGE HERO (Activity Pages)
   ===================================================== */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero-overlay);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: var(--space-8);
}

.page-hero-title {
    font-size: var(--text-6xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-hero-subtitle {
    font-size: var(--text-xl);
    opacity: 0.9;
}

/* =====================================================
   ACTIVITY PAGE LAYOUT
   ===================================================== */
.activity-page {
    padding: var(--space-16) 0;
}

.activity-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-12);
}

.activity-content h2 {
    font-size: var(--text-3xl);
    margin-top: var(--space-12);
    margin-bottom: var(--space-6);
}

.activity-content h2:first-child {
    margin-top: 0;
}

.activity-intro {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--charcoal);
}

.activity-quick-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    padding: var(--space-6);
    background: var(--seafoam-light);
    border-radius: var(--radius-xl);
    margin: var(--space-8) 0;
}

.quick-info-item {
    text-align: center;
}

.quick-info-icon {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.quick-info-label {
    font-size: var(--text-sm);
    color: var(--medium-gray);
}

.quick-info-value {
    font-weight: 700;
    color: var(--charcoal);
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-6) 0;
}

.pricing-table th,
.pricing-table td {
    padding: var(--space-4);
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-table th {
    background: var(--seafoam-light);
    font-weight: 600;
}

.pricing-table tr:hover td {
    background: var(--off-white);
}

/* Included List */
.included-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.included-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
}

.included-list .check {
    color: #22C55E;
    font-weight: bold;
}

/* Perfect For Section */
.perfect-for-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.perfect-for-item {
    padding: var(--space-6);
    background: var(--off-white);
    border-radius: var(--radius-lg);
}

.perfect-for-item h4 {
    margin-bottom: var(--space-2);
}

.perfect-for-item p {
    color: var(--medium-gray);
    margin: 0;
}

/* Safety Section */
.safety-list {
    margin: var(--space-6) 0;
}

.safety-list li {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--light-gray);
}

.safety-list li:last-child {
    border-bottom: none;
}

.safety-icon {
    width: 24px;
    color: var(--ocean-blue);
    font-weight: bold;
}

/* Cross-sell Cards */
.cross-sell-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.cross-sell-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.cross-sell-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.cross-sell-card img {
    height: 150px;
    width: 100%;
    object-fit: cover;
}

.cross-sell-content {
    padding: var(--space-4);
}

.cross-sell-content h4 {
    margin-bottom: var(--space-2);
}

.cross-sell-content p {
    font-size: var(--text-sm);
    color: var(--medium-gray);
    margin-bottom: var(--space-3);
}

.cross-sell-price {
    font-weight: 700;
    color: var(--ocean-blue);
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
}

.contact-form-card {
    background: var(--white);
    padding: var(--space-10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form-card h2 {
    margin-bottom: var(--space-6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-4);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-10);
    border-radius: var(--radius-xl);
}

.contact-info-card h2 {
    color: var(--white);
    margin-bottom: var(--space-8);
}

.contact-info-item {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.contact-info-text h4 {
    color: var(--white);
    margin-bottom: var(--space-1);
}

.contact-info-text p {
    opacity: 0.9;
    margin: 0;
}

.contact-info-text a {
    color: var(--white);
}

/* =====================================================
   GALLERY PAGE
   ===================================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: var(--space-3) var(--space-6);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--ocean-blue);
    border-color: var(--ocean-blue);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-hero {
    background: var(--seafoam-light);
    padding: var(--space-20) 0;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.about-hero-text h1 {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-6);
}

.about-hero-text p {
    font-size: var(--text-lg);
    color: var(--medium-gray);
}

.about-hero-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.story-section {
    padding: var(--space-20) 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: var(--text-lg);
    line-height: 1.9;
}

.story-content p {
    margin-bottom: var(--space-6);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.team-card {
    text-align: center;
}

.team-card-image {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto var(--space-6);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-5xl);
    font-weight: 700;
}

.team-card h4 {
    margin-bottom: var(--space-1);
}

.team-card .role {
    color: var(--ocean-blue);
    font-weight: 500;
    margin-bottom: var(--space-2);
}

.team-card .experience {
    color: var(--medium-gray);
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
}

.team-card .languages {
    font-size: var(--text-xl);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.value-card {
    text-align: center;
    padding: var(--space-8);
}

.value-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: var(--text-4xl);
    color: var(--white);
}

.value-card h3 {
    margin-bottom: var(--space-4);
}

.value-card p {
    color: var(--medium-gray);
}

/* Certifications */
.certifications {
    background: var(--off-white);
    padding: var(--space-16) 0;
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-12);
    flex-wrap: wrap;
}

.cert-badge {
    text-align: center;
}

.cert-badge-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    font-size: var(--text-3xl);
    box-shadow: var(--shadow-md);
}

.cert-badge p {
    font-weight: 600;
    color: var(--charcoal);
}

/* =====================================================
   MOBILE BOTTOM BAR
   ===================================================== */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: var(--space-3);
    z-index: var(--z-fixed);
}

.mobile-bottom-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

.mobile-bottom-bar .btn {
    width: 100%;
}

.mobile-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-bar-lottie {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* =====================================================
   WHATSAPP BUTTON
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-3xl);
    box-shadow: var(--shadow-lg);
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1200px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .beach-footer .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .activity-layout {
        grid-template-columns: 1fr 340px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: var(--text-5xl);
    }

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

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

    .groups-content {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .beach-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .activity-layout {
        grid-template-columns: 1fr;
    }

    .booking-sidebar {
        position: relative;
        top: 0;
        order: -1;
    }

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

    .about-hero-content {
        grid-template-columns: 1fr;
    }

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

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

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: var(--space-12) 0;
    }

    .hero-title {
        font-size: var(--text-4xl);
    }

    .page-hero-title {
        font-size: var(--text-4xl);
    }

    .section-title {
        font-size: var(--text-3xl);
    }

    .trust-items {
        gap: var(--space-8);
    }

    .activity-quick-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .included-list {
        grid-template-columns: 1fr;
    }

    .perfect-for-grid {
        grid-template-columns: 1fr;
    }

    .cross-sell-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .beach-footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .beach-footer .footer-brand {
        max-width: 100%;
        text-align: center;
        margin-bottom: var(--space-6);
    }

    .beach-footer .footer-logo {
        justify-content: center;
    }

    .beach-footer .footer-social {
        justify-content: center;
    }

    .beach-footer .footer-column {
        text-align: center;
    }

    .beach-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .beach-footer .footer-contact {
        text-align: center;
    }

    .beach-footer .footer-legal {
        flex-wrap: wrap;
        gap: var(--space-3);
    }

    /* Adjust shoreline on mobile */
    .shoreline-transition {
        top: -40px;
        height: 80px;
    }

    .beach-footer-content {
        padding-top: calc(var(--space-12) + 30px);
    }

    .mobile-bottom-bar {
        display: block;
    }

    .whatsapp-float {
        bottom: 100px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .trust-items {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--space-4);
        justify-content: center;
    }

    .trust-bar.section-card {
        border-radius: 45% / 40%;
        padding: var(--space-4) var(--space-8);
        transform: perspective(600px) rotateX(5deg);
        min-height: 70px;
        max-width: 95%;
    }

    /* Smaller side tow ropes on mobile */
    .trust-bar.section-card::before {
        width: 5px;
        height: 55px;
        top: -50px;
        left: 30px;
    }

    .trust-bar.section-card::after {
        width: 5px;
        height: 55px;
        top: -50px;
        right: 30px;
    }

    /* Smaller side connecting ropes on mobile */
    .section-card:not(.trust-bar):not(.footer)::before,
    .section-card:not(.trust-bar):not(.footer)::after {
        left: 40px;
        right: auto;
        width: 6px;
        height: 40px;
        top: -40px;
    }

    .section-card:not(.trust-bar):not(.footer)::after {
        left: auto;
        right: 40px;
    }

    /* Smaller handles on mobile */
    .trust-bar.section-card .container::before,
    .trust-bar.section-card .container::after {
        width: 10px;
        height: 24px;
    }

    .trust-bar.section-card .container::before {
        left: 12px;
    }

    .trust-bar.section-card .container::after {
        right: 12px;
    }

    .trust-item {
        flex: 0 0 auto;
    }

    .trust-icon {
        width: 48px;
        height: 48px;
    }

    .trust-value {
        font-size: var(--text-base);
    }

    .trust-label {
        font-size: 0.65rem;
    }

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

    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

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

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

/* =====================================================
   ANIMATIONS (disabled)
   ===================================================== */

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }

.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

.pt-4 { padding-top: var(--space-4); }
.pb-4 { padding-bottom: var(--space-4); }

.text-sm { font-size: var(--text-sm); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }

.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }

.text-ocean { color: var(--ocean-blue); }
.text-gray { color: var(--medium-gray); }
.text-white { color: var(--white); }

.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-seafoam { background: var(--seafoam-light); }

.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }

.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* =====================================================
   LANGUAGE SWITCHER
   Bilingual site EN/ES toggle
   ===================================================== */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(61, 41, 20, 0.2);
}

.lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #3D2914;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

.lang-link:hover {
    background: rgba(61, 41, 20, 0.1);
    color: #2A1A0A;
}

.lang-link.active {
    background: #0077B6;
    color: white;
}

.lang-divider {
    color: rgba(61, 41, 20, 0.3);
    font-size: 0.75rem;
}

/* Language switcher in footer */
.footer-lang-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.footer-lang-switcher .lang-link {
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-lang-switcher .lang-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-lang-switcher .lang-link.active {
    background: white;
    color: #1D3557;
}

/* Mobile language switcher */
@media (max-width: 1024px) {
    .language-switcher {
        margin-left: 10px;
        padding-left: 10px;
    }

    .lang-link {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
}

/* Language switcher in mobile menu */
.mobile-lang-switcher {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid rgba(61, 41, 20, 0.1);
    margin-top: auto;
}

.mobile-lang-switcher .lang-link {
    padding: 10px 24px;
    font-size: 0.9rem;
    border: 1px solid rgba(61, 41, 20, 0.2);
}
