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

:root {
    --ocean: #0B3D52;
    --ocean-deep: #062433;
    --ocean-light: #135D7A;
    --ocean-glow: #1a8ba8;
    --sand: #D4A96A;
    --sand-light: #E8CDA0;
    --sand-glow: #f0dbb8;
    --white: #FAF9F6;
    --dark: #1a1a1a;
    --gray: #666;
    --light-gray: #e8e8e8;
    --gold: #c9953a;
    --coral: #e8734a;
    --river: #2EAFBF;
    --river-dark: #1a8ba8;
    --river-glow: #5BA3B8;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loading {
    overflow: hidden;
}

body.loaded .loader-wrapper {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

::selection {
    background: var(--river);
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--white);
}

::-webkit-scrollbar-thumb {
    background: var(--river-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ocean);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

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

.section-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    color: var(--ocean);
    margin-bottom: 14px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.section-header.light h2,
.section-header.light p {
    color: white;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--river);
    margin-bottom: 14px;
}

.section-tag.light-tag {
    color: var(--sand-light);
}

.text-accent {
    background: linear-gradient(90deg, var(--gold), var(--sand), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 4s linear infinite;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

img, iframe {
    max-width: 100%;
    height: auto;
}

a, button, input, select, textarea {
    transition: var(--transition);
}

/* ==================== KEYFRAMES ==================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translate3d(0, 30px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(11, 61, 82, 0.35); }
    50% { transform: scale(1.06); box-shadow: 0 8px 32px rgba(11, 61, 82, 0.45); }
}

@keyframes float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -12px, 0); }
}

@keyframes shimmer {
    0% { box-shadow: 0 0 0 0 rgba(212, 169, 106, 0.4), var(--shadow-md); }
    50% { box-shadow: 0 0 20px 4px rgba(212, 169, 106, 0.25), var(--shadow-lg); }
    100% { box-shadow: 0 0 0 0 rgba(212, 169, 106, 0.4), var(--shadow-md); }
}

@keyframes wave {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.6); opacity: 0.7; }
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translate3d(0, 0, 0); }
    100% { opacity: 0; transform: translate3d(0, 10px, 0); }
}

@keyframes heroGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes particleFloat {
    0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.4; }
    33% { transform: translate3d(var(--dx, 10px), var(--dy, -20px), 0); opacity: 0.8; }
    66% { transform: translate3d(calc(var(--dx, 10px) * -0.5), calc(var(--dy, -20px) * 0.5), 0); opacity: 0.5; }
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55); }
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes ctaGlow {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes statsFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -4px, 0); }
}

@keyframes shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes badgeBounce {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -4px, 0) scale(1.05); }
}

@keyframes iconPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

@keyframes imageReveal {
    from { opacity: 0; transform: scale3d(1.08, 1.08, 1); }
    to { opacity: 1; transform: scale3d(1, 1, 1); }
}

@keyframes badgeFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -6px, 0); }
}

@keyframes typingBounce {
    0%, 80%, 100% { transform: translate3d(0, 0, 0); opacity: 0.4; }
    40% { transform: translate3d(0, -6px, 0); opacity: 1; }
}

@keyframes confettiFall {
    0% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
    100% { opacity: 0; transform: translate3d(var(--tx), var(--ty), 0) rotate(var(--rot)) scale(0.4); }
}

@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}

@keyframes sectionGlow {
    0% { opacity: 0; }
    50% { opacity: 0.15; }
    100% { opacity: 0; }
}

/* ==================== SCROLL ANIMATION CLASSES ==================== */
.fade-in, .slide-up, .slide-left, .slide-right, .reveal {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s var(--spring);
}

.fade-in { transform: translate3d(0, 20px, 0); }
.slide-up { transform: translate3d(0, 40px, 0) scale(0.92); }
.slide-left { transform: translate3d(-40px, 0, 0); }
.slide-right { transform: translate3d(40px, 0, 0); }

.reveal {
    transform: translate3d(0, 40px, 0) scale(0.92);
}

.fade-in.revealed, .slide-up.revealed, .slide-left.revealed,
.slide-right.revealed, .reveal.revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}

/* ==================== LOADER ==================== */
.loader-wrapper {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--ocean-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader {
    text-align: center;
    color: white;
}

.loader p {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-top: 24px;
    letter-spacing: 0.04em;
}

.loader-wave {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--river);
    border-radius: 50%;
    animation: wave 1.2s ease-in-out infinite;
}

/* ==================== GRAIN OVERLAY ==================== */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9996;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px 180px;
}

/* ==================== CUSTOM CURSOR ==================== */
.custom-cursor {
    position: fixed;
    width: 24px;
    height: 24px;
    border: 2px solid var(--sand);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate3d(-50%, -50%, 0);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    mix-blend-mode: difference;
}

.custom-cursor.hover-dark {
    width: 40px;
    height: 40px;
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

body.has-custom-cursor {
    cursor: none;
}

body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input,
body.has-custom-cursor select,
body.has-custom-cursor textarea,
body.has-custom-cursor .tilt-enabled {
    cursor: none;
}

/* ==================== 3D TILT ==================== */
.tilt-enabled {
    transform-style: preserve-3d;
    perspective: 800px;
    transition: transform 0.12s ease-out, box-shadow 0.3s ease;
}

/* ==================== TYPING INDICATOR ==================== */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    align-self: flex-start;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--gray);
    border-radius: 50%;
    animation: typingBounce 1.2s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.15s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.3s; }

/* ==================== CONFETTI ==================== */
.confetti-particle {
    position: fixed;
    font-size: 1.2rem;
    pointer-events: none;
    z-index: 10000;
    animation: confettiFall 2.2s ease-out forwards;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-container {
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ocean);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.nav-logo:hover {
    color: var(--river);
}

.logo-icon {
    font-size: 1.25rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--river);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ocean);
}

.nav-cta {
    background: var(--sand) !important;
    color: var(--dark) !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--ocean) !important;
    color: white !important;
    transform: translate3d(0, -2px, 0);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--ocean);
    border-radius: 3px;
    transition: var(--transition);
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translate3d(-10px, 0, 0);
}

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

/* ==================== BUTTONS ==================== */
.btn-primary,
.btn-secondary,
.btn-whatsapp,
.btn-room,
.btn-booking {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.btn-primary:active,
.btn-secondary:active,
.btn-whatsapp:active,
.btn-room:active,
.btn-booking:active {
    transform: scale(0.96);
}

.btn-primary {
    background: var(--sand);
    color: var(--dark);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), var(--shadow-sm);
}

.btn-primary:hover {
    background: white;
    color: var(--ocean);
    transform: translate3d(0, -3px, 0);
    box-shadow: var(--shadow-md);
}

.btn-primary.large {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.btn-primary.large::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: radial-gradient(circle, var(--sand-glow) 0%, transparent 70%);
    opacity: 0;
    animation: ctaGlow 3s ease-in-out infinite;
    z-index: -1;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn-secondary:hover {
    background: white;
    color: var(--ocean);
    transform: translate3d(0, -3px, 0);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-room {
    background: var(--ocean);
    color: white;
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-room:hover {
    background: var(--river);
    transform: translate3d(0, -2px, 0);
    box-shadow: var(--shadow-md);
}

.btn-table-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ocean);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    margin-top: 16px;
}

.btn-table-book:hover {
    color: var(--river);
    gap: 12px;
}

.btn-booking {
    background: var(--sand);
    color: var(--dark);
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
}

.btn-booking:hover {
    background: var(--river);
    color: white;
    transform: translate3d(0, -2px, 0);
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-whatsapp:focus-visible,
.btn-room:focus-visible,
.btn-booking:focus-visible,
.nav-cta:focus-visible,
.hamburger:focus-visible {
    outline: 3px solid var(--river);
    outline-offset: 3px;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 24px 100px;
    overflow: hidden;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean) 25%, var(--river-dark) 50%, var(--river) 75%, var(--ocean-light) 100%);
    background-size: 300% 300%;
    animation: heroGradient 14s ease infinite;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    animation: particleFloat var(--duration, 8s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%23FAF9F6' d='M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: 100% 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: badgeFloat 4s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 6vw, 4rem);
    color: white;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-title .title-line {
    display: block;
}

.hero-title .title-line.accent {
    font-style: italic;
    color: var(--sand-light);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.02em;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: statsFloat 5s ease-in-out infinite;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--sand-light);
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px rgba(212, 169, 106, 0.4);
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    z-index: 3;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    margin: 10px auto 0;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.8s ease-in-out infinite;
}

/* ==================== IMAGE PLACEHOLDERS ==================== */
.image-placeholder {
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    max-width: 100%;
    background-size: 200% 200%;
    animation: heroGradient 8s ease infinite, imageReveal 1s ease forwards;
}

.image-placeholder:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.image-placeholder-small {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    background-size: 200% 200%;
    animation: heroGradient 8s ease infinite;
}

.placeholder-content {
    text-align: center;
    z-index: 1;
}

.placeholder-content i {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.placeholder-content span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.river-bg { background: linear-gradient(145deg, #062433 0%, #135D7A 40%, #2EAFBF 80%, #5BA3B8 100%); }
.cola-bg { background: linear-gradient(145deg, #0B3D52 0%, #2EAFBF 50%, #D4A96A 100%); }
.river-room-bg { background: linear-gradient(145deg, #062433 0%, #1a8ba8 50%, #2EAFBF 100%); }
.pool-room-bg { background: linear-gradient(145deg, #135D7A 0%, #2EAFBF 50%, #5BA3B8 100%); }
.garden-room-bg { background: linear-gradient(145deg, #1B4332 0%, #2D6A4F 50%, #95D5B2 100%); }
.restaurant-bg { background: linear-gradient(145deg, #0B3D52 0%, #c9953a 60%, #e8734a 100%); }
.food-bg { background: linear-gradient(145deg, #c9953a 0%, #e8734a 50%, #D4A96A 100%); }
.pool-bg { background: linear-gradient(145deg, #135D7A 0%, #2EAFBF 40%, #5BA3B8 80%, #87CEEB 100%); }
.kayak-bg { background: linear-gradient(145deg, #062433 0%, #1a8ba8 50%, #2EAFBF 100%); }
.gallery-bg-1 { background: linear-gradient(145deg, #062433 0%, #2EAFBF 100%); }
.gallery-bg-2 { background: linear-gradient(145deg, #135D7A 0%, #5BA3B8 100%); }
.gallery-bg-3 { background: linear-gradient(145deg, #0B3D52 0%, #D4A96A 100%); }
.gallery-bg-4 { background: linear-gradient(145deg, #c9953a 0%, #e8734a 100%); }
.gallery-bg-5 { background: linear-gradient(145deg, #1B4332 0%, #135D7A 100%); }
.gallery-bg-6 { background: linear-gradient(145deg, #062433 0%, #1a8ba8 100%); }

/* ==================== ABOUT ==================== */
.about {
    background: radial-gradient(ellipse at 20% 50%, rgba(46, 175, 191, 0.06) 0%, transparent 50%), var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-main .image-placeholder {
    height: 440px;
}

.about-image-float {
    position: absolute;
    bottom: -24px;
    right: -24px;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--ocean);
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.05rem;
    color: var(--ocean);
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.about-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(46, 175, 191, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ocean);
    transition: var(--transition);
}

.about-feat:hover {
    background: rgba(46, 175, 191, 0.18);
    transform: translate3d(0, -2px, 0);
}

.about-feat i {
    color: var(--river);
}

/* ==================== ROOMS ==================== */
.rooms {
    background: linear-gradient(180deg, var(--white) 0%, rgba(46, 175, 191, 0.03) 50%, var(--white) 100%);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.room-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.room-card:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: var(--shadow-lg);
}

.room-card.featured {
    border: 2px solid var(--gold);
    animation: shimmer 3s ease-in-out infinite;
}

.room-card.featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(90deg, var(--gold), var(--sand), var(--gold));
    background-size: 200% 100%;
    animation: gradientBorder 3s ease infinite;
    z-index: -1;
    opacity: 0.5;
}

.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: var(--gold);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: badgeBounce 2.5s ease-in-out infinite;
}

.room-card:hover .room-badge {
    animation: badgeBounce 1s ease-in-out infinite;
}

.room-image {
    position: relative;
    overflow: hidden;
}

.room-card .image-placeholder {
    height: 240px;
    border-radius: 0;
    font-size: 3.5rem;
}

.room-card:hover .image-placeholder {
    transform: scale(1.05);
}

.room-info {
    padding: 24px;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 12px;
}

.room-info h3 {
    font-size: 1.25rem;
    color: var(--ocean);
}

.room-rating {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
}

.room-desc {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.room-features {
    list-style: none;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.room-features li {
    font-size: 0.82rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-features li i {
    color: var(--river);
    font-size: 0.75rem;
    width: 14px;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ocean);
    font-variant-numeric: tabular-nums;
}

.price-period {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ==================== RESTAURANT ==================== */
.restaurant {
    background: radial-gradient(ellipse at 90% 10%, rgba(201, 149, 58, 0.08) 0%, transparent 50%), var(--white);
}

.restaurant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.restaurant-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--ocean);
    margin-bottom: 24px;
}

.restaurant-info-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(46, 175, 191, 0.08);
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(46, 175, 191, 0.15);
}

.restaurant-info-card i {
    font-size: 1.5rem;
    color: var(--river);
    margin-top: 4px;
}

.restaurant-info-card h4 {
    font-size: 1rem;
    color: var(--ocean);
    margin-bottom: 6px;
}

.restaurant-info-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}

.menu-showcase {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}

.menu-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.menu-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.menu-card:hover {
    transform: translate3d(6px, 0, 0);
    box-shadow: var(--shadow-md);
}

.menu-card:hover::after {
    width: 100%;
}

.menu-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 175, 191, 0.12);
    border-radius: 10px;
    color: var(--river);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.menu-card:hover .menu-icon {
    background: var(--river);
    color: white;
}

.menu-info {
    flex: 1;
    min-width: 0;
}

.menu-info h5 {
    font-size: 0.95rem;
    color: var(--ocean);
    margin-bottom: 2px;
}

.menu-info p {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.5;
}

.menu-price {
    font-weight: 700;
    color: var(--sand);
    font-size: 0.95rem;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.restaurant-visual {
    position: relative;
}

.restaurant-image-main .image-placeholder {
    height: 460px;
}

.restaurant-image-float {
    position: absolute;
    bottom: -20px;
    left: -20px;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
    z-index: 2;
}

.restaurant-image-float .image-placeholder-small {
    width: 140px;
    height: 140px;
    font-size: 2rem;
}

/* ==================== POOL ==================== */
.pool {
    background: linear-gradient(180deg, var(--white) 0%, rgba(46, 175, 191, 0.05) 100%);
}

.pool-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pool-image-main .image-placeholder {
    height: 460px;
}

.pool-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--ocean);
    margin-bottom: 20px;
}

.pool-lead {
    font-size: 1.05rem;
    color: var(--ocean);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.7;
}

.pool-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pool-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--gray);
}

.pool-features li i {
    color: var(--river);
    font-size: 1rem;
}

/* ==================== KAYAKING ==================== */
.kayaking {
    background: radial-gradient(ellipse at 10% 80%, rgba(6, 36, 51, 0.05) 0%, transparent 50%), var(--white);
}

.kayaking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.kayaking-image-main .image-placeholder {
    height: 440px;
}

.kayaking-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--ocean);
    margin-bottom: 20px;
}

.kayaking-lead {
    font-size: 1.05rem;
    color: var(--ocean);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.7;
}

.kayaking-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.kayaking-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--gray);
}

.kayaking-features li i {
    color: var(--river);
    font-size: 1rem;
    width: 20px;
}

/* ==================== GALLERY ==================== */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

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

.gallery-item .image-placeholder {
    height: 100%;
    border-radius: 14px;
    flex-direction: column;
    font-size: 2rem;
    animation: none;
}

.gallery-item .placeholder-content i {
    font-size: 2rem;
}

.gallery-item .placeholder-content span {
    font-size: 0.85rem;
}

/* ==================== NEARBY ==================== */
.nearby {
    background: linear-gradient(180deg, var(--white) 0%, rgba(46, 175, 191, 0.04) 100%);
}

.nearby-grid-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.nearby-card {
    text-align: center;
    padding: 32px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.nearby-card:hover {
    transform: translate3d(0, -6px, 0);
    box-shadow: var(--shadow-lg);
}

.nearby-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 175, 191, 0.12);
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--river);
    transition: var(--transition);
}

.nearby-card:hover .nearby-icon {
    background: var(--river);
    color: white;
    animation: iconPop 0.5s ease;
}

.nearby-card h4 {
    font-size: 1.1rem;
    color: var(--ocean);
    margin-bottom: 8px;
}

.nearby-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ==================== REVIEWS ==================== */
.reviews {
    background: linear-gradient(180deg, rgba(46, 175, 191, 0.04) 0%, var(--white) 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.review-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.review-card:hover {
    transform: translate3d(0, -6px, 0);
    box-shadow: var(--shadow-lg);
}

.review-card.featured-review {
    background: linear-gradient(145deg, var(--ocean-deep) 0%, var(--ocean) 50%, var(--ocean-light) 100%);
    color: white;
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(11, 61, 82, 0.25);
    border: none;
}

.review-card.featured-review:hover {
    transform: scale(1.03) translate3d(0, -6px, 0);
}

.review-card.featured-review p {
    color: rgba(255, 255, 255, 0.92);
}

.review-card.featured-review .review-author strong {
    color: var(--sand-light);
}

.review-card.featured-review .review-author span {
    color: rgba(255, 255, 255, 0.7);
}

.review-card.featured-review .author-avatar {
    background: var(--sand);
    color: var(--dark);
}

.review-quote {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 0.5;
    color: var(--river);
    opacity: 0.35;
    margin-bottom: 8px;
    transition: var(--transition);
}

.review-card:hover .review-quote {
    transform: scale(1.1) rotate(-5deg);
    opacity: 0.5;
}

.review-card.featured-review .review-quote {
    color: var(--sand-light);
    opacity: 0.5;
}

.review-stars {
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.review-card p {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.92rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--river);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    color: var(--ocean);
    font-size: 0.9rem;
}

.review-author span {
    display: block;
    font-size: 0.78rem;
    color: var(--gray);
}

/* ==================== OFFERS ==================== */
.offers {
    background: var(--white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.offer-card {
    background: white;
    padding: 36px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: var(--transition);
}

.offer-card:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: var(--shadow-lg);
}

.offer-card.featured-offer {
    border: 2px solid var(--gold);
    transform: scale(1.04);
    box-shadow: 0 16px 40px rgba(201, 149, 58, 0.2);
}

.offer-card.featured-offer:hover {
    transform: scale(1.04) translate3d(0, -8px, 0);
}

.offer-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--river);
    color: white;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.offer-card h3 {
    font-size: 1.3rem;
    color: var(--ocean);
    margin-bottom: 12px;
}

.offer-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ocean);
    font-variant-numeric: tabular-nums;
    margin-bottom: 4px;
}

.offer-period {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.offer-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.offer-card ul li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-card ul li::before {
    content: '✓';
    color: var(--river);
    font-weight: 700;
}

.offer-card .btn-room {
    width: 100%;
    justify-content: center;
}

/* ==================== BOOKING ==================== */
.booking {
    background: var(--ocean);
    color: white;
    position: relative;
    overflow: hidden;
}

.booking-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(46, 175, 191, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.booking-left h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
}

.booking-left > p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 28px;
}

.booking-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.perk-item i {
    color: var(--sand-light);
}

.booking-box {
    background: white;
    border-radius: 20px;
    padding: 36px;
    color: var(--dark);
    box-shadow: var(--shadow-lg);
}

.booking-box h4 {
    font-size: 1.3rem;
    color: var(--ocean);
    margin-bottom: 24px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.form-group label i {
    color: var(--river);
    margin-right: 6px;
    font-size: 0.8rem;
}

.form-group input,
.form-group select {
    padding: 12px 14px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    background: white;
    width: 100%;
    color: var(--dark);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--river);
    box-shadow: 0 0 0 3px rgba(46, 175, 191, 0.15);
}

.booking-result {
    margin-top: 18px;
    padding: 20px;
    border-radius: 12px;
    display: none;
    font-size: 0.9rem;
    line-height: 1.7;
}

.booking-result.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.booking-result.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.booking-result.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.booking-result h4 {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.booking-result .savings {
    color: #1b5e20;
    font-weight: 700;
    margin-top: 8px;
}

.booking-result .whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 20px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
}

.booking-result .whatsapp-link:hover {
    background: #1da851;
    transform: translate3d(0, -2px, 0);
}

/* ==================== CONTACT ==================== */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translate3d(6px, 0, 0);
    box-shadow: var(--shadow-md);
}

.contact-card:hover .contact-icon-wrap {
    animation: iconPop 0.5s ease;
}

.contact-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 175, 191, 0.12);
    border-radius: 12px;
    color: var(--river);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card:hover .contact-icon-wrap {
    background: var(--river);
    color: white;
}

.contact-card h4 {
    color: var(--ocean);
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.88rem;
}

.contact-link {
    display: inline-block;
    margin-top: 6px;
    color: var(--river);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--ocean);
}

.map-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 320px;
    margin-bottom: 16px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.nearby-info {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.nearby-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray);
    padding: 10px 16px;
    background: rgba(46, 175, 191, 0.08);
    border-radius: 50px;
}

.nearby-item i {
    color: var(--river);
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    background: linear-gradient(135deg, var(--ocean) 0%, var(--river-dark) 50%, var(--river) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 14px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(180deg, var(--ocean-deep) 0%, #041a24 100%);
    color: white;
    padding: 60px 0 28px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='2' cy='2' r='1'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-size: 1.15rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col p,
.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 0.85rem;
    line-height: 1.6;
    position: relative;
}

.footer-col a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sand);
    transition: width 0.3s ease;
}

.footer-col a:hover {
    color: var(--sand);
    transform: translate3d(4px, 0, 0);
}

.footer-col a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1rem;
    margin-bottom: 0;
}

.footer-social a::after {
    display: none;
}

.footer-social a:hover {
    background: var(--sand);
    color: var(--dark);
    transform: translate3d(0, -3px, 0);
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-family: var(--font-body);
    font-size: 0.85rem;
    min-width: 0;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--river);
    box-shadow: 0 0 12px rgba(46, 175, 191, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-form button {
    padding: 10px 16px;
    background: var(--sand);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
}

.newsletter-form button:hover {
    background: white;
    transform: translate3d(0, -2px, 0);
}

.newsletter-message {
    font-size: 0.82rem;
    color: var(--sand-light);
    margin-top: 8px;
}

.newsletter-message.success-show .checkmark {
    display: inline-block;
    animation: iconPop 0.5s var(--spring);
    color: #4caf50;
    margin-right: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    position: relative;
    z-index: 1;
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2.5s ease-in-out infinite;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #1da851;
    transform: scale(1.1);
    animation: none;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--sand);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 997;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    overflow: hidden;
}

.back-to-top::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    opacity: 0;
    transition: none;
}

.back-to-top:hover::after {
    animation: ripple 0.6s ease-out;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--river);
    color: white;
    transform: translate3d(0, -4px, 0);
}

.back-to-top.jump {
    animation: badgeBounce 0.4s ease;
}

.back-to-top:focus-visible {
    outline: 3px solid var(--river);
    outline-offset: 3px;
}

.section-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, var(--river-glow) 0%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    animation: sectionGlow 1.5s ease forwards;
}

/* ==================== ACCESSIBILITY ==================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 3px solid var(--river);
    outline-offset: 2px;
}

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

    .fade-in, .slide-up, .slide-left, .slide-right, .reveal {
        opacity: 1;
        transform: none;
    }

    .text-accent {
        -webkit-text-fill-color: var(--gold);
        animation: none;
    }

    .hero-gradient, .particle, .whatsapp-float, .room-card.featured, .room-badge {
        animation: none;
    }

    .custom-cursor, .grain-overlay {
        display: none !important;
    }
}

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

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

    .offers-grid .offer-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

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

    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .review-card.featured-review {
        transform: none;
    }

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

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

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

    .about-grid, .restaurant-grid, .pool-grid, .kayaking-grid,
    .booking-wrapper, .contact-grid {
        gap: 40px;
    }
}

/* ==================== RESPONSIVE: 768px ==================== */
@media (max-width: 768px) {
    .custom-cursor {
        display: none !important;
    }

    body.has-custom-cursor {
        cursor: auto;
    }

    body.has-custom-cursor a,
    body.has-custom-cursor button {
        cursor: pointer;
    }

    .tilt-enabled {
        transform: none !important;
    }

    .text-accent {
        -webkit-text-fill-color: var(--gold);
        background: none;
        animation: none;
    }

    .section-padding {
        padding: 70px 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 1000;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        font-size: 1.15rem;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 100px 20px 120px;
        min-height: 90vh;
        min-height: 90svh;
    }

    .stat-divider {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .about-grid, .restaurant-grid, .pool-grid, .kayaking-grid,
    .booking-wrapper, .contact-grid {
        grid-template-columns: 1fr;
    }

    .pool-grid .pool-visual {
        order: -1;
    }

    .about-image-float, .restaurant-image-float {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        margin-top: -30px;
        display: flex;
        justify-content: center;
    }

    .about-image-main .image-placeholder,
    .restaurant-image-main .image-placeholder,
    .pool-image-main .image-placeholder,
    .kayaking-image-main .image-placeholder {
        height: 320px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .offer-card.featured-offer {
        transform: none;
    }

    .booking-box {
        padding: 28px 22px;
    }

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

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

    .whatsapp-float {
        bottom: 16px;
        left: 16px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .back-to-top {
        bottom: 16px;
        right: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-whatsapp {
        width: 100%;
        max-width: 300px;
    }
}

/* ==================== RESPONSIVE: 600px ==================== */
@media (max-width: 600px) {
    .container {
        padding: 0 18px;
    }

    .nearby-grid-cards {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

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

    .nearby-info {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==================== RESPONSIVE: 480px ==================== */
@media (max-width: 480px) {
    .section-padding {
        padding: 56px 0;
    }

    .container {
        padding: 0 16px;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .nav-container {
        padding: 12px 16px;
    }

    .hero {
        padding: 90px 16px 110px;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 8px 16px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.88rem;
        max-width: 280px;
    }

    .image-placeholder-small {
        width: 140px;
        height: 140px;
    }

    .room-card .image-placeholder {
        height: 200px;
    }

    .room-info {
        padding: 18px;
    }

    .room-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-room {
        text-align: center;
        justify-content: center;
    }

    .review-card {
        padding: 24px;
    }

    .booking-box {
        padding: 22px 16px;
        border-radius: 14px;
    }

    .footer {
        padding: 44px 0 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .map-card {
        height: 260px;
    }

    .cta-banner {
        padding: 60px 0;
    }
}

/* ==================== RESPONSIVE: 360px ==================== */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }

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

    .btn-primary, .btn-secondary {
        max-width: 100%;
        font-size: 0.82rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .whatsapp-float {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }
}
/* ... all your existing CSS ends here ... */

/* ==================== CURSOR FIX ==================== */
@media (min-width: 769px) {
    body {
        cursor: none;
    }
}

.custom-cursor {
    box-shadow: 0 0 12px rgba(212, 169, 106, 0.6);
}