:root {
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --color-white: #ffffff;
    --color-dark: #1a1a1a;
    --color-teal: #1e3068;
    /* Approximate from image */
    --color-teal-hover: #161f50;
    --overlay-color: rgba(0, 50, 70, 0.4);
    /* Blueish tint */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--color-white);
    overflow-x: hidden;
    overflow-y: auto;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001f3f;
    /* Navy blue */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-logo {
    width: 150px;
    /* Adjust size as needed */
    height: auto;
    opacity: 0;
    /* Hidden initially for animation */
}

/* Site Wrapper for Blur Effect */
.site-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    /* Blur will be applied only on pages with loader via JavaScript */
}

/* Video Background */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 40, 60, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal.open {
    display: flex;
    opacity: 1;
}

.booking-modal-content {
    width: 90%;
    height: 90%;
    max-width: 1200px;
    background-color: white;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.booking-modal-close:hover {
    transform: scale(1.1);
}

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

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: transparent;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    overflow: hidden;
}

.fullscreen-menu.active {
    transform: translateX(0);
}

.menu-close {
    position: absolute;
    top: 30px;
    left: 40px;
    background: none;
    border: none;
    font-size: 48px;
    color: #1a1a1a;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
    line-height: 1;
    padding: 0;
}

.menu-close:hover {
    transform: rotate(90deg);
}

.menu-container {
    display: grid;
    grid-template-columns: 420px 1fr;
    height: 100vh;
    width: calc(100% - 60px);
    background-color: white;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}

.menu-left {
    background-color: white;
    padding: 70px 40px 50px 0px;
    border-right: 1px solid #e0e0e0;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    width: 100%;
    align-items: flex-start;
}

.menu-logo {
    width: 280px;
    height: auto;
    margin-top: 40px;
    margin-left: 50px;
    opacity: 0.8;
}

/* Hide mobile accommodation menu on desktop */
.mobile-accommodation-menu {
    display: none;
}

.menu-item {
    font-family: var(--font-serif);
    font-size: 2.3rem;
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    letter-spacing: 0;
    line-height: 1.2;
    padding: 0;
    margin: 0;
    position: relative;
    text-align: left;
    cursor: pointer;
}

.menu-item:hover {
    color: #666;
    transform: translateX(3px);
}

.menu-item.active {
    color: var(--color-teal);
}

.menu-item.active::before {
    content: '—';
    position: absolute;
    left: -30px;
    top: 0;
    color: #c4704f;
    font-size: 2.5rem;
}

.menu-right {
    background-color: #f8f8f8;
    overflow-y: auto;
    padding: 20px 80px 120px;
}

.menu-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-content.active {
    display: block;
}

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

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
}

.menu-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.menu-card:hover {
    background: #f3cba4;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.menu-card-image {
    flex: 0 0 280px;
    height: 200px;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.05);
}

.menu-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-teal);
    margin: 0 0 15px;
    font-weight: 400;
    line-height: 1.3;
}

.menu-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.menu-info {
    padding: 40px;
    background: rgba(255, 255, 255, 0.6);
    max-width: 700px;
}

.menu-info h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-teal);
    margin-bottom: 20px;
}

.menu-info p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.menu-view-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #c4704f;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.menu-view-more-btn:hover {
    background-color: #001f3f;
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.3);
}

/* Contact Menu Buttons */
.menu-contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.menu-contact-btn {
    display: inline-block;
    padding: 12px 24px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    min-width: 150px;
}

.menu-contact-btn.primary {
    background-color: #c4704f;
}

.menu-contact-btn.primary:hover {
    background-color: #a85a3f;
    box-shadow: 0 4px 12px rgba(196, 112, 79, 0.3);
}

.menu-contact-btn.secondary {
    background-color: #001f3f;
}

.menu-contact-btn.secondary:hover {
    background-color: #003366;
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.4);
}

@media (max-width: 480px) {
    .menu-contact-buttons {
        flex-direction: column;
    }
    
    .menu-contact-btn {
        width: 100%;
        min-width: unset;
    }
}

.menu-section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-teal);
    margin-bottom: 30px;
    text-align: left;
}

@media (max-width: 1024px) {
    .menu-container {
        grid-template-columns: 300px 1fr;
    }

    .menu-left {
        padding: 100px 40px;
    }

    .menu-right {
        padding: 100px 50px;
    }

    .menu-item {
        font-size: 2.3rem;
    }

    .menu-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-card-image {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    /* Hide ratings bar on mobile */
    .hero-ratings-bar {
        display: none;
    }
    
    .menu-container {
        grid-template-columns: 1fr;
        width: 100%;
        height: 100vh;
    }

    .menu-left {
        padding: 100px 30px 40px;
        border-right: none;
        border-bottom: none;
        width: 100%;
    }
    
    .menu-close {
        left: 30px;
        top: 30px;
        font-size: 40px;
    }

    /* Hide secondary menu on mobile */
    .menu-right {
        display: none !important;
    }

    .menu-nav {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 30px;
        width: 100%;
    }

    .menu-item {
        font-size: 2rem;
        width: 100%;
        text-align: left;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .menu-item.active {
        border-bottom: 2px solid #c4704f;
    }
    
    .menu-logo {
        width: 200px;
        margin-left: 0;
        margin-top: 50px;
    }
    
    /* Accommodation Dropdown */
    .menu-item[data-menu="accommodations"] {
        position: relative;
    }

    .menu-item[data-menu="accommodations"]::after {
        content: '+';
        position: absolute;
        right: 20px;
        font-size: 2rem;
        transition: transform 0.3s ease;
    }
    
    .menu-item[data-menu="accommodations"].active::after {
        transform: rotate(45deg);
    }
    
    /* Mobile Accommodation Submenu */
    .mobile-accommodation-menu {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 0 0 30px;
        background-color: #f8f8f8;
        margin-top: 15px;
        border-left: 3px solid #c4704f;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .menu-item[data-menu="accommodations"].active + .mobile-accommodation-menu,
    .mobile-accommodation-menu.active {
        max-height: 300px;
        opacity: 1;
        padding: 20px 0 20px 30px;
    }
    
    .mobile-accommodation-menu a {
        font-family: var(--font-sans);
        font-size: 1.1rem;
        color: #1a1a1a;
        text-decoration: none;
        padding: 10px 0;
        transition: color 0.3s ease;
    }
    
    .mobile-accommodation-menu a:hover {
        color: #c4704f;
    }
    
    /* Ensure menu content doesn't try to show on mobile */
    .menu-content {
        display: none !important;
    }
}

/* Additional mobile menu fixes for smaller screens */
@media (max-width: 480px) {
    .menu-left {
        padding: 90px 20px 30px;
    }
    
    .menu-item {
        font-size: 1.6rem;
        padding: 12px 0;
    }
    
    .menu-item[data-menu="accommodations"]::after {
        font-size: 1.8rem;
        right: 10px;
    }
    
    .mobile-accommodation-menu.active {
        padding: 15px 0 15px 20px;
    }
    
    .mobile-accommodation-menu {
        gap: 12px;
        padding: 0 0 0 20px;
    }
    
    .mobile-accommodation-menu a {
        font-size: 1rem;
        padding: 8px 0;
    }
    
    .menu-logo {
        width: 160px;
        margin-top: 40px;
    }
    
    .menu-close {
        left: 20px;
        top: 25px;
        font-size: 36px;
    }
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 10;
    font-size: 14px;
    font-weight: 500;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    height: 80px;
    /* Adjust based on actual logo aspect ratio */
    width: auto;
}

button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
}

.phone-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.phone-link:hover {
    opacity: 0.8;
}

.phone-link svg {
    width: 18px;
    height: 18px;
}

.btn-reservation {
    background-color: var(--color-teal);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn-reservation:hover {
    background-color: var(--color-teal-hover);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.hero-mobile-logo {
    display: none;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-title .line {
    display: block;
    overflow: hidden;
    /* For animation reveal */
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    /* Hidden initially for animation */
}

.btn {
    padding: 16px 32px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-white {
    background-color: white;
    color: var(--color-dark);
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: #001f3f;
    border: 1px solid #001f3f;
    color: white;
}

.btn-outline:hover {
    background-color: #003366;
    border-color: #003366;
    color: white;
    transform: translateY(-2px);
}

/* Scroll Down Arrow */
.scroll-arrow {
    margin-top: 30px;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    opacity: 0;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    width: fit-content;
}

.scroll-arrow:hover {
    opacity: 0.9;
}

.scroll-arrow svg {
    display: block;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Hero Ratings Bar */
.mobile-reorder-container {
    position: relative;
}

/* Desktop: At bottom of hero (100vh) */
.hero-ratings-bar {
    position: absolute;
    top: calc(100vh - 80px);
    left: 0;
    width: 100%;
    background-color: #e8e4df;
    z-index: 10;
}

.hero-ratings-inner {
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-rating-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-rating-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.hero-rating-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-rating-platform {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: 0.5px;
}

.hero-rating-score-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-rating-score {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-dark);
}

.hero-rating-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.hero-rating-stars {
    display: flex;
    gap: 2px;
}

.hero-rating-stars svg {
    width: 12px;
    height: 12px;
    fill: #c4704f;
}

.hero-rating-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .hero-ratings-inner {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .hero-rating-divider {
        width: 80px;
        height: 1px;
    }
}

/* Welcome Section */
.welcome-section {
    background-color: #f8f8f8;
    padding: 100px 20px;
    overflow: hidden;
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-header {
    text-align: center;
    margin-bottom: 80px;
}

.welcome-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.welcome-stars svg {
    width: 20px;
    height: 20px;
    fill: #c4704f;
}

.welcome-subtitle {
    color: #c4704f;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.welcome-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.welcome-description {
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 750px;
    margin: 0 auto;
}

.welcome-images {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-illustration {
    position: absolute;
    width: 400px;
    height: auto;
    z-index: 0;
    opacity: 1;
    right: -100px;
    /* Start position off-screen right */
    transition: none;
    /* Disable CSS transitions, we'll use JS */
}

.welcome-img {
    position: absolute;
    width: 280px;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    clip-path: inset(0 100% 0 0);
    /* Start with mask covering the image */
    transition: clip-path 1s ease-out;
}

.welcome-img.revealed {
    clip-path: inset(0 0 0 0);
    /* Reveal the full image */
}

.welcome-img-left {
    left: 200px;
    top: 80px;
    z-index: 1;
    border-radius: 300px 300px 0 0;
}

.welcome-img-right {
    right: 200px;
    top: 10px;
    z-index: 1;
    border-radius: 0;
}

/* Full Height Image Scroller */
.image-scroller {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.scroller-container {
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    /* scroll-behavior: smooth; - Removed to allow GSAP control */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.scroller-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.scroller-track {
    display: flex;
    height: 100%;
    width: max-content;
    will-change: transform;
}

.scroller-slide {
    height: 100vh;
    width: 100vw;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    /* Hide overflow for parallax effect */
}

.scroller-slide img {
    width: 100%;
    height: 120%;
    /* Taller than container for parallax movement */
    object-fit: cover;
    display: block;
    object-position: center center;
}

/* Navigation Arrows */
.scroller-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--color-dark);
}

.scroller-nav:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.scroller-prev {
    left: 30px;
}

.scroller-next {
    right: 30px;
}

.scroller-nav svg {
    display: block;
}

/* Rooms & Suites Section */
.rooms-section,
.activities-section {
    background-color: #e8e4df;
    padding: 100px 20px;
}

/* Activities Grid - 4 cards layout */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.activity-card {
    background-color: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.5s ease-out, box-shadow 0.3s ease, opacity 0.5s ease-out;
}

.activities-grid.revealed .activity-card {
    opacity: 1;
    transform: translateY(0);
}

.activities-grid.revealed .activity-card:nth-child(1) { transition-delay: 0s; }
.activities-grid.revealed .activity-card:nth-child(2) { transition-delay: 0.1s; }
.activities-grid.revealed .activity-card:nth-child(3) { transition-delay: 0.2s; }
.activities-grid.revealed .activity-card:nth-child(4) { transition-delay: 0.3s; }

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.activity-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.activity-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.activity-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.activity-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.activity-info .room-btn {
    background-color: #001f3f;
}

.activity-info .room-btn:hover {
    background-color: #c4704f;
    box-shadow: 0 4px 12px rgba(196, 112, 79, 0.4);
}

.activity-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.activity-btn .btn-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.activity-btn:hover .btn-arrow {
    transform: translateX(6px);
}

@media (max-width: 1024px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .activities-grid {
        grid-template-columns: 1fr;
    }
}

/* Policies Section */
.policies-section {
    background-color: #f8f8f8;
    padding: 80px 20px;
}

.policies-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.policies-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.policies-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policies-list {
    list-style: disc;
    padding-left: 20px;
    color: #555;
    line-height: 2;
}

.policies-list li {
    font-size: 15px;
}

.policies-text {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.policies-link {
    color: #c4704f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policies-link:hover {
    color: #a85d3f;
    text-decoration: underline;
}

.sales-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.sales-btn {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid #001f3f;
    color: #001f3f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    width: fit-content;
    min-width: 200px;
}

.sales-btn:hover {
    background-color: #c4704f;
    border-color: #c4704f;
    color: white;
}

@media (max-width: 768px) {
    .policies-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Footer */
.footer {
    background-color: #001f3f;
    color: white;
    padding: 80px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: white;
}

.footer-column a,
.footer-column p {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #c4704f;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.footer-social-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-social-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: #c4704f;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

.rooms-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.rooms-decoration-icon {
    position: absolute;
    top: -80px;
    right: 0;
    width: 280px;
    height: auto;
    z-index: 1;
    opacity: 1;
}

.rooms-header {
    margin-bottom: 60px;
    will-change: filter, opacity;
}

.rooms-subtitle {
    color: #c4704f;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.rooms-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.2;
}

.rooms-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    height: 520px;
    /* Adjusted fixed height to fit content better */
    align-items: stretch;
    /* Make all cards same height */
}

.room-card {
    background-color: white;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    flex: 1;
    /* Start with equal width */
    min-width: 0;
    /* Allow shrinking */
    display: flex;
    flex-direction: column;
    border-radius: 0;
    height: 100%;
    /* Fill the fixed grid height */
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.room-image {
    width: 100%;
    height: 250px;
    /* Reduced height */
    overflow: hidden;
    position: relative;
}

.room-slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
    will-change: transform;
}

.room-slider-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.room-card:hover .room-slider-track img {
    transform: scale(1);
    /* Disable scale on hover for slider images to avoid conflict */
}

.room-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    z-index: 5;
}

.room-card.expanded .room-slider-btn {
    opacity: 1;
    pointer-events: auto;
}

.room-slider-btn:hover {
    background-color: #f0f0f0;
}

.room-slider-prev {
    left: 0;
}

.room-slider-next {
    right: 0;
}

.room-info {
    padding: 20px 20px 25px 20px;
    /* Compact padding */
}

.room-label {
    color: #c4704f;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.room-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 8px;
    /* Reduced margin */
    line-height: 1.3;
    /* Handle text overflow */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 4rem;
    /* Stabilize height */
    transition: color 0.3s ease;
}



.room-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 10px;
    /* Reduced padding */
    border-top: 1px solid #e0e0e0;
    transition: all 0.4s ease;
    max-height: 300px;
    /* Enough for content */
    opacity: 1;
    overflow: hidden;
}

.room-card.shrunk .room-details {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    border-top-color: transparent;
    margin: 0;
    pointer-events: none;
}

.room-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
    white-space: nowrap;
}

.room-detail svg {
    color: #999;
}

/* Expanded Content */
.room-expanded {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    /* Closing: fast, no delay */
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.room-card.expanded .room-expanded {
    max-height: 500px;
    /* Allow enough height */
    opacity: 1;
    margin-top: 15px;
    /* Reduced margin */
    /* Opening: delay to allow width to expand first */
    transition: max-height 0.6s ease 0.3s, opacity 0.6s ease 0.3s, margin-top 0.6s ease 0.3s;
}

.room-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
    /* Reduced margin */
}

.room-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #c4704f;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.room-btn:hover {
    background-color: #001f3f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.4);
}

.room-btn-book {
    background-color: #001f3f;
    margin-left: 10px;
}

.room-btn-book:hover {
    background-color: #c4704f;
    box-shadow: 0 4px 12px rgba(196, 112, 79, 0.4);
}

/* Rooms Navigation */
.rooms-nav {
    display: flex;
    gap: 15px;
}

.rooms-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #c4704f;
    background-color: transparent;
    color: #c4704f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.rooms-nav-btn:hover {
    background-color: #c4704f;
    color: white;
}

.rooms-nav-btn svg {
    display: block;
}

/* Full Width Banner */
.full-width-banner {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Essential for parallax */
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Taller for parallax movement */
    background-image: url('assets/images/pool-image1.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.full-width-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

.full-width-banner h2 {
    position: relative;
    z-index: 2;
    color: white;
    font-family: var(--font-serif);
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    will-change: filter, transform;
    /* Optimize for animation */
    pointer-events: none;
}

/* Waterfall Garden Spa Section */
.spa-section {
    background-color: white;
    padding: 100px 5%;
    overflow: hidden;
}

.spa-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

.spa-decoration-icon {
    position: absolute;
    bottom: -20px;
    right: -120px;
    width: 300px;
    height: auto;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}

.spa-images {
    position: relative;
    flex: 1;
    min-height: 500px;
}

.spa-leaf-bg {
    position: absolute;
    top: -80px;
    left: -120px;
    width: 500px;
    height: 500px;
    z-index: 0;
    opacity: 0.3;
    transform: rotate(-15deg);
    pointer-events: none;
}

.spa-img-main {
    width: 95%;
    height: 550px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    will-change: transform;
}

.spa-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spa-img-small {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 280px;
    height: 200px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    will-change: transform;
}

.spa-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spa-img-top-left {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    /* Very strong border radius (circle) */
    overflow: hidden;
    z-index: 3;
    border: none;
    /* No stroke */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    will-change: transform;
}

.spa-img-top-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spa-content {
    flex: 1;
}

.spa-label {
    display: block;
    color: #c4704f;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.spa-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--color-dark);
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.1;
}

.spa-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}



.spa-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.spa-list li {
    color: #444;
    margin-bottom: 12px;
    font-size: 16px;
}

.spa-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #c4704f;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    opacity: 1;
    visibility: visible;
}

.spa-btn:hover {
    background-color: #001f3f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 31, 63, 0.4);
}

/* Diving Companies Section */
.diving-companies {
    margin-top: 30px;
    padding: 25px 0;
    border-top: 1px solid rgba(196, 112, 79, 0.2);
}

.diving-companies-intro {
    font-family: var(--font-sans);
    font-size: 16px;
    color: #6b4423;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.diving-companies-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.diving-companies-list li a {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-teal);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.diving-companies-list li a:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-brown);
    transition: transform 0.3s ease;
}

.diving-companies-list li a:hover {
    color: var(--color-brown);
    transform: translateX(5px);
}

.diving-companies-list li a:hover:before {
    transform: translateX(5px);
}

/* Activities Intro Section */
.activities-intro-section {
    background-color: #f8f8f8;
    padding: 100px 5%;
    overflow: hidden;
    max-width: 100vw;
}

.activities-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

.activities-intro-content {
    flex: 1;
    min-width: 0;
}

.activities-intro-content .spa-label {
    color: #c4704f;
}

.activities-intro-content .spa-title {
    color: #1a1a1a;
}

.activities-intro-content .spa-text {
    color: #666;
}

.activities-intro-content .spa-list li {
    color: #444;
}

.activities-intro-content .spa-btn {
    display: inline-block;
}

.activities-intro-video {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    position: relative;
}

.activities-intro-video video {
    width: 100%;
    max-width: 500px;
    height: 600px;
    object-fit: cover;
    border-radius: 300px;
}

.activities-boat-icon {
    position: absolute;
    top: 80%;
    right: 45%;
    transform: translateY(-50%);
    width: 240px;
    height: auto;
    z-index: 2;
    opacity: 0.9;
    pointer-events: none;
}

.activities-intro-img-overlay {
    position: absolute;
    bottom: 40px;
    left: -60px;
    width: 180px;
    height: 240px;
    overflow: hidden;
    z-index: 2;
    border: 8px solid #f8f8f8;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    will-change: transform;
}

.activities-intro-img-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activities-intro-decoration {
    position: absolute;
    top: -60px;
    right: -180px;
    width: 400px;
    height: auto;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}

@media (max-width: 968px) {
    .activities-intro-container {
        flex-direction: column-reverse;
        gap: 50px;
    }
    
    .activities-intro-video video {
        max-width: 350px;
        height: 450px;
        border-radius: 200px;
    }
    
    .activities-boat-icon {
        display: none;
    }
    
    .activities-intro-img-overlay {
        width: 140px;
        height: 180px;
        bottom: 20px;
        left: -30px;
    }
}

/* Sonambulas Dining Section */
.dining-section {
    background-color: white;
    padding: 100px 5%;
    overflow: hidden;
    max-width: 100vw;
}

.dining-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

.dining-video {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    position: relative;
}

.dining-video video {
    width: 100%;
    max-width: 500px;
    height: 600px;
    object-fit: cover;
    border-radius: 0px 300px;
}

.dining-img-overlay {
    position: absolute;
    bottom: 40px;
    right: -40px;
    width: 180px;
    height: 240px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.dining-img-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dining-content {
    flex: 1;
    min-width: 0;
}

.dining-content .spa-label {
    color: #c4704f;
}

.dining-content .spa-title {
    color: #1a1a1a;
}

.dining-content .spa-text {
    color: #666;
}

.dining-content .spa-list li {
    color: #444;
}

.dining-content .spa-btn {
    display: inline-block;
    margin-top: 30px;
    opacity: 1;
    visibility: visible;
}

.dining-decoration-icon {
    position: absolute;
    bottom: -30px;
    right: -50px;
    width: 300px;
    height: auto;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
}

@media (max-width: 968px) {
    .dining-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .dining-video video {
        max-width: 95%;
        width: 100%;
        height: 350px;
        border-radius: 40px 40px 0 0;
    }
    
    .dining-img-overlay {
        width: 140px;
        height: 180px;
        bottom: 20px;
        right: -30px;
    }
}

/* Transfers Section */
.transfers-section {
    background-color: #001f3f;
    padding: 50px 5%;
    overflow: hidden;
}

.transfers-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
}

.transfers-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.transfers-image-wrapper {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.transfers-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transfers-content {
    flex: 1;
}

.transfers-icon {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.transfers-icon img {
    width: 200px;
    height: auto;
    opacity: 0.7;
    transform: rotate(30deg);
}

.transfers-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
}

.transfers-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.transfers-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.transfers-list li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-size: 14px;
    padding-left: 18px;
    position: relative;
}

.transfers-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c4704f;
    font-size: 18px;
}

@media (max-width: 1200px) {
    .transfers-container {
        gap: 30px;
    }
    
    .transfers-icon img {
        width: 150px;
    }
}

@media (max-width: 968px) {
    .transfers-section {
        padding: 40px 5%;
    }
    
    .transfers-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .transfers-icon {
        order: -1;
    }
    
    .transfers-icon img {
        width: 180px;
        opacity: 0.5;
    }
    
    .transfers-image-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .transfers-title {
        font-size: 2rem;
    }
    
    .transfers-text {
        font-size: 14px;
    }
    
    .transfers-list {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .transfers-section {
        padding: 30px 5%;
    }
    
    .transfers-icon {
        display: none;
    }
    
    .transfers-image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .transfers-title {
        font-size: 1.8rem;
    }
}

/* Infinite Gallery Section */
.gallery-section {
    width: 100%;
    overflow: hidden;
    background-color: white;
    padding-bottom: 0;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

/* Team Section Specific Styles */
.gallery-section.team-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f9f7f3;
}

.gallery-section.team-section .section-container {
    overflow: visible;
    margin-bottom: 50px;
}

.gallery-track {
    display: flex;
    width: fit-content;
    will-change: transform;
}

.gallery-item {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    margin-right: 30px;
    /* Gap between images */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    /* No border radius */
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .nav-left > span,
    .phone-link > span {
        display: none;
        /* Hide text on mobile, keep icons */
    }
    
    .menu-btn {
        display: flex !important;
    }
    
    .menu-btn span {
        display: inline !important;
    }

    .phone-link {
        font-size: 0;
        /* Hide text trick */
    }

    .phone-link svg {
        display: block;
    }

    .nav-center {
        display: none;
    }
    
    .nav-right {
        gap: 15px;
    }
    
    .phone-link {
        padding: 8px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-mobile-logo {
        display: block;
        width: 120px;
        height: 120px;
        margin: 0 auto 30px;
    }
    
    .hero-mobile-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }

    .booking-bar {
        bottom: 20px;
        width: 95%;
    }

    .booking-bar-inner {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .booking-field {
        width: 100%;
    }

    .booking-submit {
        width: 100%;
        padding: 14px 20px;
    }

    .welcome-section {
        padding: 60px 20px;
    }

    .welcome-title {
        font-size: 2rem;
    }

    .welcome-header {
        margin-bottom: 50px;
    }

    .welcome-images {
        height: auto;
        flex-direction: column;
        gap: 30px;
        position: relative;
    }

    .welcome-illustration {
        width: 200px;
        opacity: 0.1;
    }

    .welcome-img {
        position: relative;
        width: 100%;
        height: 300px;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
    }

    .scroller-nav {
        width: 50px;
        height: 50px;
    }

    .scroller-prev {
        left: 15px;
    }

    .scroller-next {
        right: 15px;
    }

    .rooms-section {
        padding: 60px 20px;
    }

    .rooms-title {
        font-size: 2.5rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rooms-nav-btn {
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   SCROLL ANIMATION ENHANCEMENTS
   ============================================ */

/* ============================================
   ADDITIONAL MOBILE RESPONSIVENESS
   ============================================ */

/* Spa Section Mobile Styles */
@media (max-width: 768px) {
    .spa-section {
        padding: 60px 0;
    }
    
    .spa-container {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }
    
    .spa-content {
        padding: 0 20px;
    }
    
    .spa-images {
        width: 100vw;
        min-height: 400px;
        max-width: 100vw;
        margin: 0;
        margin-left: calc(-50vw + 50%);
        padding: 0;
        position: relative;
        left: 0;
        right: 0;
    }
    
    .spa-img-main {
        width: 100vw;
        height: 400px;
        margin: 0;
        padding: 0;
        position: relative;
        left: 0;
        right: 0;
    }
    
    .spa-img-main img {
        width: 100%;
        height: 100%;
        display: block;
    }
    
    .spa-img-small {
        position: relative;
        width: 100vw;
        height: 250px;
        margin: 20px 0 0 0;
        padding: 0;
        bottom: auto;
        right: auto;
        left: 0;
    }
    
    .spa-img-small img {
        width: 100%;
        height: 100%;
        display: block;
    }
    
    .spa-leaf-bg {
        width: 300px;
        height: 300px;
        left: -50px;
        top: -50px;
    }
    
    .spa-decoration-icon {
        width: 130px;
        top: 340px;
        bottom: auto;
        right: -10px;
    }
    
    .spa-content {
        width: 100%;
        text-align: left;
    }
    
    .spa-title {
        font-size: 2rem;
    }
    
    .spa-text {
        font-size: 0.95rem;
    }
    
    .spa-list {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .spa-section {
        padding: 40px 0;
    }
    
    .spa-container {
        padding: 0;
    }
    
    .spa-content {
        padding: 0 15px;
    }
    
    .spa-images {
        width: 100vw;
        min-height: 350px;
        max-width: 100vw;
        margin: 0;
        margin-left: calc(-50vw + 50%);
        padding: 0;
        position: relative;
        left: 0;
        right: 0;
    }
    
    .spa-img-main {
        width: 100vw;
        height: 350px;
        margin: 0;
        padding: 0;
        position: relative;
        left: 0;
        right: 0;
    }
    
    .spa-img-main img {
        width: 100%;
        height: 100%;
        display: block;
    }
    
    .spa-img-small {
        position: relative;
        width: 100vw;
        height: 220px;
        margin: 15px 0 0 0;
        padding: 0;
        bottom: auto;
        right: auto;
        left: 0;
    }
    
    .spa-img-small img {
        width: 100%;
        height: 100%;
        display: block;
    }
    
    .spa-title {
        font-size: 1.75rem;
    }
    
    .spa-btn {
        width: 100%;
        text-align: center;
    }
}

/* Reviews Section Mobile */
@media (max-width: 968px) {
    .reviews-section {
        padding: 60px 20px;
    }
    
    .reviews-header h2 {
        font-size: 2rem;
    }
    
    .review-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .reviews-container {
        padding: 0 10px;
    }
    
    .reviews-header {
        padding: 0 10px;
    }
    
    .reviews-header h2 {
        font-size: 1.75rem;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
}

/* FAQ Section Mobile */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-container h2 {
        font-size: 2rem;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding-right: 30px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 15px;
    }
    
    .faq-container h2 {
        font-size: 1.75rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
}

/* Gallery Section Mobile */
@media (max-width: 768px) {
    .gallery-section {
        height: 300px;
    }
    
    /* Team section needs auto height on mobile */
    .gallery-section.team-section {
        height: auto;
        padding: 60px 0;
    }
    
    .gallery-item {
        width: 250px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        height: 250px;
    }
    
    /* Team section needs auto height on mobile */
    .gallery-section.team-section {
        height: auto;
        padding: 40px 0;
    }
    
    .gallery-item {
        width: 200px;
        height: 250px;
    }
}

/* Navigation Improvements */
@media (max-width: 480px) {
    nav {
        padding: 12px 15px;
    }
    
    .logo {
        height: 55px;
    }
    
    .btn-reservation {
        font-size: 0.7rem;
        padding: 8px 10px;
    }
    
    .menu-btn {
        display: flex !important;
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .hamburger {
        width: 18px;
    }
    
    .hamburger span {
        height: 2px;
    }
    
    .nav-right {
        gap: 10px;
    }
    
    .phone-link {
        padding: 6px;
    }
    
    .phone-link svg {
        width: 20px;
        height: 20px;
    }
}

/* Hero Section Mobile Improvements */
@media (max-width: 480px) {
    .hero-mobile-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 25px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .btn {
        font-size: 0.85rem;
        padding: 12px 20px;
    }
}

/* Activities Grid Mobile */
@media (max-width: 480px) {
    .activities-section {
        padding: 60px 15px;
    }
    
    .activity-card {
        margin-bottom: 20px;
    }
    
    .activity-image {
        height: 250px;
    }
}

/* Rooms Section Mobile Improvements */
@media (max-width: 768px) {
    .rooms-section {
        padding: 60px 20px;
    }
    
    /* Hide decoration icon on mobile */
    .rooms-decoration-icon {
        display: none;
    }
    
    .rooms-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        height: auto;
    }
    
    .room-card {
        width: 100%;
        margin-bottom: 0;
        /* Remove all expand/shrink behavior on mobile */
        flex: none;
    }
    
    /* Force all cards to show full information on mobile */
    .room-card.shrunk .room-details,
    .room-details {
        opacity: 1 !important;
        max-height: none !important;
        padding-top: 15px !important;
        margin: 15px 0 !important;
        pointer-events: auto !important;
        border-top: 1px solid #e0e0e0 !important;
    }
    
    /* Force expanded content to always show on mobile */
    .room-card .room-expanded,
    .room-expanded {
        max-height: none !important;
        opacity: 1 !important;
        margin-top: 15px !important;
        overflow: visible !important;
        transition: none !important;
    }
    
    /* Hide slider buttons on mobile (they're not needed when all info is visible) */
    .room-slider-btn {
        opacity: 0.8 !important;
        pointer-events: auto !important;
    }
    
    .room-info {
        padding: 25px;
    }
    
    .room-name {
        font-size: 1.4rem;
    }
    
    .room-detail {
        font-size: 13px;
    }
    
    .room-description {
        font-size: 14px;
    }
    
    /* Ensure buttons are full width and properly aligned */
    .room-btn {
        width: 100%;
        text-align: center;
        display: block;
        margin-bottom: 10px;
        margin-left: 0 !important;
    }
    
    .room-btn-book {
        margin-left: 0 !important;
        margin-top: 0;
    }
    
    .room-expanded {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .rooms-section {
        padding: 60px 15px;
    }
    
    .rooms-title {
        font-size: 2rem;
    }
    
    .room-card {
        margin-bottom: 0;
    }
    
    .room-info {
        padding: 20px;
    }
    
    .room-name {
        font-size: 1.3rem;
    }
    
    .room-btn {
        padding: 14px 20px;
        font-size: 12px;
    }
}

/* Dining Section Mobile Improvements */
@media (max-width: 768px) {
    .dining-section {
        padding: 60px 20px;
    }
    
    .dining-decoration-icon {
        width: 150px;
        top: 20px;
        bottom: auto;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .dining-section {
        padding: 40px 15px;
    }
    
    .dining-decoration-icon {
        width: 120px;
        top: 300px;
        right: 5px;
    }
    
    .dining-video video {
        max-width: 600px;
        width: 600px;
        height: 280px;
        border-radius: 100px 100px 0 0;
    }
}

/* Activities Intro Mobile Improvements */
@media (max-width: 768px) {
    .activities-intro-section {
        padding: 60px 0;
    }
    
    .activities-intro-container {
        padding: 0;
    }
    
    .activities-intro-content {
        padding: 0 20px;
    }
    
    .activities-intro-video {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .activities-intro-video .spa-images {
        width: 100%;
        margin: 0;
    }
    
    .activities-intro-video .spa-img-main {
        width: 100%;
    }
    
    .activities-intro-decoration {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .activities-intro-section {
        padding: 40px 0;
    }
    
    .activities-intro-container {
        padding: 0;
    }
    
    .activities-intro-content {
        padding: 0 15px;
    }
    
    .activities-intro-video {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .activities-intro-video .spa-images {
        width: 100%;
        margin: 0;
    }
    
    .activities-intro-video .spa-img-main {
        width: 100%;
    }
    
    .activities-intro-video video {
        max-width: 100%;
        height: 350px;
    }
}

/* Welcome Section Mobile Improvements */
@media (max-width: 480px) {
    .welcome-section {
        padding: 40px 15px;
    }
    
    .welcome-title {
        font-size: 1.75rem;
    }
    
    .welcome-subtitle,
    .welcome-description {
        font-size: 0.9rem;
    }
}

/* Experience the Magic Banner Mobile */
@media (max-width: 768px) {
    .full-width-banner {
        height: 300px;
    }
    
    .full-width-banner h2 {
        font-size: 2.5rem;
        padding: 0 20px;
        text-align: center;
        line-height: 1.2;
    }
    
    /* Disable parallax on mobile - fix background height */
    .banner-bg {
        height: 100% !important;
    }
    
    /* Disable parallax on image scroller */
    .scroller-slide img {
        height: 100% !important;
    }
}

@media (max-width: 480px) {
    .full-width-banner {
        height: 200px;
    }
    
    .full-width-banner h2 {
        font-size: 1.8rem;
        padding: 0 15px;
        letter-spacing: 1px;
    }
    
    /* Ensure no parallax effect on mobile */
    .banner-bg {
        height: 100% !important;
    }
    
    .scroller-slide img {
        height: 100% !important;
    }
}

/* General Mobile Typography */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
    body, html {
        overflow-x: hidden;
    }
    
    .site-wrapper {
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
    }
    
    img, video {
        max-width: 100%;
        height: auto;
    }
}

/* Social Media Buttons Column */
.social-buttons-column {
    position: absolute;
    bottom: 200px;
    left: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 1000;
}

.social-media-btn {
    width: 35px;
    height: 35px;
    background-color: #1a3a52;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0;
    flex-shrink: 0;
}

.social-media-btn:hover {
    background-color: #0d2236;
    transform: scale(1.05);
}

.social-media-btn svg {
    width: 18px;
    height: 18px;
    display: block;
    margin: 0 auto;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: absolute;
    bottom: 120px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #c8956d;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0;
}

.whatsapp-btn:hover {
    background-color: #b17d54;
    transform: scale(1.05);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    display: block;
    margin: auto;
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Chat Popup */
.whatsapp-popup {
    position: absolute;
    bottom: 200px;
    left: 30px;
    width: 350px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-popup-header {
    background: #1a3a52;
    color: #fff;
    padding: 15px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-popup-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-popup-avatar {
    width: 45px;
    height: 45px;
    background: #c8956d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.whatsapp-popup-profile h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.whatsapp-popup-profile p {
    margin: 3px 0 0;
    font-size: 12px;
    opacity: 0.9;
}

.whatsapp-popup-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.whatsapp-popup-close:hover {
    opacity: 0.8;
}

.whatsapp-popup-body {
    padding: 20px;
    background: #ECE5DD;
    min-height: 120px;
}

.whatsapp-message {
    background: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.whatsapp-message::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #fff transparent transparent;
}

.whatsapp-message p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.whatsapp-message p:last-of-type {
    margin-bottom: 5px;
}

.whatsapp-time {
    font-size: 11px;
    color: #667781;
    display: block;
    text-align: right;
}

.whatsapp-popup-footer {
    padding: 15px;
    background: #fff;
    border-radius: 0 0 12px 12px;
}

.whatsapp-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    background: #c8956d;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.whatsapp-chat-btn:hover {
    background: #b17d54;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 149, 109, 0.3);
}

/* Mobile adjustments for Social Media & WhatsApp */
@media (max-width: 768px) {
    .social-buttons-column {
        bottom: 100px;
        left: 40%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 12px;
    }
    
    .social-media-btn {
        width: 45px;
        height: 45px;
    }
    
    .social-media-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .whatsapp-btn {
        bottom: 100px;
        left: 40%;
        transform: translateX(75px);
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-popup {
        bottom: 170px;
        left: 20px;
        right: 20px;
        width: auto;
        max-width: 350px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #c8956d;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #b17d54;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

.scroll-to-top svg {
    width: 28px;
    height: 28px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .scroll-to-top svg {
        width: 24px;
        height: 24px;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}