/* Our Properties Page */


/* Property Showcase */
.property-showcase {
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 16px solid #213035;
}

.showcase-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 0;
}

.showcase-overlay {
    display: flex;
    min-height: 430px;
    position: relative;
    z-index: 1;
}

.showcase-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 24px 65px;
    color: #ffffff;
    overflow: hidden;
}


.showcase-header {
    padding: 30px 24px 20px;
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.showcase-header h2 {
    font-size: 42px;
    line-height: 46px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff;
}

.showcase-header .showcase-desc {
    font-size: 16px;
    line-height: 24px;
    max-width: 650px;
    margin: 0 auto;
    color: #ffffff;
}

.image-scroller-wrap {
    display: flex;
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    max-width: 750px;
    border: 2px solid #213035;
}

.swipe-hint {
    display: none;
}

.image-scroller {
    overflow: hidden;
    flex: 1;
    min-width: 0;
    height: 475px;
}

.scroller-track {
    display: flex;
    gap: 0;
    transition: transform 0.4s ease;
}

.scroller-track img {
    width: 100%;
    height: 475px;
    flex-shrink: 0;
    display: block;
    object-fit: cover;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0, 0, 0, 0.25);
    border: none;
    color: #ffffff;
    font-size: 52px;
    cursor: pointer;
    opacity: 0.35;
    transition: opacity 0.2s ease, background 0.2s ease;
    line-height: 1;
    padding: 12px 10px;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.scroll-prev {
    left: 0;
}

.scroll-next {
    right: 0;
}

.scroll-arrow:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.55);
}

.showcase-cta {
    display: flex;
    justify-content: center;
    padding: 32px 0 48px;
}

.showcase-embed-wrap {
    width: 750px;
    height: 475px;
    flex-shrink: 0;
    margin-bottom: 25px;
    border: 2px solid #213035;
}

.showcase-embed-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
}


.scroller-label {
    font-size: 40px;
    line-height: 45px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.scroller-sublabel {
    font-size: 18px;
    line-height: 30px;
    max-width: 380px;
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 2737px) {
    .showcase-overlay {
        flex-wrap: wrap;
        justify-content: center;
    }

    .showcase-col {
        flex: 0 0 calc(50% - 0px);
        align-items: center;
    }

    .showcase-right {
        flex: 0 0 750px;
    }

    .showcase-header,
    .showcase-overlay {
        position: relative;
        z-index: 1;
    }

    .scroller-label,
    .scroller-sublabel,
    .showcase-header h2,
    .showcase-header .showcase-desc {
        color: #ffffff;
    }
}

@media (max-width: 1660px) {
    .showcase-col {
        flex: 0 0 100%;
    }

    .showcase-right {
        flex: 0 0 100%;
    }


    .showcase-embed-wrap {
        width: 100%;
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
    }

    .showcase-embed-wrap iframe {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .showcase-header {
        padding: 20px 16px 14px;
    }

    .showcase-header h2 {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    .showcase-header .showcase-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .showcase-overlay {
        min-height: 0;
    }

    .showcase-col {
        padding: 0;
    }

    .image-scroller-wrap {
        max-width: 100%;
        margin-bottom: 0;
    }

    .image-scroller {
        height: 56vw;
    }

    .scroller-track img {
        height: 56vw;
    }

    .showcase-embed-wrap {
        max-width: 100%;
        height: 56vw;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }

    .scroller-text {
        padding: 20px 20px 30px;
        background: rgba(0, 0, 0, 0.55);
    }

    .scroller-label {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 10px;
    }

    .scroller-sublabel {
        font-size: 14px;
        line-height: 22px;
        max-width: 100%;
    }

    .scroll-arrow {
        display: none;
    }

    .swipe-hint {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
        color: #ffffff;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: 0.03em;
        text-align: center;
        padding: 60px 0 20px;
        pointer-events: none;
        z-index: 3;
        transition: opacity 0.6s ease;
    }

    .swipe-hint.hidden {
        opacity: 0;
    }

    .showcase-cta {
        padding: 20px 0 30px;
    }
}

.properties-intro {
    background-color: #213035;
    color: #ffffff;
    text-align: center;
    padding: 45px 20px;
    width: 100%;
}

.properties-intro h2 {
    font-size: 55px;
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.properties-intro p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    max-width: 650px;
    margin: 0 auto;
}

/* Tab System */
.showcase-tab-wrap {
    position: relative;
    z-index: 1;
}

.showcase-tab-nav {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.45);
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.showcase-tab {
    flex: 1;
    min-width: 80px;
    height: 50px;
    padding: 0 12px;
    font-family: 'Celebes', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.showcase-tab.active {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.showcase-tab:hover:not(.active) {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.showcase-panels-track {
    display: flex;
    overflow: hidden;
    align-items: flex-start;
}

.showcase-panel {
    min-width: 100%;
    padding: 0 24px 52px;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.showcase-panel-pod {
    max-width: 960px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.35);
}

.showcase-panel-pod .image-scroller-wrap {
    max-width: 100%;
    margin-bottom: 0;
    border: none;
}

.showcase-panel-pod .image-scroller {
    height: 475px;
}

.showcase-panel-pod .scroller-track img {
    height: 475px;
}

.photos-panel-body {
    padding: 24px 32px 32px;
    text-align: center;
}

.showcase-tab-wrap .scroller-label,
.showcase-tab-wrap .scroller-sublabel {
    color: #213035;
    text-align: center;
    max-width: 100%;
}

.showcase-tab-wrap .scroller-label {
    font-size: 28px;
    line-height: 34px;
}

.showcase-tab-wrap .scroller-sublabel {
    font-size: 15px;
    line-height: 24px;
}

.showcase-tab-wrap .scroller-text {
    background: none;
}

.showcase-panel-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 30px;
}

.showcase-panel-cta .whats-included-btn {
    position: absolute;
    right: 0;
}

.whats-included-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Celebes', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #213035;
    background: rgba(33, 48, 53, 0.08);
    border: none;
    border-radius: 20px;
    padding: 9px 18px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.whats-included-btn:hover {
    background: rgba(33, 48, 53, 0.15);
}

.showcase-embed-panel {
    padding: 32px;
    text-align: center;
}

.showcase-embed-panel .showcase-embed-wrap {
    width: 100%;
    max-width: 750px;
    height: 475px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-embed-panel .scroller-text {
    padding: 0;
}

.amenities-panel-body {
    padding: 32px;
}

.amenities-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.amenities-panel-top h3 {
    font-family: 'Celebes', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #213035;
    margin: 0;
}

.back-to-photos {
    font-family: 'Celebes', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.back-to-photos:hover {
    color: #213035;
}

.amenity-group + .amenity-group {
    margin-top: 28px;
}

.amenity-group-label {
    font-family: 'Celebes', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #213035;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8e4de;
}

.amenity-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.amenity-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #f5f5f0;
    border-radius: 4px;
    font-size: 13px;
    color: #213035;
    border: 1px solid #e8e4de;
    white-space: nowrap;
}

.amenities-callout {
    margin-top: 28px;
    padding: 14px 18px;
    border-left: 2px solid #213035;
    background: rgba(33, 48, 53, 0.05);
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    border-radius: 0 4px 4px 0;
}

@media (max-width: 1009px) {
    .showcase-panel {
        padding: 0 0 52px;
    }
}

@media (max-width: 820px) {
    .showcase-panel-cta {
        flex-direction: column;
        gap: 24px;
    }

    .showcase-panel-cta .whats-included-btn {
        position: static;
    }

    .showcase-tab-nav {
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .showcase-tab-nav::-webkit-scrollbar {
        display: none;
    }

    .showcase-tab {
        flex: 0 0 205px;
        font-size: 9px;
        padding: 0 10px;
        letter-spacing: 0.06em;
        gap: 4px;
    }

    .showcase-tab-wrap::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 64px;
        height: 50px;
        background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.6));
        z-index: 11;
        pointer-events: none;
    }
}

@media (max-width: 768px) {
    .showcase-panel {
        padding: 0 0 32px;
    }

    .showcase-panel-pod .image-scroller,
    .showcase-panel-pod .scroller-track img {
        height: 56vw;
    }

    .photos-panel-body {
        padding: 16px 16px 24px;
    }

    .amenities-panel-body,
    .showcase-embed-panel {
        padding: 20px 16px;
    }

    .showcase-embed-panel .showcase-embed-wrap {
        height: 56vw;
    }

    .amenities-panel-top h3 {
        font-size: 20px;
    }

    .showcase-tab-wrap .scroller-label {
        font-size: 22px;
        line-height: 28px;
    }

    .showcase-tab-wrap .scroller-sublabel {
        font-size: 14px;
        line-height: 22px;
    }

    .showcase-tab-wrap .scroller-text {
        background: none;
        padding: 16px 0 0;
    }
}
