/* Reset and Base Styles */
/* Reset and Base Styles */
html,
body {
    margin: 0;
    padding: 0;
}

/* Firefox */
html {
    scrollbar-width: none;
}

/* Chrome, Edge, Safari */
html::-webkit-scrollbar {
    width: 0;
    height: 0;
}

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

/* Remove default blue outline on focus */
*:focus {
    outline: none;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Helvetica';
    font-weight: 300;
    font-size: 28px;
    line-height: 1.6;
    color: #1e1e1e;
    background-color: #d7d1c8;
    overflow-x: hidden;
}

/* Ensure all paragraph elements use Helvetica Light */
p {
    font-family: 'Helvetica';
    font-weight: 300;
}

/* Ensure all H1 elements use Helvetica Regular */
h1 {
    font-family: 'Helvetica';
    font-weight: 400;
}

/* Ensure all H2 elements use Helvetica Regular */
h2 {
    font-family: 'Helvetica';
    font-weight: 400;
}

body.floating-signup-active {
    padding-bottom: 96px;
}

/* Prevent horizontal scrolling */
* {
    box-sizing: border-box;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(215, 209, 200, 0.95);
    backdrop-filter: blur(10px);
    transition: height 0.3s ease;
    height: 120px;
}

.header.small {
    height: 60px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    transition: padding 0.3s ease;
}

.header.small .header-container {
    padding: 0 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    transition: all 0.3s ease;
    flex-direction: row-reverse;
}

.menu-btn:hover .menu-text {
    color: rgba(49, 49, 49, 0.7);
}

.menu-text {
    font-size: 14px;
    font-weight: 500;
    color: #1e1e1e;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

.hamburger {
    width: 20px;
    height: 2px;
    background-color: #1e1e1e;
    transition: all 0.3s ease;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #1e1e1e;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: rgba(49, 49, 49, 0.7);
}

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

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
}

.logo:hover {
    opacity: 0.7;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.language-selector {
    position: relative;
    display: inline-block;
}

/* Arrow indicator for dropdown */
.language-selector::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    margin-top: -2px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.language-selector.open::after {
    opacity: 1;
    visibility: visible;
}

.language-trigger {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    background: none;
    border: none;
    font-size: 14px;
    color: #1e1e1e;
    cursor: pointer;
    padding: 8px 16px 8px 0;
    transition: all 0.2s ease;
    border-bottom: 1px solid #1e1e1e;
    min-width: 80px;
    position: relative;
}

.language-trigger:hover {
    color: rgba(49, 49, 49, 0.7);
    border-bottom-color: rgba(49, 49, 49, 0.7);
    transform: translateY(-1px);
}

.modal-contact-info img {
    width: 10px;
    height: 10px;
    object-fit: contain;
}

.language-trigger:active {
    transform: translateY(0);
}

.dropdown-arrow {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 12px;
    opacity: 0.7;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #ffffff;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(49, 49, 49, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    min-width: 140px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    overflow: hidden;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.language-item {
    position: relative;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(49, 49, 49, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.language-item:last-child {
    border-bottom: none;
}

.language-item:hover {
    background-color: rgba(49, 49, 49, 0.04);
    transform: translateX(2px);
}

.language-item:active {
    background-color: rgba(49, 49, 49, 0.08);
}

.language-item span {
    font-size: 14px;
    color: #1e1e1e;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.language-item.active span {
    font-weight: 500;
    color: #1e1e1e;
}

.language-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(49, 49, 49, 0.1) 50%, transparent 100%);
    opacity: 0.5;
}

.reserve-btn {
    background-color: #1e1e1e;
    color: #d7d1c8;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reserve-btn:hover {
    background-color: rgba(49, 49, 49, 0.9);
    transform: translateY(-1px);
}

.hero-btn {
    padding: 16px 32px;
    font-size: 16px;
    margin-top: 20px;
}

/* Hero Section */
.hero {
    height: 75vh;
    overflow: hidden;
    padding-top: 120px;
    /* Account for fixed header */
    width: 100%;
    position: relative;
}

/* Hero Spacer */
.hero-spacer {
    height: 80px;
    background-color: #d7d1c8;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 75vh;
    z-index: 1;
    overflow: hidden;
    max-width: 100vw;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5/1;
    min-height: 100%;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5/1;
    min-height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1e1e1e;
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: left;
    color: #d7d1c8;
    max-width: 1200px;
    width: 100%;
    padding: 0 60px;
}

.hero-right {
    width: 15%;
    background: #d7d1c8;
}

.hero-title {
    font-family: 'Helvetica';
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -1px;
    max-width: 1000px;
}

.hero-subtitle {
    font-size: 24px;
    color: #d7d1c8;
    max-width: 1500px;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.discover-link {
    display: inline-flex;
    align-items: center;
    color: #d7d1c8;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 1px;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    gap: 8px;
    text-align: left;
}

.discover-link:hover {
    color: rgba(242, 238, 233, 0.8);
    transform: translateX(4px);
}

.discover-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.discover-link:hover::after {
    transform: translateX(4px);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-category {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #1e1e1e;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Helvetica';
    font-size: 36px;
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-description {
    font-size: 14.5px;
    color: #1e1e1e;
    max-width: 1400px;
    margin: 0 auto 40px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
}

/* Desktop experiences section description should be left-aligned */
@media (min-width: 769px) {
    .experiences-section .section-description {
        text-align: left !important;
        margin: 0 !important;
        max-width: none !important;
        width: auto !important;
        font-size: 14.5px !important;
    }
}

/* Hotels & Resorts Section */
.hotels-section {
    padding: 120px 0;
    background-color: #d7d1c8;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.featured-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease;
}

.featured-item:hover {
    transform: translateY(-8px);
}

.featured-item.large {
    grid-row: span 2;
}

.featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-item.large .featured-image {
    height: 500px;
}

.featured-content {
    padding: 32px;
}

.featured-category {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #1e1e1e;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.featured-title {
    font-family: 'Helvetica';
    font-size: 28px;
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-description {
    font-size: 16px;
    color: #1e1e1e;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Wellness Experience Section */
.wellness-experience-section {
    background-color: #d7d1c8;
    margin: 80px 0 0 0;
    padding: 0;
}

/* Make this section use the same grid width as Spa & Classes */
.wellness-experience-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* New constrained hero inside the container (replaces previous full-bleed bg) */
.wellness-hero {
    position: relative;
    height: 45vh;
    min-height: 360px;
    overflow: hidden;
    background-color: #000;
}

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

.wellness-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.wellness-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: left;
    color: #ffffff;
    max-width: 1000px;
    width: calc(100% - 80px);
    /* inner 40px gutters to match container */
    padding: 0 40px;
}

.wellness-title {
    font-family: 'Helvetica';
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.wellness-description {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 36px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 500px;
}

.wellness-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.wellness-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Spa and Classes Section */
.spa-classes-section {
    padding: 60px 0 20px 0;
    background-color: #d7d1c8;
}

.spa-classes-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

.spa-classes-section .section-header {
    text-align: left;
}

.spa-classes-section .section-title {
    font-size: 24px;
    margin-bottom: 16px;
}

.spa-classes-section .section-description {
    margin: 0 0 40px 0;
    font-size: 14.5px;
    line-height: 1.5;
}

/* Wellness Facilities Carousel */
.wellness-facilities-carousel {
    position: relative;
    overflow: visible;
    width: 100%;
    margin-top: 60px;
}

.facilities-cards {
    display: flex;
    gap: 32px;
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
    /* Space for scrollbar if visible */
}

.facilities-cards::-webkit-scrollbar {
    display: none;
}

.facilities-cards.dragging {
    cursor: grabbing;
    user-select: none;
    scroll-behavior: auto;
}

.facilities-cards:not(.dragging) {
    cursor: grab;
    scroll-behavior: smooth;
}

.facilities-cards {
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
}

.facility-card {
    flex: 0 0 550px;
    width: 550px;
    height: auto;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: opacity 0.1s ease;
}

/* Mobile Vertical Stacking for Facilities Cards (first carousel only) */
@media (max-width: 768px) {

    /* Stack cards vertically and remove horizontal scrolling */
    .spa-classes-section .facilities-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 0;
        width: 100%;
        max-width: 100vw;
        /* Never exceed viewport width */
        overflow: visible;
    }

    .spa-classes-section .facility-card {
        width: 100%;
        max-width: none;
        margin: 0;
        flex: none;
        padding-left: 0;
        /* Remove padding so card touches left edge */
    }

    /* Membership page: widen facilities carousel cards on mobile */
    .membership-page .spa-classes-section .facility-card {
        width: 100%;
        max-width: min(366px, 100%);
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
    }

    .membership-page .spa-classes-section .facility-card .card-image {
        width: min(366px, 100%) !important;
        height: 200px;
        margin: 0 auto !important;
        padding: 0;
        aspect-ratio: auto;
    }

    .membership-page .spa-classes-section .facility-card .card-content,
    .membership-page .spa-classes-section .facility-card .card-footer {
        width: 100%;
        max-width: min(366px, 100%);
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
    }

    .spa-classes-section .facility-card .card-image {
        width: 280px;
        /* Fixed width as requested */
        height: 280px;
        /* Fixed height as requested */
        max-width: none;
        margin: 0 0 0 -24px;
        /* Negative margin to align with text */
        padding: 0;
        aspect-ratio: unset;
        /* Remove aspect ratio for fixed dimensions */
    }

    /* Hide carousel UI on mobile */
    .spa-classes-section .carousel-arrow-right,
    .spa-classes-section .facilities-navigation {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .spa-classes-section .facilities-cards {
        gap: 20px;
        width: 100%;
        max-width: 100vw;
        /* Never exceed viewport width */
        overflow: visible;
    }

    .spa-classes-section .facility-card {
        width: 100%;
        max-width: none;
        margin: 0;
        padding-left: 0;
        /* Remove padding so card touches left edge */
    }

    .spa-classes-section .facility-card .card-image {
        width: 280px;
        /* Fixed width as requested */
        height: 280px;
        /* Fixed height as requested */
        max-width: none;
        margin: 0 0 0 -24px;
        /* Negative margin to align with text */
        padding: 0;
        aspect-ratio: unset;
        /* Remove aspect ratio for fixed dimensions */
    }
}

.facility-card.partially-visible {
    opacity: 0.4;
}

.facility-card .card-image {
    position: relative;
    width: 550px;
    height: 345px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

/* Trainers page desktop: Make experience cards square with proper spacing */
@media (min-width: 769px) {
    .trainers-page .experience-card .card-image {
        height: 400px !important;
        width: 400px !important;
        aspect-ratio: 1 !important;
    }

    .trainers-page .experience-card {
        flex: 0 0 400px !important;
        width: 400px !important;
        margin-right: 32px !important;
    }

    .trainers-page .experience-card:last-child {
        margin-right: 0 !important;
    }
}

/* Trainers page mobile: Use spa-classes-section mobile behavior */
@media (max-width: 768px) {

    /* Override experiences-section mobile behavior */
    .trainers-page .experiences-section {
        padding: 32px 0 10px 0;
        background-color: #d7d1c8;
    }

    .trainers-page .experiences-section .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .trainers-page .experiences-section .experiences-layout {
        display: block;
    }

    .trainers-page .experiences-section .experiences-header {
        text-align: left;
        margin-bottom: 60px;
    }

    .trainers-page .experiences-section .section-title {
        font-size: clamp(24px, 3vw, 36px);
        margin-bottom: 16px;
    }

    .trainers-page .experiences-section .section-description {
        margin: 0 0 40px 0;
        font-size: 14.5px;
        line-height: 1.5;
    }

    .trainers-page .experiences-content {
        position: relative;
        overflow: visible;
        width: 100%;
        margin-top: 60px;
    }

    .trainers-page .experiences-cards {
        display: flex;
        gap: 40px;
        width: 100%;
        overflow-x: scroll;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 20px 20px 20px;
    }

    .trainers-page .experiences-cards::-webkit-scrollbar {
        display: none;
    }

    .trainers-page .experience-card {
        flex: 0 0 280px;
        width: 280px;
        height: auto;
        display: flex;
        flex-direction: column;
        cursor: pointer;
        transition: opacity 0.1s ease;
        margin-right: 32px !important;
    }

    .trainers-page .experience-card:last-child {
        margin-right: 0 !important;
    }

    .trainers-page .experience-card .card-image {
        position: relative;
        width: 280px;
        height: 280px;
        overflow: hidden;
        aspect-ratio: 1;
    }

    .trainers-page .experience-card .card-bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .trainers-page .experience-card .card-content {
        padding: 24px 0;
        color: #1e1e1e;
        background: #d7d1c8;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .trainers-page .experience-card .card-title {
        font-size: 24px;
        font-weight: 400;
        color: #1e1e1e;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .trainers-page .experience-card .card-description {
        font-size: 14.5px;
        color: #1e1e1e;
        line-height: 1.6;
        flex: 1;
    }

    .trainers-page .experience-card .card-footer {
        padding: 8px 0 0 0;
        margin-top: auto;
    }

    .trainers-page .experience-card .card-link {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        color: #1e1e1e;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        padding: 12px 0 8px 0;
        border-bottom: 1px solid #1e1e1e;
        width: auto;
        transition: color 0.3s ease;
    }

    .trainers-page .experience-card .card-link:hover {
        color: rgba(49, 49, 49, 0.7);
        border-bottom-color: rgba(49, 49, 49, 0.7);
    }

    /* Hide navigation on mobile */
    .trainers-page .experiences-navigation {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .trainers-page .experiences-section .container {
        padding: 0 16px;
    }

    .trainers-page .experiences-cards {
        gap: 32px;
        padding: 0 20px;
        padding-bottom: 16px;
    }

    .trainers-page .experience-card {
        flex: 0 0 280px;
        width: 280px;
        max-width: 280px;
        margin-right: 24px !important;
    }

    .trainers-page .experience-card:last-child {
        margin-right: 0 !important;
    }

    .trainers-page .experience-card .card-image {
        width: 280px;
        height: 280px;
    }
}


.facility-card .card-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.facility-card .card-content {
    padding: 24px 0;
    color: #1e1e1e;
    background: #d7d1c8;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.facility-card .card-category {
    font-size: 10px;
    font-family: var(--base-font, 'Helvetica');
    font-weight: 500;
    letter-spacing: 2px;
    color: #1e1e1e;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.facility-card .card-title {
    font-family: var(--accent-font, 'Helvetica');
    font-size: 20px;
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.facility-card .card-description {
    font-family: var(--base-font, 'Helvetica');
    font-size: 14.5px;
    color: #1e1e1e;
    line-height: 1.6;
    flex: 1;
}

.facility-card .card-footer {
    padding: 8px 0 0 0;
    margin-top: auto;
}

.facility-card .card-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: #1e1e1e;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 0 8px 0;
    border-bottom: 1px solid #1e1e1e;
    width: auto;
    transition: color 0.3s ease;
}

.facility-card .card-link:hover {
    color: rgba(49, 49, 49, 0.7);
    border-bottom-color: rgba(49, 49, 49, 0.7);
}

/* Facilities Navigation */
.facilities-navigation {
    margin-top: 70px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Carousel Arrow Indicator */
.carousel-arrow-right {
    position: absolute;
    top: 50%;
    right: 12px;
    /* sit just inside the carousel gutter */
    transform: translateY(-50%);
    padding: 6px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.12s ease, opacity 0.12s ease;
    opacity: 0.98;
    z-index: 100;
    border-radius: 4px;
    border: none;
    box-shadow: none;
}

/* Arrow head only — wider angled wings, no long shaft */
.carousel-arrow-right svg {
    width: 40px;
    height: 40px;
    display: block;
    color: #1e1e1e;
    position: relative;
    z-index: 1;
}

/* Use sharp, non-rounded geometry for the arrow (butt caps, miter joins) */
.carousel-arrow-right line,
.carousel-arrow-right polyline {
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: butt;
    stroke-linejoin: miter;
    fill: none;
}

/* Visible state */
.carousel-arrow-right.visible {
    opacity: 1;
    visibility: visible;
}

/* Hover: subtle scale/translate for affordance */
.carousel-arrow-right:hover {
    transform: translateY(-50%) translateX(6px) scale(1.02);
    opacity: 1;
}

/* Slightly smaller on narrower viewports */
@media (max-width: 1024px) {
    .carousel-arrow-right svg {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 768px) {
    .carousel-arrow-right {
        right: 8px;
    }

    .carousel-arrow-right svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .carousel-arrow-right svg {
        width: 24px;
        height: 24px;
    }
}

.facilities-navigation .nav-segments {
    display: flex;
    width: 100%;
    height: 2px;
    margin-bottom: 2px;
}

.facilities-navigation .nav-segment {
    flex: 1;
    height: 100%;
    background-color: rgba(49, 49, 49, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.facilities-navigation .nav-segment:hover {
    background-color: rgba(49, 49, 49, 0.4);
}

.facilities-navigation .nav-segment.active {
    background-color: #1e1e1e;
}

:root {
    --card-width: 400px;
    --card-height: 380px;
    --gap: 32px;
    --base-font: 'Helvetica';
    --accent-font: 'Helvetica';
}

/* Seasonal Experiences Section */
.experiences-section {
    padding: 10px 0 60px 0;
    background-color: #d7d1c8;
}

.experiences-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.experiences-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: flex-start;
}

.experiences-header {
    padding-top: 0px;
    position: relative;
    width: 100%;
}

.experiences-header .section-title {
    font-size: clamp(24px, 3vw, 36px);
    margin: 16px 0;
    text-align: left;
    font-family: var(--accent-font);
    font-weight: 300;
}

.experiences-header .section-description {
    font-size: 14.5px;
    line-height: 1.5;
    color: #1e1e1e;
    margin: 0;
    max-width: none;
    font-family: var(--base-font);
    text-align: left;
    font-weight: 300;
}

.experiences-content {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.experiences-content::before,
.experiences-content::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 2px;
    z-index: 2;
    pointer-events: none;
    background: #d7d1c8;
}

.experiences-content::before {
    left: -2px;
}

.experiences-content::after {
    right: -2px;
}


.experiences-cards {
    display: flex;
    gap: var(--gap);
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.experiences-cards::-webkit-scrollbar {
    display: none;
}

/* Drag scrolling styles */
.experiences-cards.dragging {
    cursor: grabbing;
    user-select: none;
    scroll-behavior: auto;
    /* Disable smooth scrolling during drag for better performance */
}

.experiences-cards:not(.dragging) {
    cursor: grab;
    scroll-behavior: smooth;
    /* Re-enable smooth scrolling when not dragging */
}

/* Improve scroll performance */
.experiences-cards {
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
}

/* Hide scrollbar but keep functionality */
.experiences-cards::-webkit-scrollbar {
    display: none;
}

.experiences-cards {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.experience-card {
    flex: 0 0 var(--card-width);
    width: var(--card-width);
    height: auto;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: opacity 0.1s ease;
}

.experience-card.partially-visible {
    opacity: 0.4;
}

.card-image {
    position: relative;
    width: var(--card-width);
    height: var(--card-width);
    overflow: hidden;
    aspect-ratio: 1;
}

.card-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Trainer Instagram Overlay */
.trainer-instagram-overlay {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 10;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    width: auto;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.9);
    transform: translateY(-2px);
    border-color: rgba(228, 64, 95, 0.3);
}

.instagram-link .instagram-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.instagram-link span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}


.card-content {
    padding: 24px 0;
    color: #1e1e1e;
    background: #d7d1c8;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    font-size: 10px;
    font-family: var(--base-font);
    font-weight: 500;
    letter-spacing: 2px;
    color: #1e1e1e;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.card-title {
    font-family: var(--accent-font);
    font-size: 24px;
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-description {
    font-family: var(--base-font);
    font-size: 15px;
    color: #1e1e1e;
    line-height: 1.6;
    flex: 1;
}

.card-footer {
    padding: 8px 0 0 0;
    margin-top: auto;
}

.card-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: #1e1e1e;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 0 8px 0;
    border-bottom: 1px solid #1e1e1e;
    width: auto;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: rgba(49, 49, 49, 0.7);
    border-bottom-color: rgba(49, 49, 49, 0.7);
}

/* Experiences Navigation */
.experiences-navigation {
    margin-top: 70px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.nav-segments {
    display: flex;
    width: 100%;
    height: 2px;
    margin-bottom: 2px;
}

.nav-segment {
    flex: 1;
    height: 100%;
    background-color: rgba(49, 49, 49, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.nav-segment:hover {
    background-color: rgba(49, 49, 49, 0.4);
}

.nav-segment.active {
    background-color: #1e1e1e;
}



/* The World of Axis Towers Wellness Section */
.world-aman-section {
    padding: 120px 0;
    background-color: #d7d1c8;
}

.world-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.world-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.world-item:hover {
    transform: translateY(-8px);
}

.world-image-container {
    position: relative;
    overflow: hidden;
}

.world-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.world-item:hover .world-image {
    transform: scale(1.05);
}

.world-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(49, 49, 49, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #d7d1c8;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.overlay-logo {
    font-family: 'Helvetica';
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.overlay-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
}

.world-content {
    padding: 32px;
}

.world-category {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #1e1e1e;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.world-title {
    font-family: 'Helvetica';
    font-size: 24px;
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 16px;
    line-height: 1.3;
}

.world-description {
    font-size: 16px;
    color: #1e1e1e;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Interactive Benefits Section */
.interactive-benefits-section {
    padding: 100px 0 0 0;
    /* increased spacing from the hero section above */
    background-color: #d7d1c8;
    min-height: 100vh;
}

.benefits-container {
    display: flex;
    min-height: 100vh;
    width: 50%;
    /* reduced from 70% to 50% */
    margin: 0 auto;
    /* center horizontally */
    max-width: none;
    /* allow 50% to govern width */
}

.benefits-sidebar {
    width: 400px;
    background-color: #d7d1c8;
    color: #1e1e1e;
    padding: 0;
    display: flex;
    align-items: center;
}

.benefits-list {
    width: 100%;
    padding: 40px 0;
    background-color: #d7d1c8;
}

.benefit-item {
    padding: 20px 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(49, 49, 49, 0.1);
    position: relative;
    background-color: transparent;
    display: block;
}

.benefit-item:last-child {
    border-bottom: 1px solid rgba(49, 49, 49, 0.1);
}

/* Accordion panel (simple text, no animations) */
.benefit-panel {
    display: none;
    padding-top: 12px;
    color: #1e1e1e;
    font-size: 14px;
    line-height: 1.6;
}

/* Show panel when item is open */
.benefit-item.open .benefit-panel {
    display: block;
}

.benefit-panel-title {
    font-family: 'Helvetica';
    font-size: 18px;
    font-weight: 400;
    color: #1e1e1e;
    margin: 8px 0;
}

.benefit-panel-description {
    font-size: 14px;
    color: #1e1e1e;
    opacity: 0.9;
    margin: 0;
}

.benefit-item.active {
    background-color: transparent;
}

.benefit-item.active {
    background-color: #d7d1c8;
}

.benefit-name {
    font-family: 'Helvetica';
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
    color: #1e1e1e;
    text-transform: uppercase;
}

.benefit-item.active .benefit-name {
    font-weight: 500;
    color: #1e1e1e;
}

.benefit-item.active .benefit-name {
    font-weight: 500;
    color: #1e1e1e;
}

.benefits-content {
    flex: 1;
    display: flex;
    position: relative;
}

.benefit-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.content-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-details {
    width: 400px;
    background-color: #d7d1c8;
    padding: 60px 40px;
    overflow-y: auto;
    border-left: 1px solid rgba(49, 49, 49, 0.1);
    display: none;
    /* hide right text column – we show details under each item */
}

.benefit-info {
    display: none;
}

.benefit-info.active {
    display: block;
}

.benefit-title {
    font-family: 'Helvetica';
    font-size: 32px;
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 24px;
    line-height: 1.3;
}

.benefit-description {
    font-size: 16px;
    color: #1e1e1e;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* Scope grid card styling so it does not affect membership left list */
.benefits-grid .benefit-item {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.benefits-grid .benefit-item:hover {
    transform: translateY(-8px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(49, 49, 49, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e1e1e;
}

.benefit-title {
    font-family: 'Helvetica';
    font-size: 24px;
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 16px;
    line-height: 1.3;
}

.benefit-description {
    font-size: 16px;
    color: #1e1e1e;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background-color: #d7d1c8;
    border-top: 1px solid rgba(49, 49, 49, 0.1);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.newsletter-left {
    flex: 0 0 auto;
    text-align: left;
}

.newsletter-center {
    flex: 1;
    text-align: left;
    padding: 0 20px;
}

.newsletter-right {
    flex: 0 0 auto;
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: center;
}

.newsletter-title {
    font-family: 'Helvetica';
    font-size: 38px;
    font-weight: 400;
    color: #1e1e1e;
    margin: 0;
    text-align: left;
}

.newsletter-description {
    font-size: 13px;
    color: #1e1e1e;
    margin: 0;
    line-height: 1.6;
    max-width: 500px;
    font-weight: 400;
}

.signup-btn {
    background-color: #1e1e1e;
    color: #d7d1c8;
    border: none;
    padding: 16px 64px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 280px;
}

.signup-btn:hover {
    background-color: rgba(49, 49, 49, 0.9);
    transform: translateY(-2px);
}

.contact-btn {
    background-color: transparent;
    color: #d7d1c8;
    border: 1px solid #d7d1c8;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    align-self: flex-start;
}

.contact-btn:hover {
    background-color: #d7d1c8;
    color: #1e1e1e;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .header-container {
        padding: 0 12px;
    }

    .hero-content {
        padding: 0 24px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .featured-item.large {
        grid-row: span 1;
    }

    .spa-classes-grid {
        grid-template-columns: 60% 40%;
        gap: 24px;
    }

    .spa-classes-item.large {
        grid-row: span 1;
    }

    .spa-classes-grid {
        grid-template-columns: 60% 40%;
        gap: 0px;
    }

    .experiences-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-content: flex-start;
    }

    .experiences-header {
        text-align: left;
        padding-top: 0;
    }

    .experiences-header .section-title {
        text-align: left;
    }

    .experiences-cards {
        gap: 16px;
        width: 100%;
        overflow-x: auto;
    }

    .card-image {
        width: 450px;
        height: 450px;
        aspect-ratio: 1;
    }

    .card-content {
        padding: 32px 24px 24px 24px;
    }

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

    .experiences-content::after {
        width: 2px;
    }

    .newsletter-content {
        gap: 32px;
    }

    .newsletter-description {
        max-width: 350px;
    }

    .signup-btn {
        min-width: 160px;
        padding: 14px 40px;
    }

    .carousel-arrow-right {
        right: -50px;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        font-size: 18px;
        border-width: 1px;
    }

    /* Trainers Carousel Responsive - Tablet */
    .trainers-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-content: flex-start;
    }

    .trainers-header {
        text-align: left;
        padding-top: 0;
    }

    .trainers-header .section-title {
        text-align: left;
    }

    .trainers-cards {
        gap: 16px;
        width: 100%;
        overflow-x: auto;
    }

    .card-image {
        width: 450px;
        height: 450px;
        aspect-ratio: 1;
    }

    .card-content {
        padding: 32px 24px 24px 24px;
    }

    /* Trainer Instagram Overlay Responsive - Tablet */
    .trainer-instagram-overlay {
        bottom: 12px;
        right: 12px;
    }

    .instagram-link {
        gap: 6px;
        font-size: 11px;
        padding: 8px;
    }

    .instagram-link .instagram-icon {
        width: 16px;
        height: 16px;
    }

    .benefits-container {
        flex-direction: row;
    }

    .benefits-sidebar {
        width: 340px;
        min-height: auto;
    }

    .benefits-list {
        display: block;
        overflow: visible;
        padding: 20px 0;
    }

    .benefit-item {
        padding: 16px 0;
        white-space: normal;
        border-left: none;
        border-bottom: 1px solid rgba(49, 49, 49, 0.1);
    }

    .benefit-item.active {
        border-left: none;
        border-bottom-color: rgba(49, 49, 49, 0.1);
        background-color: transparent;
    }

    .benefits-content {
        flex-direction: row;
        min-height: auto;
    }

    .benefit-details {
        width: 100%;
        padding: 40px 24px;
    }

    .benefit-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {

    /* Mobile font styling - Helvetica Light for body, Helvetica Regular for headings */
    body {
        font-family: 'Helvetica';
        font-weight: 300;
    }

    /* Headings - ensure Helvetica regular weight and Helvetica family */
    h2,
    .hero-title,
    .section-title,
    .featured-title,
    .wellness-title,
    .world-title,
    .benefit-title,
    .newsletter-title,
    .trainers-title,
    .offer-headline,
    .spa-right-title,
    .brochure-title,
    .faq-question,
    .trainers-info-name,
    .benefit-name,
    .card-title,
    .facility-card .card-title,
    .experience-card .card-title,
    .trainer-card .card-title {
        font-family: 'Helvetica';
    }

    .header-container {
        height: 70px;
    }

    .header-right {
        gap: 16px;
    }

    .reserve-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Hide "Menu" text from burger button on mobile */
    .menu-text {
        display: none;
    }

    /* Move search button to right edge on mobile */
    .header-left .search-btn {
        position: absolute;
        right: 20px;
    }

    /* Hide language selector and "Join Today" button on mobile, keep only search */
    @media (max-width: 768px) {

        .language-selector,
        .reserve-btn {
            display: none;
        }
    }

    /* Show language selector in burger menu footer on mobile */
    @media (max-width: 768px) {
        .burger-language-selector {
            display: block !important;
            order: 2;
            /* Place after reserve button */
        }

        .burger-menu-reserve {
            display: none !important;
        }
    }

    /* Show Join Now button in burger menu footer on desktop */
    @media (min-width: 769px) {
        .burger-menu-reserve {
            display: block !important;
        }

        .burger-language-selector {
            display: none !important;
        }
    }

    .burger-menu-footer {
        padding: 24px 24px;
        gap: 16px;
    }

    /* Burger language dropdown: clean slide-out list */
    .burger-language-selector {
        position: relative;
        display: flex;
        align-items: center;
    }

    .burger-language-selector .language-trigger {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        padding: 12px 16px;
        color: #1e1e1e;
        font-size: 14px;
        font-weight: 400;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 100px;
        justify-content: center;
    }

    .burger-language-selector .language-trigger:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-1px);
    }

    .burger-language-selector .language-trigger::after {
        content: '▼';
        font-size: 10px;
        transition: transform 0.3s ease;
        opacity: 0.7;
    }

    .burger-language-selector .language-dropdown.show+.language-trigger::after {
        transform: rotate(180deg);
    }

    .burger-language-selector .language-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 8px;
        max-width: 100%;
        max-height: 50vh;
        overflow: auto;
        z-index: 3000;
        background: #ffffff;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(49, 49, 49, 0.15);
        border-radius: 12px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
        padding: 8px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .burger-language-selector .language-dropdown.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .burger-language-selector .language-dropdown .language-item {
        border-bottom: 1px solid rgba(49, 49, 49, 0.08);
        padding: 14px 20px;
        margin: 0;
        background: transparent;
        transition: all 0.2s ease;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .burger-language-selector .language-dropdown .language-item:hover {
        background-color: rgba(49, 49, 49, 0.04);
        transform: translateX(2px);
    }

    .burger-language-selector .language-dropdown .language-item:active {
        background-color: rgba(49, 49, 49, 0.08);
    }

    .burger-language-selector .language-dropdown .language-item:last-child {
        border-bottom: none;
    }

    .burger-language-selector .language-dropdown .language-item span {
        font-size: 14px;
        color: #1e1e1e;
        font-weight: 400;
        letter-spacing: 0.3px;
    }

    .burger-language-selector .language-dropdown .language-item.active span {
        font-weight: 500;
        color: #1e1e1e;
    }

    /* Burger Menu Mobile Styles */
    .burger-menu {
        width: 280px;
        /* Fixed width on mobile instead of percentage */
        min-width: 280px;
    }

    .burger-menu-header {
        padding: 24px 24px;
    }

    .burger-menu-nav {
        padding: 24px;
    }

    .burger-menu-footer {
        padding: 24px;
    }

    .burger-menu-link {
        font-size: 16px;
    }

    .hero {
        height: auto;
        padding-top: 70px;
        /* Account for smaller mobile header */
        background: #d7d1c8;
    }

    .hero-video-container {
        position: relative;
        height: 40vh;
        min-height: 250px;
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        position: relative;
        text-align: center;
        color: #1e1e1e;
        padding: 40px 24px;
        transform: none;
        top: auto;
        left: auto;
        margin: 0 auto;
        max-width: 100%;
    }

    .membership-page .spa-classes-section .container {
        padding: 0 40px;
    }

    .hero-title {
        color: #1e1e1e;
        font-weight: 400;
    }

    .hero-subtitle {
        color: #1e1e1e;
        opacity: 0.8;
    }

    .hero-video {
        object-fit: cover;
        object-position: center;
        min-height: 100%;
        width: 100%;
    }

    .hero-title {
        font-size: clamp(24px, 4vmin, 48px);
    }

    .membership-page .hero-content .hero-title {
        font-weight: 400 !important;
    }

    .hotels-section,
    .experiences-section,
    .world-aman-section,
    .spa-classes-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .experiences-cards {
        gap: 16px;
        width: 100%;
        overflow-x: auto;
    }

    .experience-card {
        width: 400px;
        min-height: 400px;
        padding: 0;
    }

    .card-image {
        width: 320px;
        height: 320px;
        aspect-ratio: 1;
    }

    .card-content {
        padding: 20px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description {
        font-size: 13px;
    }

    .nav-line {
        width: 200px;
    }

    .world-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .newsletter-title {
        font-size: 36px;
    }

    .newsletter-section .newsletter-right {
        padding-bottom: 90px;
    }

    .newsletter-section .signup-btn.is-floating {
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 16px;
        min-width: 0;
        width: auto;
        padding: 16px 24px;
        text-align: center;
        border-radius: 6px;
        box-shadow: 0 12px 24px rgba(30, 30, 30, 0.25);
        z-index: 1200;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .newsletter-section .signup-btn.is-floating:active {
        transform: scale(0.98);
    }

    .experiences-content::after {
        width: 2px;
    }

    .carousel-arrow-right {
        right: -45px;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        font-size: 16px;
        border-width: 1px;
    }

    /* Trainers Carousel Responsive - Mobile */
    .trainers-section {
        padding: 80px 0 60px 0;
        overflow: visible;
    }

    .trainers-layout {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 0 16px;
    }

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

    .trainers-header .section-title,
    .trainers-header .section-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .trainers-header .section-description {
        max-width: 520px;
    }

    .trainers-content {
        overflow: visible;
    }

    .trainers-content::before,
    .trainers-content::after {
        display: none;
    }

    .trainers-cards {
        display: block !important;
        width: 100%;
        max-width: 100vw;
        padding: 0 16px 32px 16px;
        overflow: visible !important;
        scroll-snap-type: none;
        gap: 0;
    }

    .trainers-cards .trainer-card {
        display: block;
        width: 100% !important;
        max-width: 360px;
        margin: 0 auto 24px;
        flex: initial !important;
        scroll-snap-align: unset;
    }

    .trainers-cards .trainer-card:last-child {
        margin-bottom: 0;
    }

    .trainers-cards .trainer-card .card-image {
        width: 100% !important;
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
        aspect-ratio: 1 / 1;
    }

    .trainers-cards .trainer-card picture,
    .trainers-cards .trainer-card picture img,
    .trainers-cards .trainer-card .card-bg-image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .trainers-cards .trainer-card,
    .trainers-cards .trainer-card.partially-visible {
        opacity: 1;
    }

    .trainers-cards .trainer-card .card-content,
    .trainers-cards .trainer-card .card-footer {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .trainers-cards .trainer-card .card-content {
        padding: 16px 0 8px 0;
    }

    .trainers-navigation,
    .trainers-carousel-arrow {
        display: none !important;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description {
        font-size: 13px;
    }

    /* Trainer Instagram Overlay Responsive - Mobile */
    .trainer-instagram-overlay {
        bottom: 10px;
        right: 10px;
    }

    .instagram-link {
        gap: 4px;
        font-size: 10px;
        padding: 6px;
    }

    .instagram-link .instagram-icon {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-container {
        padding: 0 8px;
    }

    .hero-content {
        padding: 0 16px;
    }

    /* Burger Menu Small Mobile Styles */
    .burger-menu {
        width: 100%;
        /* Full width on very small screens */
        min-width: 100%;
    }

    .burger-menu-header {
        padding: 20px 16px;
    }

    .burger-menu-nav {
        padding: 20px 16px;
    }

    .burger-menu-footer {
        padding: 20px 16px;
    }

    .burger-menu-link {
        font-size: 16px;
        padding: 12px 0;
    }

    .logo {
        font-size: 24px;
    }

    .hero-title {
        font-size: clamp(20px, 3.5vmin, 36px);
    }

    .membership-page .hero-content .hero-title {
        font-weight: 400;
    }

    .hero {
        height: auto;
        padding-top: 70px;
        /* Account for mobile header */
        background: #d7d1c8;
    }

    .hero-video-container {
        position: relative;
        height: 35vh;
        min-height: 200px;
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        position: relative;
        text-align: center;
        color: #1e1e1e;
        padding: 32px 16px;
        transform: none;
        top: auto;
        left: auto;
        margin: 0 auto;
        max-width: 100%;
    }

    .membership-page .spa-classes-section .container {
        padding: 0 16px;
    }

    .hero-title {
        color: #1e1e1e;
    }

    .hero-subtitle {
        color: #1e1e1e;
        opacity: 0.8;
    }

    .hero-video {
        object-fit: cover;
        object-position: center;
        min-height: 100%;
        width: 100%;
    }

    .featured-content,
    .world-content,
    .spa-classes-content {
        padding: 24px;
    }

    .featured-title {
        font-size: 24px;
    }

    .world-title {
        font-size: 20px;
    }

    .spa-classes-title {
        font-size: 24px;
    }

    .newsletter-title {
        font-size: 22px;
    }

    .newsletter-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .newsletter-left,
    .newsletter-center,
    .newsletter-right {
        text-align: center;
    }

    .newsletter-center {
        padding: 0;
    }

    .signup-btn {
        min-width: 180px;
        padding: 14px 32px;
    }

    .benefits-sidebar {
        min-height: 150px;
    }

    .benefits-list {
        padding: 16px 0;
    }

    .benefit-item {
        padding: 16px 0;
        font-size: 14px;
        background-color: transparent;
        border: none;
        border-bottom: 1px solid rgba(49, 49, 49, 0.1);
        outline: none;
        box-shadow: none;
    }

    .benefits-content {
        min-height: 50vh;
    }

    .benefit-details {
        padding: 24px 16px;
    }

    .benefit-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .benefit-description {
        font-size: 14px;
    }
}

/* Experiences section stacked layout on mobile */
@media (max-width: 768px) {
    .experiences-section {
        padding: 60px 0 80px 0;
    }

    .membership-page .experiences-header .section-title {
        font-weight: 400;
    }

    .experiences-section .container {
        padding: 0 16px;
    }

    .experiences-section .experiences-header {

        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .experiences-section .section-title,
    .experiences-section .section-description {
        width: 100%;
        text-align: center;
    }

    .membership-page .experiences-header {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .membership-page .experiences-header .section-title,
    .membership-page .experiences-header .section-description {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .membership-page .experiences-section .experiences-cards {
        gap: 2px;
        row-gap: 2px;
    }

    .membership-page .experiences-section .experience-card {
        padding: 0;
        width: 100%;
    }

    .membership-page .experiences-section .experience-card .card-content {
        padding: 6px 0 3px 0;
        width: 100%;
        margin: 0 auto;
    }

    .membership-page .experiences-section .experience-card .card-image {
        width: 100%;
        height: 240px;
        margin: 0 auto;
    }

    .membership-page .experiences-section .experience-card .card-footer {
        margin-top: 2px;
        padding-top: 0;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .experiences-section .experiences-layout {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .experiences-section .experiences-header {
        text-align: center;
    }

    .experiences-section .experiences-content {
        overflow: visible;
    }

    .experiences-section .experiences-content::before,
    .experiences-section .experiences-content::after {
        display: none;
    }

    /* Mobile-only: Stack cards vertically instead of horizontal scrolling */
    .experiences-section .experiences-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        row-gap: 12px;
        column-gap: 0;
        overflow: visible;
        scroll-behavior: auto;
        padding-bottom: 0;
    }

    .experiences-section .experiences-cards.dragging {
        cursor: auto;
    }

    .experiences-section .experience-card {
        flex: none;
        width: 100%;
        max-width: none;
        opacity: 1;
    }

    .experiences-section .experience-card.partially-visible {
        opacity: 1;
    }

    .experiences-section .experience-card .card-image {
        width: 100%;
        height: 240px;
        aspect-ratio: auto;
    }

    .experiences-section .experience-card .card-bg-image {
        width: 100%;
        height: 100%;
    }

    .experiences-section .experiences-navigation {
        display: none;
    }

}

@media (max-width: 480px) {
    .experiences-section .experience-card .card-image {
        height: 200px;
    }
}

/* 30:30:40 Aspect Ratio Implementation */
.aspect-ratio-30-30-40 {
    aspect-ratio: 30/40;
}

.aspect-ratio-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

.aspect-ratio-left {
    width: 30%;
    background: #d7d1c8;
}

.aspect-ratio-center {
    width: 30%;
    background: #1e1e1e;
}

.aspect-ratio-right {
    width: 40%;
    background: #d7d1c8;
}

/* Burger Menu Styles */
.burger-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(49, 49, 49, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.burger-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.burger-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
}

.burger-menu-overlay.open .burger-menu {
    transform: translateX(0);
}

.burger-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
    border-bottom: 1px solid rgba(49, 49, 49, 0.1);
}

.burger-menu-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}

.burger-logo-image {
    height: 32px;
    width: auto;
    max-width: 150px;
}

.burger-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #1e1e1e;
    transition: color 0.3s ease;
}

.burger-menu-close:hover {
    color: rgba(49, 49, 49, 0.7);
}

.burger-menu-nav {
    flex: 1;
    padding: 24px;
}

.burger-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Even more compact spacing for all burger menu items */
.burger-menu-item {
    margin-bottom: 12px;
}

.burger-menu-link {
    font-family: 'Helvetica';
    font-size: 18px;
    font-weight: 400;
    color: #1e1e1e;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
}

.burger-menu-link:hover {
    color: rgba(49, 49, 49, 0.7);
}

.burger-menu-link.active {
    color: #1e1e1e;
    font-weight: 500;
    cursor: default;
}

.burger-menu-footer {
    padding: 32px 40px;
    border-top: 1px solid rgba(49, 49, 49, 0.1);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.burger-menu-reserve {
    width: 100%;
    justify-content: center;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

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

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Keep two-column layout for membership benefits on medium screens (no horizontal chips) */
@media (max-width: 1024px) {
    .interactive-benefits-section .benefits-container {
        flex-direction: row;
        width: 100%;
        /* full width on tablet for better fit */
    }

    .interactive-benefits-section .benefits-sidebar {
        width: 340px;
        min-height: auto;
    }

    .interactive-benefits-section .benefits-list {
        display: block;
        overflow: visible;
        padding: 40px 0;
        white-space: normal;
    }

    .interactive-benefits-section .benefits-content {
        flex-direction: row;
        min-height: auto;
    }
}

/* =========================
    Trainers Carousel Section - Redesigned
    ========================= */
.trainers-section {
    background-color: #d7d1c8;
    padding: 120px 0;
    overflow: hidden;
}

.trainers-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: stretch;
    min-height: 600px;
}

.trainers-info {
    color: #1e1e1e;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.trainers-title {
    font-family: 'Helvetica';
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: #1e1e1e;
    letter-spacing: -0.5px;
    margin: 0 0 8px 0;
}

.trainers-intro {
    color: #1e1e1e;
    font-size: 16px;
    line-height: 1.7;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 14px 32px;
    background: transparent;
    color: #1e1e1e;
    text-decoration: none;
    border: 2px solid #1e1e1e;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    width: fit-content;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: #1e1e1e;
    color: #d7d1c8;
    transform: translateY(-1px);
    outline: none;
}

/* Carousel area */
.trainers-carousel {
    position: relative;
    width: 100%;
    height: auto;
    /* allow grid rows to define height */
    background: #d7d1c8;
    border-radius: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    /* row 1: images, row 2: info card */
    align-items: center;
    justify-items: center;
    gap: 32px;
    padding: 24px 0 48px;
    /* space for info card */
    overflow: visible;
    /* let card sit outside if needed */
}

/* Background trainer tile (preview on the right) */
.trainers-background {
    position: relative;
    grid-column: 2;
    width: 85%;
    height: auto;
    aspect-ratio: 1 / 1;
    z-index: 1;
    border-radius: 0;
    overflow: hidden;
    pointer-events: none;
    /* preview only */
}

.background-trainer {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    transition: opacity 0.3s ease;
    overflow: hidden;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-trainer.prev {
    opacity: 0.35;
}

.background-trainer.next {
    opacity: 0.35;
}

.trainer-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.1) brightness(0.7);
    display: block;
    max-width: 100%;
    max-height: 100%;
}

/* Current selected trainer (prominent on the left) */
.trainers-current {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    width: 90%;
    height: auto;
    aspect-ratio: 1 / 1;
    /* Square */
    z-index: 2;
    transition: opacity 0.3s ease;
    overflow: hidden;
    border-radius: 0;
    display: block;
}

.current-trainer {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 1;
    overflow: hidden;
    border-radius: 0;
}

.trainer-current-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

/* White info box underneath, slightly skewed to the left */
.trainers-info-box {
    position: relative;
    /* no overlay; lives in its own grid row */
    grid-column: 1;
    grid-row: 2;
    z-index: 4;
    transform: skew(-2deg, 0deg);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: -24px;
    /* subtle tuck under the image */
    justify-self: start;
    /* align to left column start */
    margin-left: 30px;
    /* slight left bias */
}

.trainer-info-card {
    background: #ffffff;
    color: #1e1e1e;
    padding: 32px 40px;
    width: 480px;
    transform: skew(2deg, 0deg);
    /* counter-skew to make text straight */
}

.trainer-info-name {
    font-family: 'Helvetica';
    font-size: 36px;
    font-weight: 400;
    margin: 0 0 12px 0;
    line-height: 1.2;
    color: #1e1e1e;
}

.trainer-info-bio {
    font-size: 16px;
    line-height: 1.65;
    color: #1e1e1e;
    opacity: 0.9;
    margin: 0;
}

.trainer-instagram {
    margin-top: 16px;
    display: flex;
    align-items: center;
}

.trainer-instagram a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #E4405F;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.trainer-instagram a:hover {
    background-color: #D63384;
    transform: translateY(-2px);
}

.instagram-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.trainer-info-specialty {
    font-size: 14px;
    color: #666;
    margin: 8px 0 0 0;
    font-style: italic;
}

/* Navigation arrows */
.trainers-nav {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 5;
}

.nav-btn {
    width: 56px;
    height: 56px;
    background: #1e1e1e;
    color: #d7d1c8;
    border: 2px solid #1e1e1e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(49, 49, 49, 0.9);
    transform: translateY(-1px);
}

.nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.nav-btn:focus {
    outline: 2px solid #1e1e1e;
    outline-offset: 2px;
}

/* Responsive rules */
@media (max-width: 1200px) {
    .trainers-carousel {
        height: 550px;
    }

    .trainers-current {
        width: 85%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .background-trainer {
        width: 75%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .trainers-info-box {
        left: 30px;
        bottom: -60px;
    }

    .trainer-info-card {
        width: 420px;
        padding: 28px 32px;
    }
}

@media (max-width: 1024px) {
    .trainers-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: start;
    }

    .trainers-carousel {
        height: 500px;
    }

    .trainers-current {
        width: 85%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .background-trainer {
        width: 75%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .trainers-info-box {
        left: 20px;
        bottom: -40px;
    }

    .trainer-info-card {
        width: 380px;
        padding: 24px 28px;
    }

    .trainers-nav {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .trainers-section {
        padding: 80px 0;
    }

    .trainers-carousel {
        height: 400px;
    }

    .trainers-current {
        width: 90%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .background-trainer {
        width: 80%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .trainers-info-box {
        left: 16px;
        bottom: -20px;
    }

    .trainer-info-card {
        width: 320px;
        padding: 20px 24px;
    }

    .trainer-info-name {
        font-size: 28px;
    }

    .trainer-info-bio {
        font-size: 15px;
    }

    .trainers-nav {
        right: 16px;
        gap: 12px;
    }

    .nav-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .trainers-carousel {
        height: 350px;
    }

    .trainers-current {
        width: 95%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .background-trainer {
        width: 85%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .trainers-info-box {
        left: 12px;
        bottom: -10px;
    }

    .trainer-info-card {
        width: 280px;
        padding: 16px 20px;
    }

    .trainer-info-name {
        font-size: 24px;
    }

    .trainer-info-bio {
        font-size: 14px;
    }

    .nav-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* ================================
   Membership Offer + Lead Form
   ================================ */
.membership-offer-section {
    background-color: #d7d1c8;
    padding: 80px 0;
    /* fit section vertically like other blocks */
}

.offer-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    max-width: 1400px;
    /* fit within site grid */
    margin: 0 auto;
    /* center within page */
    padding: 0 40px;
    /* match container side gutters */
}

/* Left visual panel */
.offer-left {
    position: relative;
    background: #000;
    color: #d7d1c8;
    overflow: hidden;
}

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

.offer-left-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.offer-left-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.offer-left-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    height: 100%;
    padding: 80px 56px;
}

.offer-headline {
    font-family: 'Helvetica';
    font-size: clamp(40px, 6vw, 88px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1px;
    color: #d7d1c8;
    max-width: 720px;
}

.offer-subheadline {
    color: #d7d1c8;
    opacity: 0.95;
    font-size: 18px;
    max-width: 720px;
}

.offer-cta {
    align-self: flex-start;
    text-decoration: none;
    margin-top: 8px;
}

/* Right form panel */
.offer-right {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.offer-form {
    width: 90%;
    max-width: 640px;
}

.form-row {
    display: block;
    margin-bottom: 20px;
}

.form-row.two {
    display: flex;
    gap: 24px;
}

.form-field {
    width: 100%;
}

.offer-form input {
    width: 100%;
    padding: 20px 18px;
    font-size: 18px;
    border: 1px solid #dddddd;
    background: #ffffff;
    color: #1e1e1e;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.offer-form input:focus {
    border-color: #1e1e1e;
    box-shadow: 0 0 0 3px rgba(49, 49, 49, 0.10);
}

.offer-form .offer-submit {
    width: 100%;
    padding: 18px;
}

.field-note {
    font-size: 12px;
    color: #666666;
    margin-top: 8px;
}

.consent-text {
    font-size: 12px;
    color: #666666;
    line-height: 1.5;
    margin-top: 12px;
}

.thank-you {
    margin-top: 16px;
    font-size: 16px;
    color: #1a7f37;
    background: #E6F4EA;
    border: 1px solid #B7E1C3;
    padding: 12px 16px;
}

.hidden {
    display: none !important;
}

/* Screen reader only helper */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Submitted state – hide form controls, show thanks */
.offer-form.submitted .form-row,
.offer-form.submitted .consent-text {
    display: none;
}

.offer-form.submitted #offerThankYou {
    display: block;
}

/* Responsive rules */
@media (max-width: 1024px) {
    .offer-layout {
        grid-template-columns: 1fr;
        min-height: unset;
        padding: 0 24px;
        /* align with tablet container gutters */
    }

    .offer-left {
        min-height: 360px;
    }

    .offer-left-content {
        padding: 60px 24px;
    }

    .offer-right {
        padding: 40px 24px;
    }

    .offer-headline {
        font-size: clamp(36px, 8vw, 64px);
    }
}

@media (max-width: 480px) {
    .form-row.two {
        flex-direction: column;
        gap: 16px;
    }

    .offer-left {
        min-height: 300px;
    }

    .offer-headline {
        font-size: 36px;
    }

    .offer-form input {
        font-size: 16px;
        padding: 16px 14px;
    }
}

/* =========================
   Spa First Section
   ========================= */
.spa-first-section {
    background-color: #d7d1c8;
    padding: 120px 0;
    /* account for fixed header spacing on entry */
}

.spa-first-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.spa-layout {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 80px;
    align-items: start;
}

.spa-left-sticky {
    position: sticky;
    top: 120px;
    /* fixed header height */
}

.spa-image {
    width: 100%;
    height: calc(100vh - 160px);
    /* visible under header with breathing room */
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.spa-right {
    color: #1e1e1e;
}

.spa-header {
    margin-bottom: 40px;
}

.spa-group {
    margin-bottom: 56px;
}

.spa-group-title {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #1e1e1e;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.spa-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(49, 49, 49, 0.1);
}

.spa-item {
    font-size: 16px;
    color: #1e1e1e;
    padding: 20px 0;
    border-bottom: 1px solid rgba(49, 49, 49, 0.1);
}

.spa-services {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0 0 24px 0;
}

.spa-service {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.spa-service .spa-promo {
    margin: 0;
}

.spa-service .spa-chips {
    margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .spa-first-section {
        padding: 80px 0;
    }

    .spa-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .spa-left-sticky {
        position: static;
        top: auto;
    }

    .spa-image {
        height: 45vh;
        min-height: 320px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .spa-image {
        height: 35vh;
        min-height: 220px;
    }

    .spa-group {
        margin-bottom: 40px;
    }

    .spa-item {
        padding: 16px 0;
    }
}

/* =========================
   Spa First Section – Overrides for 70/30 layout and scrollable right
   ========================= */
.spa-first-section .container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    /* edge-to-edge */
}

.spa-layout {
    grid-template-columns: 60% 40%;
    gap: 0;
    /* flush columns */
}

.spa-left-sticky {
    position: sticky;
    top: 120px;
    /* fixed header height */
}

.spa-image {
    width: 100%;
    height: calc(100vh - 120px);
    /* fill viewport under header */
    min-height: 420px;
    object-fit: cover;
    display: block;
}

/* Right column should scroll; left image stays static */
.spa-right {
    color: #1e1e1e;
    height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 24px 40px 40px 40px;
    background: #d7d1c8;
}

/* Tabs (Bodywork | Skincare) */
.spa-tabs {
    position: sticky;
    top: 0;
    /* stick within the right column while it scrolls */
    display: flex;
    padding: 24px 0 12px;
    margin: 0 0 16px 0;
    border-bottom: 1px solid rgba(49, 49, 49, 0.2);
    background: #d7d1c8;
    z-index: 1;
}

.spa-tab {
    font-size: 18px;
    font-weight: 400;
    color: #1e1e1e;
    opacity: 0.5;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
    flex: 1;
    text-align: center;
}

.spa-tab.active {
    opacity: 1;
    position: relative;
}

.spa-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -13px;
    width: 100%;
    height: 2px;
    background: #1e1e1e;
}

/* Content sections */
.spa-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spa-content.active {
    display: block;
    opacity: 1;
}

/* Right column header */
.spa-right-title {
    font-family: 'Helvetica';
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    color: #1e1e1e;
    line-height: 1.2;
    margin: 8px 0 16px 0;
}

.spa-right-desc {
    font-size: 16px;
    color: #1e1e1e;
    opacity: 0.9;
    max-width: 520px;
    margin: 0 0 24px 0;
}

/* Promo block */
.spa-promo {
    margin: 12px 0 16px 0;
}

.spa-promo .spa-chips {
    margin: 16px 0 0 0;
}

.spa-promo-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.spa-promo-caption {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: end;
    padding-top: 16px;
}

.spa-promo-title {
    font-family: 'Helvetica';
    font-size: 28px;
    font-weight: 400;
    color: #1e1e1e;
    margin: 0 0 8px 0;
}

.spa-promo-text {
    font-size: 15px;
    line-height: 1.7;
    color: #1e1e1e;
    opacity: 0.9;
    margin: 0;
}

.spa-price-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: rgba(49, 49, 49, 0.8);
    display: block;
    margin-bottom: 6px;
    text-align: right;
}

.spa-price {
    font-size: 28px;
    font-weight: 600;
    color: #1e1e1e;
    text-align: right;
    display: block;
}

/* Duration chips */
.spa-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0 60px 0;
}

.spa-chips.four-options {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.chip-btn {
    padding: 14px 18px;
    font-size: 14px;
    background: transparent;
    color: #1e1e1e;
    border: 1px solid #1e1e1e;
    letter-spacing: 0.5px;
}

.chip-btn.filled {
    background: #ffffff;
    color: #1e1e1e;
    border-color: #1e1e1e;
}

.chip-btn:hover {
    background: rgba(49, 49, 49, 0.05);
}

.chip-btn.filled:hover {
    background: #ffffff;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .spa-first-section {
        padding: 80px 0;
    }

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

    .spa-right {
        height: auto;
        max-height: none;
        overflow: visible;
        padding: 24px;
    }

    .spa-promo-image {
        height: 240px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .spa-promo-image {
        height: 200px;
    }

    .spa-chips {
        grid-template-columns: 1fr;
    }
}

/* Spa First Section: keep 70/30 split on widths between 769px and 1024px */
@media (max-width: 1024px) and (min-width: 769px) {
    .spa-first-section .container {
        max-width: none;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .spa-layout {
        grid-template-columns: 60% 40%;
        gap: 0;
    }

    .spa-left-sticky {
        position: sticky;
        top: 120px;
    }

    .spa-image {
        height: calc(100vh - 120px);
        min-height: 420px;
        object-fit: cover;
    }

    .spa-right {
        height: calc(100vh - 120px);
        overflow-y: auto;
        padding: 24px 32px 32px 32px;
        background: #d7d1c8;
    }
}

/* Spa First Section – refine proportions and single-scroll behavior */
.spa-first-section {
    padding: 120px 0 0 0;
}

/* remove bottom padding to avoid page scroll */
.spa-layout {
    grid-template-columns: 60% 40%;
}

.spa-right {
    overscroll-behavior: contain;
    position: relative;
}

.spa-tabs {
    background: #d7d1c8;
    z-index: 2;
    box-shadow: 0 8px 10px -8px rgba(49, 49, 49, 0.12);
}

/* Spa First Section – bring Bodywork/Skincare tabs closer to the top */
.spa-right {
    padding: 8px 40px 40px 40px;
}

/* reduce top padding */
.spa-tabs {
    padding: 6px 0 10px;
    top: 0;
}

/* tighter spacing above tabs */

/* Tablet spacing keep compact too */
@media (max-width: 1024px) {
    .spa-right {
        padding: 12px 24px 24px 24px;
    }

    .spa-tabs {
        padding: 6px 0 10px;
    }
}

/* Spa First Section – nudge tabs further up */
.spa-page .spa-right {
    padding-top: 0;
}

.spa-page .spa-tabs {
    padding-top: 4px;
    padding-bottom: 10px;
}

.spa-page .spa-right-title {
    margin-top: 4px;
}

/* Image Gallery Section */
.image-gallery-section {
    background-color: #d7d1c8;
    padding: 0;
    overflow: hidden;
}

.gallery-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 40px 40px 60px 40px;
    width: 100%;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Rectangle (horizontal) - Rectangle (vertical) pattern */
.gallery-item:nth-child(odd) {
    /* Horizontal rectangles (wide, short) */
    width: 550px;
    height: 300px;
    aspect-ratio: 11/6;
}

.gallery-item:nth-child(even) {
    /* Vertical rectangles (narrow, tall) */
    width: 300px;
    height: 450px;
    aspect-ratio: 2/3;
}

/* Responsive adjustments - maintain horizontal/vertical rectangle pattern */
@media (max-width: 768px) {
    .gallery-scroll {
        padding: 24px 24px 40px 24px;
        gap: 16px;
    }

    .gallery-item:nth-child(odd) {
        /* Horizontal rectangles */
        width: 380px;
        height: 200px;
    }

    .gallery-item:nth-child(even) {
        /* Vertical rectangles */
        width: 200px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .gallery-scroll {
        padding: 16px 16px 32px 16px;
        gap: 12px;
    }

    .gallery-item:nth-child(odd) {
        /* Horizontal rectangles */
        width: 260px;
        height: 140px;
    }

    .gallery-item:nth-child(even) {
        /* Vertical rectangles */
        width: 140px;
        height: 210px;
    }
}

/* Footer Styles */
.footer {
    background-color: #313131;
    color: #d7d1c8;
    padding: 0px 0 0px 0;
    margin-top: auto;
}

.footer a {
    color: #d7d1c8 !important;
    text-decoration: none;
}

.footer-inspire-section {
    background: #d7d1c8;
    padding: 60px 0 0 0;
    border: none;
    margin: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.footer-main {
    background: #313131;
    color: #d7d1c8;
    padding: 80px 0;
    border-top: none;
    margin-top: 0;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.footer-columns {
    display: grid;
    grid-template-columns: 240px 240px 240px;
    gap: 0px;
    align-items: start;
}

.footer-column-title {
    font-family: 'Helvetica';
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
    color: #d7d1c8;
    text-transform: uppercase;
}

/* Desktop-only: increase spacing between footer columns */
@media (min-width: 769px) {
    .footer-columns {
        gap: 40px;
    }
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 0.9;
}

.footer-nav-list li {
    margin-bottom: 0px;
}

.footer-nav-link {
    font-family: 'Helvetica';
    font-size: 14px;
    color: #d7d1c8;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav-link:hover {
    opacity: 1;
}

.footer-contact-info p {
    font-family: 'Helvetica';
    font-size: 14px;
    color: #d7d1c8;
    opacity: 0.8;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

/* Hide scrollbars specifically in footer contact info */
.footer-contact-info {
    overflow: hidden !important;
}

.footer-contact-info p {
    overflow: hidden !important;
}

.contact-icon {
    font-size: 12px;
}

.contact-image-icon {
    width: 8px;
    height: 8px;
    margin-right: 8px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

.contact-us-btn {
    background: transparent;
    color: #d7d1c8;
    border: 1px solid #d7d1c8;
    padding: 12px 24px;
    font-family: 'Helvetica';
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    margin-top: 32px;
}

.contact-us-btn:hover {
    background: #d7d1c8;
    color: #313131;
}

.footer-bottom {
    background: #313131;
    padding: 40px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    gap: 40px;
    position: relative;
}

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

.footer-social-section {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-social-text {
    font-family: 'Helvetica';
    font-size: 14px;
    color: #d7d1c8;
    opacity: 0.8;
}

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

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #d7d1c8;
    border-color: #d7d1c8;
}

.footer-social-link:hover .footer-social-icon {
    fill: #313131;
}

.footer-social-icon {
    width: 16px;
    height: 16px;
    fill: #d7d1c8;
    transition: fill 0.3s ease;
}

.footer-copyright {
    font-family: 'Helvetica';
    font-size: 14px;
    color: #d7d1c8;
    opacity: 0.6;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-inspire-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        position: static;
    }

    /* Reorder footer elements on mobile - social icons first, then logo, then copyright */
    .footer-social-section {
        order: 1;
        position: static;
        transform: none;
    }

    .footer-logo-section {
        order: 2;
    }

    .footer-copyright-section {
        order: 3;
    }
}

@media (max-width: 768px) {
    .footer-inspire-section {
        padding: 120px 0 40px 0;
        border-top: none !important;
    }

    .footer-inspire-section::before {
        display: none !important;
        content: none !important;
        height: 0 !important;
        background: transparent !important;
    }

    .footer-inspire-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 24px;
        text-align: left;
    }

    .footer-inspire-left,
    .footer-inspire-center,
    .footer-inspire-right {
        justify-self: stretch;
        text-align: left;
    }

    .footer-inspire-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-inspire-right {
        margin-top: 8px;
    }

    .book-now-btn {
        width: 100%;
        padding: 18px 24px;
        background: #313131;
    }

    .footer-main {
        padding: 60px 0;
    }

    .footer-main .container {
        padding: 0 24px;
    }

    .footer-columns {
        gap: 32px;
    }

    .footer-bottom-content {
        padding: 0 24px;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }

    .footer-social-section {
        justify-content: flex-start;
        align-self: flex-start;
    }

    .footer-logo-section {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .footer-inspire-content {
        padding: 0 16px;
        text-align: center;
    }

    .footer-main .container {
        padding: 0 16px;
    }

    .footer-bottom-content {
        padding: 0 16px;
    }

    .footer-social-section {
        justify-content: center;
        align-self: center;
    }

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

/* Add border to main footer element - desktop only */
@media (min-width: 769px) {
    .footer {
        border-top: 0.5px solid #313131;
    }
}

/* Remove footer top border for mobile override */
@media (max-width: 768px) {
    .footer {
        border-top: none !important;
    }

    /* Hide any border on footer inspire section for mobile */
    .footer-inspire-section {
        border-top: none !important;
    }
}

/* Desktop only - override font sizes for footer inspire section */
@media (min-width: 1025px) {
    .footer-inspire-title {
        font-size: 20px !important;
    }

    .footer-inspire-description {
        font-size: 14.5px !important;
    }
}

/* Trainers Carousel Responsive - Small Mobile */
.card-image {
    width: 280px;
    height: 280px;
    aspect-ratio: 1;
}

/* Trainer Instagram Overlay Responsive - Small Mobile */
.trainer-instagram-overlay {
    bottom: 8px;
    right: 8px;
}

.instagram-link {
    gap: 4px;
    font-size: 10px;
    padding: 4px;
}

.instagram-link .instagram-icon {
    width: 12px;
    height: 12px;
}


/* Ensure desktop carousel scrolling works properly */
@media (min-width: 769px) {
    .experiences-cards {
        display: flex !important;
        gap: var(--gap);
        width: 100%;
        overflow-x: scroll !important;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .experiences-section .experiences-cards {
        display: flex !important;
    }
}

/* Specific font size for Massage Treatments heading */
.experiences-section .section-title {
    font-size: 20px !important;
    font-weight: 400 !important;
}

/* Trainers page specific styles */
.trainers-intro-section {
    background-color: #d7d1c8;
    padding: 120px 0;
    text-align: center;
}

.trainers-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.trainers-intro-title {
    font-family: 'Helvetica';
    font-size: clamp(24px, 3.5vmin, 48px);
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.trainers-intro-text {
    font-size: 18px;
    color: #1e1e1e;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Trainers Section Layout - Matching Experiences Section */
.trainers-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: flex-start;
}

.trainers-header {
    padding-top: 0px;
    position: relative;
    width: 100%;
}

.trainers-header .section-title {
    font-size: clamp(24px, 3vw, 36px);
    margin: 16px 0;
    text-align: left;
    font-family: var(--accent-font);
}

.trainers-header .section-description {
    font-size: 14px;
    line-height: 1.5;
    color: #1e1e1e;
    margin: 0;
    max-width: none;
    font-family: var(--base-font);
    font-weight: 300;
}

.trainers-content {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.trainers-content::before,
.trainers-content::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 2px;
    z-index: 2;
    pointer-events: none;
    background: #d7d1c8;
}

.trainers-content::before {
    left: -2px;
}

.trainers-content::after {
    right: -2px;
}

.trainers-cards {
    display: flex;
    gap: var(--gap);
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.trainers-cards::-webkit-scrollbar {
    display: none;
}

/* Drag scrolling styles */
.trainers-cards.dragging {
    cursor: grabbing;
    user-select: none;
    scroll-behavior: auto;
    /* Disable smooth scrolling during drag for better performance */
}

.trainers-cards:not(.dragging) {
    cursor: grab;
    scroll-behavior: smooth;
    /* Re-enable smooth scrolling when not dragging */
}

/* Improve scroll performance */
.trainers-cards {
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
}

/* Hide scrollbar but keep functionality */
.trainers-cards::-webkit-scrollbar {
    display: none;
}

.trainers-cards {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.trainer-card {
    flex: 0 0 var(--card-width);
    width: var(--card-width);
    height: auto;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: opacity 0.1s ease;
}

.trainer-card.partially-visible {
    opacity: 0.4;
}

.card-image {
    position: relative;
    width: var(--card-width);
    height: var(--card-width);
    overflow: hidden;
    aspect-ratio: 1;
}

.card-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-content {
    padding: 24px 0;
    color: #1e1e1e;
    background: #d7d1c8;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    font-size: 10px;
    font-family: var(--base-font);
    font-weight: 500;
    letter-spacing: 2px;
    color: #1e1e1e;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.card-title {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-description {
    font-family: var(--base-font);
    font-size: 14.5px;
    color: #1e1e1e;
    line-height: 1.6;
    flex: 1;
}

.card-footer {
    padding: 8px 0 0 0;
    margin-top: auto;
}

.card-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: #1e1e1e;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 0 8px 0;
    border-bottom: 1px solid #1e1e1e;
    width: auto;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: rgba(49, 49, 49, 0.7);
    border-bottom-color: rgba(49, 49, 49, 0.7);
}

/* Trainers Navigation */
.trainers-navigation {
    margin-top: 70px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.nav-segments {
    display: flex;
    width: 100%;
    height: 2px;
    margin-bottom: 2px;
}

.nav-segment {
    flex: 1;
    height: 100%;
    background-color: rgba(49, 49, 49, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.nav-segment:hover {
    background-color: rgba(49, 49, 49, 0.4);
}

.nav-segment.active {
    background-color: #1e1e1e;
}

/* Feature card (replaces second carousel) */
.feature-section {
    padding: 10px 0 60px 0;
    background-color: #d7d1c8;
}

.feature-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.feature-card {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: stretch;
    background: transparent;
    margin-top: 24px;
}

.feature-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
    background: #000;
    display: block;
}

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

.feature-content {
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    /* label, title+desc, divider, CTA */
    gap: 24px;
    padding: 40px;
    min-height: 380px;
    background: #eae3db;
    /* cream panel like reference */
    align-items: start;
}

/* Right panel text wrapper - full width in grid */
.feature-text {
    width: 100%;
    display: grid;
    grid-template-rows: auto auto auto;
    /* label, title, description */
    gap: 16px;
}

/* Small uppercase label above title */
.feature-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(49, 49, 49, 0.7);
    text-transform: uppercase;
    margin: 4px 0 14px 0;
}

/* Divider in grid layout */
.feature-divider {
    width: 100%;
    height: 1px;
    background: rgba(49, 49, 49, 0.25);
    margin: 0;
}

/* Outlined CTA button */
.button-outline {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #1e1e1e;
    background: transparent;
    border: 1px solid rgba(49, 49, 49, 0.35);
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.button-outline:hover {
    background: rgba(49, 49, 49, 0.06);
    transform: translateY(-2px);
}

.feature-content .card-title {
    margin-top: 0;
    font-size: 32px;
}

.feature-content .card-description {
    margin-top: 8px;
    font-size: 16px;
    color: #1e1e1e;
    opacity: 0.95;
}

/* CTA in grid layout - full width */
.feature-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-cta .contact-btn,
.feature-cta .reserve-btn,
.feature-cta a.button {
    /* match primary CTA appearance but keep it consistent with site */
    padding: 12px 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid #1e1e1e;
    background: #1e1e1e;
    color: #d7d1c8;
    display: inline-block;
    transition: all 0.2s ease;
}

.feature-cta .contact-btn:hover,
.feature-cta .reserve-btn:hover,
.feature-cta a.button:hover {
    transform: translateY(-2px);
    background: rgba(49, 49, 49, 0.9);
}

/* Responsive: stack vertically on small screens */
@media (max-width: 768px) {
    .feature-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-image {
        height: 360px;
    }

    .feature-content {
        padding: 24px 24px 28px 24px;
        background: #eae3db;
        min-height: 280px;
        grid-template-rows: auto auto 1fr auto;
        /* maintain grid structure */
        gap: 20px;
    }

    .feature-content .card-title {
        font-size: 28px;
    }
}

/* Feature Card: better text readability on medium screens */
@media (max-width: 1024px) {
    .feature-card {
        grid-template-columns: 1fr;
        /* stack for better readability */
        gap: 20px;
    }

    .feature-image {
        height: 420px;
    }

    .feature-content {
        padding: 28px 32px 32px 32px;
        min-height: auto;
        grid-template-rows: auto auto 1fr auto;
        /* maintain grid structure */
        gap: 20px;
    }

    .feature-content .card-title {
        font-size: 30px;
    }

    .feature-content .card-description {
        font-size: 16px;
    }
}

/* Give text more space - stack on medium screens to prevent squished text */
@media (max-width: 1400px) {
    .feature-card {
        grid-template-columns: 1fr;
        /* stack for better text readability */
        gap: 24px;
    }

    .feature-image {
        height: 480px;
        /* generous height when stacked */
    }

    .feature-content {
        padding: 32px 40px 40px 40px;
        /* comfortable padding */
        min-height: auto;
        grid-template-rows: auto auto 1fr auto;
        /* maintain grid structure */
        gap: 24px;
    }

    .feature-text {
        max-width: none;
        /* full width text */
    }
}

/* =================================
   FRESH BROCHURE SECTION - Grid-to-Grid Layout
   ================================= */
.brochure-section {
    padding: 80px 0;
    background-color: #d7d1c8;
}

.brochure-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Main grid container - 60% image, 40% content */
.brochure-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: stretch;
    min-height: 500px;
}

/* Left side - Visual content */
.brochure-visual {
    position: relative;
}

.brochure-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 3/4;
    /* Taller than wide - 3:4 ratio */
    min-height: 500px;
    /* Ensure good height */
    max-height: px;
    /* Prevent excessive height */
    border-radius: 0;
    /* Sharp edges */
    overflow: hidden;
    background: #1e1e1e;
}

.brochure-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brochure-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

/* Right side - Content grid */
.brochure-content {
    display: grid;
    grid-template-rows: 1fr auto auto;
    gap: 32px;
    padding: 16px 40px 40px 40px;
    background: #d7d1c8;
    /* Same as website background */
    border-radius: 0;
    /* Sharp edges */
    align-self: stretch;
    height: 100%;
    /* Match image height */
    min-height: 500px;
    /* Match image min-height */
}

/* Content sections */
.brochure-header {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 16px;
}

.brochure-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(30, 30, 30, 0.7);
    text-transform: uppercase;
}

.brochure-title {
    font-family: 'Helvetica';
    font-size: 24px;
    font-weight: 400;
    color: #1e1e1e;
    line-height: 1.2;
    margin: 0 0 8px 0;
}

.brochure-description {
    font-size: 16px;
    color: #1e1e1e;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.brochure-divider {
    width: 100%;
    height: 1px;
    background: rgba(30, 30, 30, 0.2);
}

.brochure-actions {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.brochure-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #1e1e1e;
    background: transparent;
    border: 2px solid #1e1e1e;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.brochure-button:hover {
    background: #1e1e1e;
    color: #d7d1c8;
    transform: translateY(-2px);
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
    .brochure-grid {
        grid-template-columns: 55% 45%;
        gap: 40px;
    }

    .brochure-image-container {
        aspect-ratio: 3/4;
        /* Maintain taller ratio */
        min-height: 450px;
        max-height: 550px;
    }

    .brochure-content {
        padding: 32px;
        min-height: 450px;
        /* Match image height */
        background: #d7d1c8;
        /* Same as website background */
        border-radius: 0;
        /* Sharp edges */
    }

    .brochure-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .brochure-section {
        padding: 16px 0;
    }

    .brochure-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .brochure-image-container {
        aspect-ratio: 3/4;
        /* Maintain taller ratio on mobile */
        min-height: 300px;
        max-height: 400px;
    }

    .brochure-content {
        padding: 28px;
        gap: 24px;
        min-height: 400px;
        /* Match image height on mobile */
        background: #d7d1c8;
        /* Same as website background */
        border-radius: 0;
        /* Sharp edges */
    }

    .brochure-title {
        font-size: 28px;
    }

    .brochure-description {
        font-size: 15px;
    }

    .brochure-header {
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .brochure-section {
        padding: 12px 0;
    }

    .brochure-section .container {
        padding: 0 20px;
    }

    .brochure-content {
        padding: 24px 20px;
        gap: 20px;
    }

    .brochure-title {
        font-size: 20px;
    }

    .brochure-button {
        padding: 14px 28px;
        font-size: 13px;
    }

    .brochure-header {
        gap: 4px;
    }
}

/* Small-laptop refinement: optimize for larger screens */
@media (min-width: 1401px) and (max-width: 1600px) {
    .feature-section .feature-card {
        grid-template-columns: 60% 40%;
        /* consistent with main layout */
        gap: 48px;
    }
}

/* =================================
   FAQ Section Styles
   ================================= */
.faq-section {
    padding: 180px 0 120px 0;
    background-color: #d7d1c8;
}

.faq-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.faq-section .section-title {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 16px;
    text-align: center;
}

.faq-section .section-description {
    font-size: 14.5px;
    line-height: 1.6;
    color: #1e1e1e;
    max-width: 600px;
    margin: 0 auto;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-group {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(49, 49, 49, 0.1);
}

.faq-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-group-title {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #1e1e1e;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-family: 'Helvetica';
}

.faq-item {
    margin-bottom: 24px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    font-family: 'Helvetica';
    font-size: 20px;
    font-weight: 500;
    color: #1e1e1e;
    margin: 0 0 16px 0;
    line-height: 1.3;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: rgba(49, 49, 49, 0.8);
}

.faq-answer {
    font-size: 18px;
    color: #1e1e1e;
    line-height: 1.7;
    margin: 0 0 24px 0;
    opacity: 0.9;
    transition: all 0.3s ease;
    overflow: hidden;
    max-height: 1000px;
}

.faq-answer.collapsed {
    max-height: 0;
    margin: 0;
    opacity: 0;
}

.faq-item {
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(49, 49, 49, 0.1);
    padding-bottom: 24px;
}

.faq-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    font-weight: 400;
    color: #1e1e1e;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.open::after {
    transform: rotate(45deg);
}

.faq-item {
    position: relative;
}

.faq-item.static {
    cursor: default;
}

.faq-item.static::after {
    display: none;
}

.faq-item.static .faq-question {
    cursor: default;
}

.faq-item.static .faq-question:hover {
    color: inherit;
}

/* FAQ Section Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 140px 0 80px 0;
    }

    .faq-section .section-header {
        margin-bottom: 60px;
    }

    .faq-section .section-title {
        font-size: clamp(24px, 4vw, 28px);
    }

    .faq-group {
        margin-bottom: 40px;
        padding-bottom: 24px;
    }

    .faq-question {
        font-size: 20px;
    }

    .faq-answer {
        font-size: 16px;
    }

    .faq-item {
        margin-bottom: 28px;
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 120px 0 60px 0;
    }

    .faq-section .container {
        padding: 0 20px;
    }

    .faq-section .section-header {
        margin-bottom: 40px;
    }

    .faq-group {
        margin-bottom: 32px;
        padding-bottom: 20px;
    }

    .faq-item {
        margin-bottom: 24px;
        padding-bottom: 16px;
    }

    .faq-question {
        font-size: 14.5px;
    }

    .faq-answer {
        font-size: 15px;
    }
}

/* === Mobile horizontal scroll for first carousel (Spa & Classes) — overrides === */
@media (max-width: 768px) {
    .spa-classes-section .facilities-cards {
        display: flex !important;
        gap: 20px;
        width: 100%;
        max-width: 100vw;
        padding-bottom: 16px;
        overflow-x: auto !important;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .spa-classes-section .facility-card {
        flex: 0 0 280px !important;
        width: 280px !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }

    .spa-classes-section .facility-card .card-image {
        width: 100% !important;
        max-width: 280px !important;
        height: 280px !important;
        aspect-ratio: 1 / 1;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    .trainers-section .trainers-cards {
        gap: 16px;
        padding: 0 16px 32px 16px;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .trainers-section .trainer-card {
        flex: 0 0 78vw !important;
        width: 78vw !important;
        max-width: 280px !important;
    }

    .trainers-section .trainer-card .card-image {
        width: 100% !important;
        max-width: 260px !important;
        height: auto !important;
        aspect-ratio: 1 / 1;
        margin: 0 auto !important;
    }

    .spa-classes-section .facilities-cards {
        gap: 16px;
        padding-bottom: 14px;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .spa-classes-section .facility-card {
        flex: 0 0 280px !important;
        width: 280px !important;
        max-width: 280px !important;
    }

    .spa-classes-section .facility-card .card-image {
        width: 100% !important;
        max-width: 280px !important;
        height: 280px !important;
        aspect-ratio: 1 / 1;
        margin: 0 auto !important;
    }
}

/* Mobile-specific tweak for Spa & Classes section title
   Goal: ensure "Enjoy the Full Wellness Experience" fits on one line on small screens */
@media (max-width: 768px) {
    .spa-classes-section .section-title {
        font-size: 20px;
        /* smaller than the default 24px min from clamp */
        line-height: 1.1;
    }
}

@media (max-width: 400px) {
    .spa-classes-section .section-title {
        font-size: 14px;
        /* extra reduction for very small devices */
        line-height: 1.05;
    }
}

/* Mobile-specific regular weight for Spa & Classes section title */
@media (max-width: 768px) {
    .spa-classes-section .section-title {
        font-weight: 400;
    }

    .membership-page .spa-classes-section .section-title {
        font-weight: 400;
    }
}

@media (max-width: 400px) {
    .spa-classes-section .section-title {
        font-weight: 400;
    }
}

/* Mobile-specific tweaks for carousel card titles:
   Apply smaller and bold titles in Spa & Classes and Experiences carousels */
@media (max-width: 768px) {

    .spa-classes-section .facility-card .card-title,
    .experiences-section .experience-card .card-title {
        font-size: 20px;
        line-height: 1.15;
        font-weight: 400;
    }
}

@media (max-width: 400px) {

    .spa-classes-section .facility-card .card-title,
    .experiences-section .experience-card .card-title {
        font-size: 14px;
        line-height: 1.1;
        font-weight: 400;
    }
}

/* Mobile-only spacing tighten for carousel "Discover more" links
   Move link closer to body text by overriding margin-top:auto and reducing paddings */
@media (max-width: 768px) {

    .spa-classes-section .facility-card .card-footer,
    .experiences-section .experience-card .card-footer {
        margin-top: 8px;
        /* replace auto so it sits under description */
        padding-top: 4px;
        /* reduce vertical gap */
    }

    .spa-classes-section .facility-card .card-link,
    .experiences-section .experience-card .card-link {
        padding-top: 6px;
        /* from 12px */
    }
}

@media (max-width: 400px) {

    .spa-classes-section .facility-card .card-footer,
    .experiences-section .experience-card .card-footer {
        margin-top: 6px;
        padding-top: 2px;
    }

    .spa-classes-section .facility-card .card-link,
    .experiences-section .experience-card .card-link {
        padding-top: 4px;
    }
}

/* Mobile-only: reduce internal padding in carousel cards to bring link closer to text */
@media (max-width: 768px) {

    .spa-classes-section .facility-card .card-content,
    .experiences-section .experience-card .card-content {
        padding: 12px 0 8px 0;
        /* was ~24px 0; tighten vertically */
    }
}

@media (max-width: 400px) {

    .spa-classes-section .facility-card .card-content,
    .experiences-section .experience-card .card-content {
        padding: 8px 0 6px 0;
        /* extra-tight on very small devices */
    }
}

/* Mobile-only: center non-carousel section headers and their text */
@media (max-width: 768px) {

    /* Hide hero content in trainers page on mobile */
    .trainers-page .hero-content,
    body.trainers-page .hero-content {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    /* Hide hero content in eat page on mobile */
    .eat-page .hero-content,
    body.eat-page .hero-content {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    /* Center generic section headers (excludes carousel card titles) */
    .section-header,
    .spa-classes-section .section-header {
        text-align: center;
    }

    /* Ensure title and description center and align nicely */
    .section-header .section-title,
    .section-header .section-description {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .membership-page .section-header .section-title {
        font-weight: 400;
    }
}

/* Mobile-only: tighten vertical spacing between the first two carousels (Spa & Classes → Experiences) */
@media (max-width: 768px) {

    /* Reduce bottom spacing in Spa & Classes */
    .spa-classes-section {
        padding: 40px 0 36px 0;
        /* was 80px 0 on mobile override */
    }

    .spa-classes-section .section-header {
        margin-bottom: 16px;
        /* was 60px globally */
    }

    .spa-classes-section .wellness-facilities-carousel {
        margin-top: 20px;
        /* was 60px */
    }

    /* Reduce top spacing in Experiences */
    .experiences-section {
        padding: 20px 0 60px 0;
        /* was 60px 0 80px 0 on mobile */
    }

    .experiences-section .experiences-layout {
        gap: 24px;
        /* was 32px on mobile */
    }
}

@media (max-width: 480px) {
    .spa-classes-section {
        padding: 32px 0 0 0;
    }

    .spa-classes-section .section-header {
        margin-bottom: 12px;
    }

    .spa-classes-section .wellness-facilities-carousel {
        margin-top: 16px;
    }

    .experiences-section {
        padding: 16px 0 56px 0;
    }

    .experiences-section .experiences-layout {
        gap: 20px;
    }
}


/* Trainers page: horizontal scroll on mobile - matching membership.html pattern */
@media (max-width: 768px) {
    .trainers-section .trainers-content {
        overflow: visible;
    }

    .trainers-section .trainers-content::before,
    .trainers-section .trainers-content::after {
        display: none;
    }

    .trainers-section .trainers-cards {
        display: flex !important;
        gap: 20px;
        width: 100%;
        max-width: 100vw;
        padding-bottom: 16px;
        overflow-x: auto !important;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .trainers-section .trainer-card {
        flex: 0 0 72vw !important;
        width: 72vw !important;
        max-width: 320px !important;
        margin: 0 auto !important;
    }

    .trainers-section .trainer-card .card-image {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        aspect-ratio: 1 / 1;
        margin: 0 auto !important;
    }

    /* Hide carousel UI on mobile */
    .trainers-section .carousel-arrow-right,
    .trainers-section .trainers-navigation {
        display: none !important;
    }
}

/* Mobile-only: make "Move. Unwind. Refuel." cards wider by reducing container side padding */
@media (max-width: 768px) {
    .experiences-section .container {
        padding: 0 16px;
        /* narrower gutters on tablet/mobile */
    }
}

@media (max-width: 480px) {
    .experiences-section .container {
        padding: 0 12px;
        /* even narrower on small phones */
    }
}


/* Membership mobile hero: match index hero mobile style while keeping desktop content */
@media (max-width: 768px) {

    /* Use same mobile banner height behavior as index */
    .hero-image-container {
        position: relative;
        height: 40vh;
        min-height: 250px;
        width: 100%;
        max-width: 100%;
    }

    .hero-image {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        min-height: 100%;
    }

    /* Remove dark overlay only for membership’s structure (won’t affect index) */
    .hero-center .hero-overlay {
        display: none;
    }

    /* Space between banner and text like index mobile */
    .hero+.hero-content {
        padding-top: 24px;
    }

    /* Spa-specific mobile adjustments */
    .spa-page .hero-content {
        display: none;
    }

    .spa-page .hero-spacer {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        height: 35vh;
        min-height: 200px;
    }

    .hero+.hero-content {
        padding-top: 20px;
    }
}

/* Mobile: Add extra bottom padding to personal training card */
@media (max-width: 768px) {
    #personal-training {
        margin-bottom: 20px;
    }
}

/* Mobile Sticky Join Now Button */
.mobile-sticky-btn {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background-color: #313131;
    color: #d7d1c8;
    border: none;
    padding: 16px 24px;
    font-family: 'Helvetica';
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(49, 49, 49, 0.25);
    z-index: 1200;
    text-align: center;
    text-decoration: none;
    display: none;
    /* Hidden by default, shown only on mobile */
    opacity: 1;
}

.mobile-sticky-btn:hover {
    background-color: rgba(49, 49, 49, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(30, 30, 30, 0.35);
}

/* Show only on mobile devices */
@media (max-width: 768px) {
    .mobile-sticky-btn {
        display: block;
    }

    /* Add bottom padding to body to prevent content being hidden behind button */
    body.mobile-sticky-active {
        padding-bottom: 80px;
    }
}

/* Hide on larger screens */
@media (min-width: 769px) {
    .mobile-sticky-btn {
        display: none !important;
    }
}

/* Signup Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 40px;
    border: none;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.close-btn {
    color: #1e1e1e;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.close-btn:hover {
    color: rgba(30, 30, 30, 0.7);
}

.modal h2 {
    font-family: 'Helvetica';
    font-size: 24px;
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Helvetica';
    font-size: 14px;
    font-weight: 500;
    color: #1e1e1e;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-family: 'Helvetica';
    font-size: 16px;
    color: #1e1e1e;
    background-color: #ffffff;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #1e1e1e;
    box-shadow: 0 0 0 2px rgba(30, 30, 30, 0.1);
}

.submit-btn {
    width: 100%;
    background-color: #1e1e1e;
    color: #d7d1c8;
    border: none;
    padding: 16px;
    font-family: 'Helvetica';
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: rgba(30, 30, 30, 0.9);
    transform: translateY(-1px);
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        padding: 30px 20px;
        width: 95%;
    }

    .modal h2 {
        font-size: 20px;
    }

    .form-group input {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 20px 16px;
        width: 100%;
        margin: 0;
        height: 100%;
        overflow-y: auto;
    }

    .modal h2 {
        font-size: 18px;
    }
}

/* Search Modal Styles */
.search-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.search-modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 40px;
    border: none;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.search-close-btn {
    color: #1e1e1e;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.search-close-btn:hover {
    color: rgba(30, 30, 30, 0.7);
}

.search-modal h2 {
    font-family: 'Helvetica';
    font-size: 24px;
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 30px;
    text-align: center;
}

.search-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-family: 'Helvetica';
    font-size: 16px;
    color: #1e1e1e;
    background-color: #ffffff;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.search-input:focus {
    outline: none;
    border-color: #1e1e1e;
    box-shadow: 0 0 0 2px rgba(30, 30, 30, 0.1);
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.search-result {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.search-result:last-child {
    border-bottom: none;
}

.search-result-title {
    font-family: 'Helvetica';
    font-size: 18px;
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 8px;
}

.search-result-link {
    color: #1e1e1e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-result-link:hover {
    color: rgba(49, 49, 49, 0.7);
}

.search-result-snippet {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.search-no-results {
    text-align: center;
    font-size: 16px;
    color: #666;
    padding: 20px;
}

.search-result-snippet mark {
    background-color: #ffeb3b;
    color: #000;
    padding: 0 2px;
}

.search-result-snippet-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-result-snippet-link:hover {
    color: #1e1e1e;
}

/* Mobile responsiveness for search modal */
@media (max-width: 768px) {
    .search-modal-content {
        margin: 5% auto;
        padding: 30px 20px;
        width: 95%;
    }

    .search-modal h2 {
        font-size: 20px;
    }

    .search-input {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .search-results {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .search-modal-content {
        padding: 20px 16px;
        width: 100%;
        margin: 0;
        height: 100%;
        overflow-y: auto;
    }

    .search-modal h2 {
        font-size: 18px;
    }

    .search-results {
        max-height: 250px;
    }
}


/* Desktop-only: ensure burger language selector is hidden, Join Now visible */
@media (min-width: 769px) {
    .burger-language-selector {
        display: none !important;
    }

    .burger-menu-reserve {
        display: block !important;
    }

    /* Join Us Modal Styles */
    .join-us-modal-content {
        max-width: 800px;
        width: 90%;
        padding: 0;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
    }

    .join-us-modal-body {
        display: flex;
        min-height: 400px;
    }

    .join-us-visual-section {
        flex: 1;
        position: relative;
        min-height: 400px;
    }

    .towers-image-overlay {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 400px;
        overflow: hidden;
    }

    .towers-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .overlay-text {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        padding: 30px;
    }

    .overlay-text h2 {
        font-size: 32px;
        font-weight: 400;
        margin-bottom: 15px;
        color: white;
    }

    .overlay-text p {
        font-size: 16px;
        font-weight: 300;
        line-height: 1.5;
        color: white;
        max-width: 300px;
    }

    .join-us-form-section {
        flex: 1;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .join-us-form-section .form-group {
        margin-bottom: 20px;
    }

    .join-us-form-section .form-group:last-of-type {
        margin-bottom: 30px;
    }

    .modal-contact-info {
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid #eee;
        font-size: 14px;
        color: #666;
        line-height: 1.6;
    }

    .modal-contact-info p {
        margin-bottom: 8px;
    }

    /* Mobile responsiveness for Join Us modal */
    @media (max-width: 1024px) {
        #joinUsModal.modal {
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
        }

        .join-us-modal-content {
            width: 95%;
            height: auto;
            margin: 5% auto;
            border-radius: 12px;
            max-width: none;
            max-height: 90vh;
            overflow-y: auto;
        }

        .join-us-modal-body {
            flex-direction: column;
            min-height: auto;
            display: flex;
        }

        .towers-image {
            display: none;
        }

        .join-us-form-section {
            flex: 1;
            padding: 24px 20px 32px 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .join-us-form-section .form-group {
            margin-bottom: 20px;
        }

        .join-us-form-section .form-group:last-of-type {
            margin-bottom: 24px;
        }

        .modal-contact-info {
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid #eee;
            text-align: center;
            font-size: 13px;
        }

        .overlay-text h2 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .overlay-text p {
            font-size: 14px;
            max-width: 250px;
        }

        /* Mobile form optimizations */
        .join-us-form-section input {
            font-size: 16px;
            /* Prevent zoom on iOS */
            padding: 14px 16px;
            border-radius: 6px;
        }

        .join-us-form-section label {
            font-size: 15px;
            margin-bottom: 6px;
        }

        .join-us-form-section .submit-btn {
            padding: 16px;
            font-size: 16px;
            margin-top: 8px;
        }
    }

    /* Mobile enhancements for very small screens */
    @media (max-width: 480px) {
        .join-us-modal-content {
            width: 95%;
            height: auto;
            margin: 3% auto;
            max-height: 95vh;
        }

        .join-us-visual-section {
            height: 70px;
            min-height: 70px;
        }

        .join-us-form-section {
            padding: 20px 16px 28px 16px;
            gap: 16px;
        }

        .join-us-form-section .form-group {
            margin-bottom: 16px;
        }

        .join-us-form-section .form-group:last-of-type {
            margin-bottom: 20px;
        }

        .modal-contact-info {
            font-size: 12px;
            padding-top: 16px;
        }

        .overlay-text h2 {
            font-size: 20px;
            margin-bottom: 8px;
        }

        .overlay-text p {
            font-size: 13px;
            max-width: 220px;
        }

        /* Mobile form optimizations for small screens */
        .join-us-form-section input {
            font-size: 16px;
            /* Prevent zoom on iOS */
            padding: 12px 14px;
        }

        .join-us-form-section label {
            font-size: 14px;
            margin-bottom: 4px;
        }

        .join-us-form-section .submit-btn {
            padding: 14px;
            font-size: 15px;
        }
    }

    /* Contact Icons Styles */
    .contact-icon {
        width: 10px;
        height: 10px;
        margin-right: 6px;
        vertical-align: middle;
        opacity: 0.7;
    }

    .modal-contact-info img.contact-icon {
        width: 10px !important;
        height: 10px !important;
    }

    .modal-contact-info p {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
    }
}

@media (max-width: 768px) {
    .towers-image-overlay {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .contact-small p {
        font-size: 15px;
    }

    .contact-small .contact-icon {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 768px) {
    .contact-small p {
        margin-bottom: 10px;
        /* spacing between lines */
        padding-bottom: 0;
        /* optional */
    }

    /* Optional: reduce last line spacing */
    .contact-small p:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {

    .mobile-contact-block {
        position: relative;
        width: 100%;
        height: 42vh;
        /* adjust height if you want */
        margin-top: 40px;

        background-image: url('../media/towers.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        border-radius: 4px;
        overflow: hidden;
    }

    .mobile-contact-block::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        /* darken for readability */
    }

    .contact-info {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;

        z-index: 2;
    }

    .contact-info p {
        font-size: 16px;
        /* larger */
        line-height: 1.7;
        margin: 6px 0;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .contact-info .contact-icon {
        width: 14px;
        height: 14px;
        filter: brightness(0) invert(1);
        /* make icons white */
    }
}

/* Desktop-only: Grid layout for classes page facilities */
@media (min-width: 1025px) {
    #class-facilities .facilities-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        overflow: visible;
        padding-bottom: 0;
    }

    #class-facilities .facility-card {
        flex: none;
        width: 100%;
        max-width: none;
    }

    #class-facilities .card-image {
        width: 100%;
        height: 350px;
        aspect-ratio: auto;
    }
}