* {
    box-sizing: border-box;
}

:root {
    --primary-color: #0a6cb6;

}

html,
body {
    height: 100%;
    margin: 0;
    font-family: 'Gidole', sans-serif;
    overflow: hidden;
    /* Remove any potential scrollbars */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Eras', sans-serif;
}



.bg-image {
    /* The image used */
    background-image: url("../images/Lift-Layout.jpg");

    /* Full height */
    height: 100%;
    width: 100%;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;


    /* Position relative to allow absolute positioning of children if needed */
    position: fixed;
    transform: scale(1.05);
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

/* Ensure content stays above the background and overlay */
.content-wrapper {
    position: relative;
    z-index: 1;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    z-index: 1;
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    cursor: pointer;
    display: flex;
    gap: 10px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
}

.logo {
    width: 60px;
}

.logo img {
    width: 100%;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    padding: 3px 0;
}

.menu-icon span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    display: block;
    border-radius: 60px;
}

.menu-icon span:nth-child(2) {
    width: 75%;
}

.menu-icon span:nth-child(3) {
    width: 55%;
}

/* --- Animated Clouds --- */
.clouds-container {
    position: fixed;
    /* Keep it behind the content but visually on the screen */
    bottom: 0;
    /* Stick to the bottom */
    left: 0;
    width: 100%;
    height: 100vh;
    /* Only take up the bottom half of the screen */
    z-index: 50;
    /* Between bg-image and content-wrapper */
    pointer-events: none;
    /* Make clicks pass through */
    overflow: hidden;
}

.cloud-wrapper {
    position: absolute;
    left: -600px;
    /* Start far left off-screen, adjust based on image max-width */
}

/* Ensure images maintain aspect ratio without stretching */
.cloud-img {
    max-width: 500px;
    /* Base size, adjust as needed */
    height: auto;
    width: 100%;
    /* Make it responsive */
    display: block;
    mix-blend-mode: screen;
    /* Usually helps clouds blend nicer with backgrounds */
}

@keyframes floatclouds {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(100vw + 800px));
        /* Move fully across screen + width of cloud */
    }
}

/* Distribute clouds vertically *within* the bottom 50vh container */
.cloud-1 {
    bottom: 10%;
    /* 10% up from the absolute bottom of the screen */
    animation: floatclouds 45s linear infinite;
}

.cloud-1 .cloud-img {
    transform: scale(1.2);
    opacity: 0.9;
}

.cloud-2 {
    bottom: 40%;
    animation: floatclouds 35s linear infinite 12s;
    /* Start later */
}

.cloud-2 .cloud-img {
    transform: scale(0.8);
    opacity: 0.7;
}

.cloud-3 {
    bottom: 25%;
    animation: floatclouds 50s linear infinite 5s;
}

.cloud-3 .cloud-img {
    transform: scale(1.5);
    opacity: 0.85;
}

.cloud-4 {
    bottom: 60%;
    /* Near the top of the bottom half (the middle of the screen) */
    animation: floatclouds 40s linear infinite 20s;
}

.cloud-4 .cloud-img {
    transform: scale(0.9);
    opacity: 0.6;
}

.cloud-5 .cloud-img {
    transform: scale(1.1);
    opacity: 0.8;
}


.slider-main-content {
    width: 95%;
    margin: auto;
    perspective: 2000px;
    overflow: hidden;
    /* Ensure only 3 items are visible */
}

.lift-slider {
    transform-style: preserve-3d;
    margin-top: 80px;
}

.lift-slider .owl-stage-outer {
    overflow: visible !important;
}

.lift-slider .owl-stage {
    display: flex;
    align-items: center;
    transform-style: preserve-3d;
}

.lift-slider .owl-item {
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    /* Full opacity as requested */
    pointer-events: none;
    /* transform: scale(0.65) translateZ(-300px) rotateY(50deg); */
}

/* Show only active 3 items */
.lift-slider .owl-item.active {
    opacity: 1;
    /*transform: scale(0.75) translateZ(-150px) rotateY(30deg);*/
}

/* Right neighbor of center */
.lift-slider .owl-item.active.center+.owl-item.active {
    /*transform: scale(0.75) translateZ(-150px) rotateY(-30deg);*/
}

/* Center element */
.lift-slider .owl-item.active.center {
    opacity: 1;
    pointer-events: auto;
    /*transform: scale(1.1) translateZ(100px) rotateY(0deg);*/
    /* Highlighting without excessive stretching */
    z-index: 100;
}

.lift-slider .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.lift-slider .item img {
    height: 55vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;

    transition: filter 0.5s ease;
    display: block;
    /* Blend with clouds at the bottom - Apply to IMAGE only */

}


/* Specific highlighting for the center item */


.lift-details {
    margin-top: 20px;
    color: #000;
    position: relative;
    z-index: 200;
    /* Ensure text is above foreground clouds */
    pointer-events: auto;
    /* Allow clicking on buttons */
    transition: all 0.5s ease;
}

/* Hide details for non-center items to match premium look */
.lift-slider .owl-item:not(.center) .lift-details {
    opacity: 0;


}

.lift-slider .owl-item.center .lift-details {
    opacity: 1;

}


.lift-details h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lift-details p {
    font-weight: 300;
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.view-details-btn {
    padding: 10px 25px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    /* Black border */
    color: #000;
    /* Black text */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.view-details-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.view-details-btn i {
    margin-left: 10px;
    font-size: 18px;
    vertical-align: middle;
}

.owl-item {
    transform: scale(0.7);
}

.owl-item.active.center {
    transform: scale(1);
}

.lift-img {
    position: relative;
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

.cloud-btm-overlay {
    position: absolute;
    bottom: -30px;
    height: auto !important;
    left: -10px;
    right: 0;
    width: 100%;
    z-index: 50;
    pointer-events: none;
    display: block;
    max-width: none !important;
    width: 100% !important;
    transform: scale(1.7);
    filter: blur(2px);
}

.lift-slider .owl-nav {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    pointer-events: none;
    z-index: 1000;
}

.lift-slider .owl-prev,
.lift-slider .owl-next {
    pointer-events: auto;
    position: absolute;
    background: #fff !important;
    color: #000 !important;
    border-radius: 50% !important;
    width: 50px;
    height: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    line-height: 1 !important;
    top: -25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lift-slider .owl-prev:hover,
.lift-slider .owl-next:hover {
    background: #000 !important;
    color: #fff !important;
}

.lift-slider .owl-prev {
    left: 40px;
}

.lift-slider .owl-next {
    right: 40px;
}

/* Model Grid Overlay */
.model-overlay-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f7f8f9;
    /* Solid light color from reference image */
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
    color: #333;
}

.model-overlay-container.active {
    opacity: 1;
    visibility: visible;
}

.overlay-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 40px;
}

.overlay-controls {
    display: flex;
    align-items: center;
    gap: 25px;
}

.overlay-controls svg {
    cursor: pointer;
    color: #222;
}

#closeModelOverlay {
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

#closeModelOverlay:hover {
    transform: scale(1.1);
}

.overlay-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.overlay-title-section {
    text-align: center;
    margin-bottom: 70px;
}

.overlay-title-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.overlay-title-section p {
    font-size: 16px;
    color: #777;
    font-weight: 400;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 70px;
    column-gap: 40px;
}

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

.model-item img {
    height: 180px;
    /* Reduced to fit grid properly */
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.model-item:hover img {
    transform: scale(1.03);
}

.model-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.model-item p {
    font-size: 16px;

}

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

@media (max-width: 767px) {
    .lift-slider{
        margin-top: 20px;    
    }
    
    .content-wrapper{
        overflow: auto;
        overflow-x: hidden;
    }
}

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



#buttons {
    position: fixed;
    width: 1024px;
    max-width: 90%;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    padding: 10px;
    box-sizing: border-box;
    z-index: 9999;
}

.pano-thumb-btn {
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    overflow: hidden;
    width: 70%;
}

.pano-thumb-btn img {
    width: 80%;
    margin: 0 auto;
    height: auto;
    display: block;
    border-radius: 4px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

/* Nav arrows styling for thumbnails */
#buttons .owl-nav {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    pointer-events: none;
}

#buttons .owl-prev,
#buttons .owl-next {
    pointer-events: auto;
    position: absolute;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 30px;
    height: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    line-height: 1 !important;
    top: -15px;
    transition: all 0.3s ease;
}

#buttons .owl-prev:hover,
#buttons .owl-next:hover {
    background: #000 !important;
}

#buttons .owl-prev {
    left: -40px;
}

#buttons .owl-next {
    right: -40px;
}

.pano-thumb-btn:hover,
.pano-thumb-btn.active {
    transform: scale(1.05);
}

.pano-thumb-btn:hover img,
.pano-thumb-btn.active img {
    border-color: var(--primary-color);
}

.view-details-btn {
    padding: 10px 25px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    /* Black border */
    color: #fff;
    /* Black text */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.view-details-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

#buttons.owl-carousel .owl-item {
    padding: 10px;
    text-align: center;
}

.lift-header {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    pointer-events: none;
    display: flex;
    justify-content: center;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    position: relative;
    pointer-events: none;
}

.header-content>* {
    pointer-events: auto;
}

.lift-heading {
    margin: 0;
    padding: 8px 20px;
    background: #fff;
    color: #000;
    border-radius: 30px;
    /* matches icon curves perfectly */
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-transform: uppercase;
}

/* --- Top Left Icons --- */
.top-left-icons {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    gap: 10px;
    /* cohesive gap */
}

.top-left-icons .icon-link {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.top-left-icons .icon-link:hover {
    background: #000;
    color: #fff;
    transform: scale(1.1);
}

.top-left-icons .icon-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Responsive constraints */
@media (max-width: 576px) {
    .header-content {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .top-left-icons {
        position: relative;
        left: auto;
        top: auto;
    }
}

.modal-title {
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.btn-close {
    background: none !important;
    background-color: var(--primary-color) !important;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='m21 12.46-3.59 3.54 3.59 3.54a1 1 0 0 1 0 1.46 1 1 0 0 1 -.71.29 1 1 0 0 1 -.7-.29l-3.59-3.59-3.54 3.59a1 1 0 0 1 -.7.29 1 1 0 0 1 -.71-.29 1 1 0 0 1 0-1.41l3.54-3.59-3.54-3.54a1 1 0 0 1 1.41-1.41l3.54 3.54 3.54-3.54a1 1 0 0 1 1.46 1.41zm4.9 13.44a14 14 0 1 1 0-19.8 14 14 0 0 1 0 19.8zm-1.41-18.39a12 12 0 1 0 0 17 12 12 0 0 0 0-17z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='m21 12.46-3.59 3.54 3.59 3.54a1 1 0 0 1 0 1.46 1 1 0 0 1 -.71.29 1 1 0 0 1 -.7-.29l-3.59-3.59-3.54 3.59a1 1 0 0 1 -.7.29 1 1 0 0 1 -.71-.29 1 1 0 0 1 0-1.41l3.54-3.59-3.54-3.54a1 1 0 0 1 1.41-1.41l3.54 3.54 3.54-3.54a1 1 0 0 1 1.46 1.41zm4.9 13.44a14 14 0 1 1 0-19.8 14 14 0 0 1 0 19.8zm-1.41-18.39a12 12 0 1 0 0 17 12 12 0 0 0 0-17z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 1.5rem;
    mask-size: 1.5rem;
    opacity: 1 !important;
    width: 2rem;
    height: 2rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-close:hover {
    transform: rotate(90deg);
    opacity: 0.7 !important;
}

.pano-thumb-btn span {
    display: inline-block;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    background: #fff;
    border-radius: 30px;
    padding: 3px 7px;
}

@media (max-width: 991px) {
    .lift-slider .owl-prev {
        left: 0px;
    }

    .lift-slider .owl-next {
        right: 0px;
    }

}

.header-inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
}

.product-heading {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 30px 10px 40px;
    border-radius: 50px 0 0 50px;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    margin-right: -20px;
    box-shadow: -2px 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- Bottom Left Icons --- */
.bottom-left-icons {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.bottom-left-icons .icon-link {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.bottom-left-icons .icon-link:not(:last-child) {
    padding-right: 20px;
}

.bottom-left-icons .icon-link:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #fff;
    border-radius: 30px;
}

.bottom-left-icons .icon-link:hover img {
    transform: scale(1.2);
}

.bottom-left-icons .icon-link img {
    width: auto;
    height: 80%;
    transition: transform 0.3s ease;
}

.bottom-left-icons .icon-link img {
    filter: invert(1);
}

@media (max-width: 576px) {
    .bottom-left-icons {
        left: 10px;
        bottom: 10px;
        gap: 8px;
    }

    .bottom-left-icons .icon-link {
        width: 30px;
        height: 30px;
        display: block !important;
    }

    .bottom-left-icons .icon-link img {
        width: 30px;
        height: 30px;
    }

    .bottom-left-icons .icon-link:not(:last-child) {
        padding-right: 40px;
        box-sizing: border-box;
    }
}

/* WhatsApp Share Button */
.whatsapp-share {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-share:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-share img {
    width: 100%;
    height: 100%;
}

@media (max-width: 576px) {
    .whatsapp-share {
        right: 20px;
        bottom: 20px;
        width: auto;
        height: auto;
    }

    .whatsapp-share img {
        width: 40px;
        height: 40px;
    }
}



.modal-body p {
    color: #000 !important;
}

p.lead {
    font-family: 'Eras', sans-serif;
    color: var(--primary-color) !important;
}

.list-group-item h6 {
    font-size: 1.25rem !important;
    color: var(--primary-color) !important;
}

.list-group-item span {
    color: #000 !important;
}

.list-group-item:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: #666 dashed thin !important;
}

.modal-header,
.modal-body {
    padding: 0 !important;
}

.modal-content {
    padding: 20px !important;
}

.modal-content .alert {
    background: none;

    font-family: 'Eras', sans-serif !important;
    font-size: 20px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.modal-content .alert small {
    color: #aaa !important;
}

.modal-content .alert strong {
    color: var(--primary-color);
}

.modal-header {
    padding-bottom: 10px !important;
    border-bottom: var(--primary-color) dashed thin !important;
    margin-bottom: 15px;
}


/* OVERLAY AT BOTTOM CENTER */
.pano-arc-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 700px;
    height: 140px;

    position: absolute;
}

/* ENABLE CLICK ON BUTTONS */
.pano-arc-container * {
    pointer-events: all;
}

.arc-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* BUTTON STYLE */
.pano-thumb-btn {
    position: absolute;
    width: 100px;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.3s ease;
}

.pano-thumb-btn img {
    width: 100%;
    border-radius: 8px;
}

.pano-thumb-btn span {
    display: block;
    font-size: 11px;
    margin-top: 4px;
    color: #fff;
}

/* ACTIVE CENTER */
.pano-thumb-btn.active {
    transform: scale(1.2);
    z-index: 5;
}

/* NAV BUTTONS */
.arc-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 30;
    width: 40px;
    height: 40px;
}

.prev {
    left: -10px;
}

.next {
    right: -10px;
}

.pano-thumb-btn {
    width: 95px;
    /* slightly bigger for spacing */
}

/* stronger center focus */
.pano-thumb-btn.active {
    transform: scale(1.25);
}

.pano-thumb-btn {
    position: absolute;
    width: 100px;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.3s ease;
}

.pano-thumb-btn span {
    display: none;
    background: var(--primary-color);
    color: #fff;
    font-family: 'Gidole', sans-serif;
    font-size: 12px;
    margin-top: 5px;
}

.pano-thumb-btn.active span {
    display: block;
}

.arc-nav {
    position: absolute;
    top: 50%;
    /* 🔥 exact vertical center */
    transform: translateY(-50%);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .pano-thumb-btn {
        width: 70px;
    }

    .pano-arc-container {
        width: 70%;
    }
}

@media (max-width: 991px) {
    .pano-arc-container {
        bottom: 50px;
    }
}

@media (max-width: 680px) {
    .pano-thumb-btn:not(.active) {
        display: none !important;
    }
}

body {
    -webkit-user-select: none;
    user-select: none;
}

input,
textarea {
    -webkit-user-select: auto;
    user-select: auto;
}

/* Prevent Image Drag */
img {
    pointer-events: none;
    -webkit-user-drag: none;
}

/* Screenshot Protection */
#protect-layer {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 999999999;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease;
}

.blur-protect * {
    filter: blur(25px) !important;
}