body,
html {
    font-family: 'Montserrat', sans-serif;
}


/* Navbar */

.navbar-custom {
    transition: all 0.4s ease;
    background: transparent;
}

.navbar-custom.scrolled {
    padding: 3px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-custom.scrolled .nav-link {
    color: #000;
}

.navbar-brand img {
    width: 120px;
    transition: 0.3s ease;
}

.nav-item {
    margin: 0 25px;
}

.nav-link {
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
    text-decoration: none;
}

.nav-link:hover {
    color: #00d2ff !important;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q 25 0 50 10 T 100 10 T 150 10 T 200 10' fill='none' stroke='%2300d2ff' stroke-width='10' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 50px 12px;
    background-position: 0 0;
    transition: width .3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    animation: flowWave 5s linear infinite;
}

@keyframes flowWave {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 0;
    }
}


.nav-link.active {
    color: #00d2ff !important;
}


.navbar-toggler {
    border: none;
    color: white;
    padding: 0;
    outline: none;
    z-index: 1050;
    position: relative;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.d5 .line {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #00D2FF;
    margin: 6px 0;
    border-radius: 2px;
    transition: 0.4s ease-in-out;
}

.d5.active .line:nth-child(1) {
    transform: translateY(9px) rotate(135deg);
    background: #00f2ff;
    box-shadow: 0 0 10px #00f2ff;
}

.d5.active .line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.d5.active .line:nth-child(3) {
    transform: translateY(-9px) rotate(-135deg);
    background: #00f2ff;
    box-shadow: 0 0 10px #00f2ff;
}

@media (max-width: 992px) {

    .page-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(3px);
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    body.menu-open .page-overlay {
        opacity: 1;
        visibility: visible;
    }

    .sidebar-layer-1 {
        position: fixed;
        top: 0;
        right: 0;
        width: 82%;
        max-width: 350px;
        height: 100vh;
        background: rgba(0, 210, 255, 0.15);
        backdrop-filter: blur(10px);
        z-index: 1010;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) .3s;
    }

    .navbar-collapse {
        position: fixed !important;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start !important;
        padding-top: 60px;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(18, 18, 18, 0.95);
        border-left: 1px solid rgba(0, 210, 255, 0.3);
        z-index: 1020;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0s;
    }

    body.menu-open .sidebar-layer-1 {
        transform: translateX(0);
        transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0s;
    }

    body.menu-open .navbar-collapse {
        transform: translateX(0);
        transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
    }

    .navbar-nav {
        width: 100%;
        align-items: flex-start !important;
        padding-left: 40px;
    }

    .nav-item {
        margin: 20px 0;
        opacity: 0;
        transform: translateX(30px);
        transition: all .4s ease;
    }
    
    .nav-link{
        color: white !important;
    }

    body.menu-open .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    body.menu-open .nav-item:nth-child(1) {
        transition-delay: 0.4s;
    }

    body.menu-open .nav-item:nth-child(2) {
        transition-delay: 0.5s;
    }

    body.menu-open .nav-item:nth-child(3) {
        transition-delay: 0.6s;
    }

    body.menu-open .nav-item:nth-child(4) {
        transition-delay: 0.7s;
    }
}




.dropdown-toggle::after {
    display: none !important; 
}

.nav-item.dropdown .nav-link {
    padding-right: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center; 
    background-size: 10px;
}

.navbar-nav .dropdown-menu {
    padding: 15px 20px;
    background: rgba(15, 15, 15, 0.5); 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 210, 255, 0.15); 
    border-top: 3px solid #00d2ff; 
    border-radius: 0 0 12px 12px;
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.08);
}

.dropdown-item {
    margin: 8px 0 !important;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 20px !important;
    position: relative;
    background: transparent !important;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.dropdown-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3px; 
    height: 100%;
    background: rgba(0, 210, 255, 0.1);
    border-left: 3px solid #00d2ff;
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom left;
    transition: transform 0.3s ease, width 0.4s ease 0.1s;
}

.dropdown-item:hover, 
.dropdown-item:focus {
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.8);
}

.dropdown-item:hover::before {
    transform: scaleY(1); 
    width: 100%; 
}

.dropdown-menu.show {
    animation: dropFadeIn 0.3s ease forwards;
}


@media (min-width: 992px) {
    
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: dropFadeIn 0.3s ease forwards;
    }
    
}


@keyframes dropFadeIn {
    
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    
}

@media (max-width: 991.98px) {
    
    .dropdown-menu {
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .nav-item.dropdown .nav-link {
        background-position: right 40px center; 
    }
    
    .dropdown-menu {
        position: static !important;
        box-shadow: none;
        width: 100%;
        float: none;
    }
    
    .dropdown-item {
        padding: 10px 0;
        text-align: left;
    }
    
    .dropdown-item:hover {
        background: transparent;
        color: #00d2ff;
    }
    
    .dropdown {
        text-align: left;
    }
    
    .navbar-nav .dropdown-menu {
        margin-left: -17px;
        padding: 15px 20px 15px 0;
    }
    
}






/* Main Btn */

.btn-realistic-water {
    display: inline-block;
    position: relative;
    margin-top: 10px;
    text-decoration: none;
    padding: 15px 25px;
    border: 2px solid rgba(0, 210, 255, 0.5);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.btn-realistic-water .water-fill {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #00c6ff, #0072ff);
    transition: bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-realistic-water .water-fill::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 43px;
    top: -28px;
    left: 0;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 60" xmlns="http://www.w3.org/2000/svg"><path d="M0,30 Q300,5 600,30 T1200,30 V60 H0 Z" fill="%2300c6ff"/></svg>');

    background-size: 50% 100%;
    background-repeat: repeat-x;
    animation: flow 3s linear infinite;
}

@keyframes flow {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.btn-realistic-water .btn-text {
    position: relative;
    z-index: 10;
    color: rgba(0, 0, 0, 0.9);
    font-size: 18px;
    font-weight: 600;
}

.btn-realistic-water .bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    width: 8px;
    height: 8px;
    bottom: -1px;
    z-index: 5;
    opacity: 0;
    animation: rise 2s infinite ease-in;
}

.btn-realistic-water .bubble:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.btn-realistic-water .bubble:nth-child(2) {
    left: 40%;
    animation-delay: 1s;
}

.btn-realistic-water .bubble:nth-child(3) {
    left: 60%;
    animation-delay: 0.5s;
}

.btn-realistic-water .bubble:nth-child(4) {
    left: 80%;
    animation-delay: 0.2s;
}

@keyframes rise {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    20% {
        transform: translateY(-10px);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-80px);
        opacity: 0;
    }
}

.btn-realistic-water:hover {
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.4);
    border-color: #00c6ff;
}

.btn-realistic-water:hover .btn-text {
    color: white;
}

.btn-realistic-water:hover .water-fill {
    bottom: 0;
}

.btn-realistic-water:hover .bubble {
    opacity: 1;
}



/* Home Page - Hero Section   */

.hero-section {
    position: sticky;
    top: 0;
    z-index: 0;
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1576013551627-0cc20b96c2a7?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.tropical-leaf {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    transition: all 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    width: 300px;
}

.leaf-left {
    bottom: 10%;
    left: -350px;
    transform: rotate(45deg);
}

.leaf-top-right {
    top: -200px;
    right: 0;
    width: 200px;
    transform: rotate(180deg);
}

.active-scene .leaf-left {
    transform: rotate(6deg);
    left: -30px;
    transform-origin: left bottom;
    animation: move 2s ease infinite alternate;
}

@keyframes move {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(6deg);
    }
}

.active-scene .leaf-top-right {
    transform: rotate(180deg);
    top: -40px;
}

.fun-font {
    font-family: 'Pacifico', cursive;
    text-transform: none;
    font-weight: 400;
    color: #00d2ff;
}

/* Marquee */

.marquee {
    z-index: 20;
    position: relative;
    margin-bottom: -20px;
    margin-top: -10px;
    background: rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgb(255, 255, 255);
    border-bottom: 1px solid rgba(0, 0, 0, 0.253);
    overflow: hidden;
    padding: 10px 0;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 35s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
}

.marquee span {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 30px;
    letter-spacing: 2px;
    line-height: 1;
}

.solid {
    color: #F8F9FA; 
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hollow {
    color: transparent;
    -webkit-text-stroke: 1px #00E5FF; 
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3); 
}

.divider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 25px;
}

.marquee-icon {
    width: 18px;
    filter: invert(100%) !important; 
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


@media (max-width: 768px) {
    .marquee {
        margin-top: -40px;
        padding: 15px 0;
    }

    .marquee span {
        font-size: 2rem;
        margin: 0 15px;
    }

    .divider {
        font-size: 1rem;
    }
}

/* About Us Section */

.about-us {
    background: #E5EEF3;
    color: rgb(0, 0, 0);
    padding: 60px 0 10px;
    position: relative;
}

.video-container {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Amenities Section */

.amenities-section {
    background: #E5EEF3;
    overflow: hidden;
    position: relative;
}

.amenity-visual-wrapper {
    position: relative;
    padding: 20px;
}

.portal-frame {
    position: relative;
    height: 500px;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 8, 10, 0.9), transparent);
    z-index: 1;
}

.floating-caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
}

.floating-caption span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #00d2ff;
    font-weight: bold;
}

.floating-caption h5 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
    margin: 0;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.4);
}

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 208, 255, 0.3);
    padding: 35px 30px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 50, 80, 0.08);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #00d2ff;
    box-shadow: 0 20px 50px rgba(0, 210, 255, 0.15);
}

.f-icon {
    font-size: 1.8rem;
    color: #00d2ff;
    margin-bottom: 25px;
    transition: 0.3s;
    border: 1px solid #00d2ff;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.1);
    width: 60px;
    height: 60px;
    background: rgba(0, 208, 255, 0.19);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card:hover .f-icon {
    background: #00d2ff;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
}

.f-content h5 {
    color: #0a0a0a;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.f-content p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
    font-weight: 500;
}


/*Testimonial */

.heading-syne {
    font-family: Syne;
    font-weight: 800;
}

.happy-testimonials {
    padding: 80px 0 150px;
    background: #E5EEF3;
    position: relative;
    overflow: hidden;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .4;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: #7ce8ff;
    top: 30%;
    left: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #ffd700;
    bottom: -100px;
    right: -100px;
}

.testimonial-deck {
    max-width: 550px;
    height: 450px;
    margin: auto;
    position: relative;
}

.review-card {
    position: absolute;
    width: 100%;
    background: linear-gradient(45deg, #000000, #666666);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.5);
    box-shadow: 3px 4px 0px 1px rgb(124 124 124);
    transition: all 1.2s cubic-bezier(.34,1.56,.64,1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 370px;
}

.review-card[data-pos="1"] {
    z-index: 3;
    transform: scale(1) rotate(0deg);
}

.review-card[data-pos="2"] {
    z-index: 2;
    transform: translateY(20px) scale(.95) rotate(2deg);
}

.review-card[data-pos="3"] {
    z-index: 1;
    transform: translateY(40px) scale(.9) rotate(-2deg);
}

.swipe-out {
    transform: translateX(120%) translateY(-50px) rotate(15deg) !important;
    opacity: 0 !important;
}

.quote-icon {
    font-size: 2.5rem;
    color: #00d2ff;
    opacity: .4;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
}

.guest-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px dashed #ffffff52;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00d2ff;
    padding: 2px;
}

.stars {
    color: #00d2ff;
    font-size: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 210, 255, 1);
}

@media(max-width:768px) {
    .review-card {
        padding: 30px 20px;
        min-height: 350px;
    }

    .review-text {
        font-size: 1rem;
    }

    .testimonial-deck {
        height: 400px;
    }
}



/* Ticket Card */

.ticket-section {
    background: #222222;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.custom-shape-divider-top {
    position: absolute;
    z-index: 1000;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: scaleY(-1);
}

.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 100px;
    transform: rotateY(180deg);
}

.custom-shape-divider-top .shape-fill {
    fill: #222222;
}

.ticket-card {
    border-radius: 25px;
    padding: 50px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ticket-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 210, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.15);
}

.ticket-card.featured {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(0, 210, 255, 0.4);
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.ticket-card.featured:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 210, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.15);
}

.price {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.3;
}

.ticket-card.featured .price {
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
}

.popular-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: linear-gradient(45deg, #ffd700, #ffaa00);
    color: #000;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 8px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
    z-index: 5;
}

.ticket-card .list-unstyled {
    width: max-content;
}

.btn-outline-info {
    color: #00d2ff;
    border-color: #00d2ff;
    font-weight: 600;
}

.btn-outline-info:hover {
    background-color: #00d2ff;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}


/*FAQ */

.heading-syne {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
}

.faq-section {
    padding: 100px 0;
    position: relative;
    background: url('images/footer-bg.jpg') repeat left top;
}

.faq-gallery {
    display: flex;
    width: 100%;
    height: 550px;
    gap: 15px;
    padding: 20px 0;
}

.faq-panel {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.3, 1);
    flex: 1;
    box-shadow: 0 10px 20px rgba(0, 50, 80, 0.1);
}

.faq-panel:not(.active):hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.2);
}

.faq-panel.active {
    flex: 5;
    cursor: default;
    box-shadow: 0 15px 35px rgba(0, 50, 80, 0.2);
}

.faq-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}

.faq-panel.active::before {
    background: rgba(0, 0, 0, 0.1);
}

.short-title {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    white-space: nowrap;
    transition: all 0.5s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    opacity: 1;
}

.short-title i {
    font-size: 2rem;
    color: #00d2ff;
}

.faq-panel.active .short-title {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    pointer-events: none;
}

.glass-answer {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgb(255 255 255 / 61%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.faq-panel.active .glass-answer {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    transition-delay: 0.2s;
}

.faq-q {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #111;
    margin-bottom: 15px;
    border-left: 4px solid #00d2ff;
    padding-left: 15px;
}

.faq-a {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
    font-weight: 500;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #72e5ff63;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.close-btn:hover {
    background: #00d2ff;
    transform: scale(1.1);
}

.faq-panel.active .close-btn {
    opacity: 1;
    transition-delay: 0.4s;
}

@media (max-width: 992px) {
    .faq-gallery {
        flex-direction: column;
        height: 800px;
    }

    .faq-panel.active {
        flex: 4;
    }

    .short-title {
        flex-direction: row;
        bottom: 50%;
        transform: translate(-50%, 50%);
    }

    .faq-panel.active .short-title {
        transform: translate(-50%, 80%);
    }

    .glass-answer {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 20px;
    }

    .faq-q {
        font-size: 1.2rem;
    }

    .faq-a {
        font-size: 0.95rem;
    }
}




/* All Page Header  */

.immersive-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    background: #050a05;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.villa-anchor {
    position: absolute;
    right: 0;
    top: 0;
    width: 75%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?q=80&w=2070&auto=format&fit=crop') no-repeat center right;
    background-size: cover;
    mask-image: linear-gradient(to left, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 50%, transparent 100%);
    filter: brightness(0.6) contrast(1.2);
    z-index: 1;
}

.search-beam {
    position: absolute;
    bottom: -50px;
    right: 20%;
    width: 2px;
    height: 1200px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
    box-shadow: 0 0 40px rgba(0, 210, 255, 0.4);
    transform-origin: bottom center;
    z-index: 3;
    animation: searchSky 8s infinite ease-in-out alternate;
}

.beam-2 {
    right: 30%;
    animation-delay: -4s;
    opacity: 0.5;
}

@keyframes searchSky {
    0% {
        transform: rotate(-15deg) skewX(2deg);
    }

    100% {
        transform: rotate(15deg) skewX(-2deg);
    }
}

.sparkle {
    position: absolute;
    background: white;
    border-radius: 50%;
    z-index: 4;
    opacity: 0;
    animation: rise 5s infinite ease-in;
}

@keyframes rise {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(-500px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-left: 8%;
    width: 50%;
    color: white;
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(30px, 8vw, 110px);
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(0, 210, 255, 0.4);
}

.skew-divider {
    position: relative;
    top: -100px;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 20;
    margin-bottom: -70px;
    pointer-events: none;
}

.skew-divider::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
}

.slide {
    position: absolute;
    top: -50px;
    right: -150px;
    height: 100px;
    transform: rotate(355deg);
    animation: slid 7s linear infinite;
    z-index: 10;
}

@keyframes slid {
    0% {
        transform: translateX(0) translateY(-20px) rotate(355deg);
    }

    100% {
        transform: translateX(calc(-100vw - 300px)) translateY(100px) rotate(355deg);
    }
}

@media (max-width: 991px) {
    .slide {
        transform: rotate(345deg);
        top: -75px;
        animation: slid-mobile 5s linear infinite;
    }
}

@keyframes slid-mobile {
    0% {
        transform: translateX(0) translateY(0) rotate(345deg);
    }

    100% {
        transform: translateX(calc(-100vw - 200px)) translateY(130px) rotate(345deg);
    }
}



/* About Page  */

.editorial-unique {
    padding: 20px 0;
}

.portal-wrapper {
    position: relative;
    padding-right: 50px;
}

.portal-mask {
    position: relative;
    height: 600px;
    width: 100%;
    border-radius: 300px 300px 0 0;
    overflow: hidden;
}

.portal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: spinBadge 10s linear infinite;
}

.badge-center {
    position: absolute;
    font-size: 1.5rem;
}

@keyframes spinBadge {
    100% {
        transform: rotate(360deg);
    }
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-pill {
    padding: 10px 20px;
    background: #d5e7f8;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid #eee;
    transition: 0.3s;
}

.feature-pill i {
    color: #00d2ff;
    margin-right: 8px;
}

.feature-pill:hover {
    background: #00d2ff;
    color: white;
    border-color: #00d2ff;
}

.feature-pill:hover i {
    color: white;
}

.interactive-vibe-section {
    padding: 120px 0;
}

.vibe-card {
    height: 350px;
    background: #f8f9fa;
    border: 1px solid #a0a0a0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.content-layer {
    position: relative;
    z-index: 5;
    padding: 30px;
    transition: 0.3s;
}

.icon-main {
    font-size: 3.5rem;
    color: #333;
    display: block;
    margin-bottom: 20px;
    transition: 0.3s;
}

.vibe-card h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #000;
}

.vibe-card p {
    color: #000000;
    font-size: 0.9rem;
}



.vibe-card .shutter-top,
.vibe-card .shutter-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background: #111;
    transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1);
    z-index: 4;
}

.vibe-card .shutter-top {
    top: 0;
    transform: translateY(-90%);
    border-bottom: 1px solid #333;
}

.vibe-card .shutter-bottom {
    bottom: 0;
    transform: translateY(90%);
    border-top: 1px solid #333;
}

.lock-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 4rem;
    color: #00d2ff;
    z-index: 6;
    transition: transform 0.4s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-private:hover .shutter-top {
    transform: translateY(0);
}

.card-private:hover .shutter-bottom {
    transform: translateY(0);
}

.card-private:hover .lock-icon {
    transform: translate(-50%, -50%) scale(1);
}

.card-private:hover .content-layer {
    opacity: 0;
}


.card-party:hover {
    animation: beat 0.4s infinite alternate;
    border-color: #bd00ff;
    box-shadow: 0 0 30px #bd00ff;
}

.card-party:hover .icon-main {
    color: #00d2ff;
    transform: scale(1.2);
    text-shadow: 0 0 10px #00d0ff77;
}

@keyframes beat {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.02);
    }
}

@keyframes spinLights {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.card-pool .water-wave {
    position: absolute;
    bottom: -180%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(0, 210, 255, 0.8);
    border-radius: 40%;
    animation: spinWave 6s linear infinite;
    transition: bottom 0.6s ease-out;
    z-index: 1;
}

.card-pool:hover .water-wave {
    bottom: -90%;
}

.vibe-card .bubbles span {
    position: absolute;
    bottom: -20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: riseBubbles 4s infinite linear;
    z-index: 2;
}

.vibe-card .bubbles span:nth-child(1) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-duration: 1s;
}

.vibe-card .bubbles span:nth-child(2) {
    left: 30%;
    width: 20px;
    height: 20px;
    animation-duration: 2s;
}

.vibe-card .bubbles span:nth-child(3) {
    left: 60%;
    width: 15px;
    height: 15px;
    animation-duration: 1.5s;
}

.vibe-card .bubbles span:nth-child(4) {
    left: 80%;
    width: 25px;
    height: 25px;
    animation-duration: 2.5s;
}


@keyframes spinWave {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes riseBubbles {
    from {
        bottom: -20px;
        opacity: 1;
    }

    to {
        bottom: 120%;
        opacity: 0;
    }
}


/* Services Page */

.service-deck-container {
    background: #fff;
    padding-bottom: 140px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card-wrapper {
    position: sticky;
    top: 0;
}

.service-card {
    margin: 20px auto;
    width: 90%;
    max-width: 1200px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(0, 238, 255, 0.473);
    transition: transform 0.5s ease;
}

.card-1 {
    background: #f0faff;
    top: 100px;
}

.card-1 .s-img-box {
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.card-2 {
    background: #0b0b0b;
    color: white;
    top: 130px;
}

.card-2 .s-content h2 {
    color: white !important;
}

.card-2 .s-content p {
    color: #aaa !important;
}

.card-2 .s-img-box {
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    transform: scaleX(-1);
}

.card-3 {
    background: #fff;
    top: 130px;
}

.card-3 .s-img-box {
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.s-content {
    width: 60%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.s-img-box {
    width: 40%;
}

.s-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s ease;
}

.service-card:hover .s-img {
    transform: scale(1.05);
}

.s-num {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 210, 255, 0.2);
    line-height: 0.5;
}

.s-title {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 20px 0;
}

.s-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.s-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.s-tag {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.card-2 .s-tag {
    border-color: #333;
    background: #222;
    color: #fff;
}

/*Horizontal-Card*/

.horizontal-scroll-section {
    height: 200vh;
    background: #131212;
    position: relative;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.card-track {
    display: flex;
    gap: 40px;
    padding-left: 5vw;
    width: max-content;
    will-change: transform;
}

.price-card {
    width: 340px;
    height: 460px;
    background: #111;
    border: 1px solid #474747;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: #00d2ff;
    box-shadow: 0 10px 40px rgba(0, 210, 255, 0.1);
}

.price-card.featured {
    background: linear-gradient(180deg, #111 0%, #0a151a 100%);
    border-color: #00d2ff;
}

.p-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: #00d2ff;
    filter: blur(70px);
    opacity: 0.15;
    border-radius: 50%;
    pointer-events: none;
}

.points li {
    display: block;
    margin: 20px 0;
}


/* Contact Page  */

.diary-cover {
    background: #252525;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    position: relative;
}

.diary-cover::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 0 8px black;
    pointer-events: none;
}

.diary-layout {
    display: flex;
    gap: 20px;
    position: relative;
}

.page {
    background-color: #fdfaf3;
    border-radius: 4px;
    min-height: 580px;
    padding: 40px 45px;
    position: relative;
    flex: 1;
    background-image: repeating-linear-gradient(transparent, transparent 33px, #a3c4dc 34px);
    background-position: 0 15px;
    z-index: 1;
}

.page-left {

    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    box-shadow: inset -25px 0 30px -10px rgba(0, 0, 0, 0.15),
        -4px 4px 0px rgba(240, 235, 225, 0.8),
        -6px 6px 5px rgba(0, 0, 0, 0.4);
}

.page-right {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: inset 25px 0 30px -10px rgba(0, 0, 0, 0.15),
        4px 4px 0px rgba(240, 235, 225, 0.8),
        6px 6px 5px rgba(0, 0, 0, 0.4);
}

.binder-rings {
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.ring-wrapper {
    position: relative;
    width: 100%;
    height: 30px;
}

.hole {
    width: 16px;
    height: 16px;
    background-color: #111;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.hole.left {
    left: 0;
}

.hole.right {
    right: 0;
}

.metal-ring {
    position: absolute;
    top: 50%;
    left: 4px;
    right: 4px;
    height: 12px;
    transform: translateY(-50%);
    background: linear-gradient(to bottom, #777 0%, #eee 40%, #fff 50%, #999 80%, #444 100%);
    border-radius: 10px;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.6), inset 0 -1px 2px rgba(0, 0, 0, 0.5);
    border: 1px solid #555;
}


.handwriting {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: #0b1a6b;
}

.handwriting h2 {
    font-size: 3.5rem;
    font-weight: 700;
    text-decoration: underline;
    margin-bottom: 25px;
    color: #111;
}

.handwriting a {
    display: block;
    margin-bottom: 20px;
    color: #0b1a6b;
    text-decoration: none;
}

.page-right {
    display: flex;
}

.sticky-note {
    background: #f7f18b;
    padding: 35px;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    transform: rotate(1.5deg);
    box-shadow:
        0 25px 40px rgba(0, 0, 0, 0.3),
        inset 0 -10px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;

    font-family: 'Kalam', cursive;
}

.sticky-note::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 20px;
    background: #f7f296;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.sticky-note h4 {
    font-size: 2rem;
    margin-top: -20px;
    margin-bottom: 40px;
}

.sticky-note .form-control,
.sticky-note .form-select {
    background: transparent;
    border: none;
    border-bottom: 2px dashed #c4b95d;
    border-radius: 0;
    font-size: 1.2rem;
    font-family: inherit;
}

.sticky-note .form-control:focus,
.sticky-note .form-select:focus {
    box-shadow: none;
    border-bottom-color: #000;
}

.sticky-note .btn-custom {
    background-color: #d84545;
    color: #fff;
    font-family: 'Kalam', cursive;
    font-weight: bold;
    font-size: 1.4rem;
    border-radius: 4px;
    border: 2px solid #5a0c0c;
    padding: 2px 25px;
    box-shadow: 2px 2px 0px #5a0c0c;
    transition: all 0.1s;
    margin-top: 10px;
}

.sticky-note .btn-custom:hover {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0px #5a0c0c;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

@media(max-width:992px) {
    .diary-layout {
        flex-direction: column;
    }
    
    .page {
        padding: 40px 20px;
    }
    
}




.map-wrapper {
    position: relative;
    width: 100%;
    height: 50vh;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: sepia(0.4) contrast(1.1) brightness(0.85) saturate(0.8);
    position: absolute;
    z-index: 1;
}

.tactile-overlays {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
}

.creases {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent 49.8%, rgba(255, 255, 255, 0.3) 49.9%, rgba(0, 0, 0, 0.4) 50%, transparent 50.2%), linear-gradient(to bottom, transparent 49.8%, rgba(255, 255, 255, 0.3) 49.9%, rgba(0, 0, 0, 0.4) 50%, transparent 50.2%);
}

.scrap-note {
    position: absolute;
    top: 25%;
    left: 10%;
    background: #fdfaf3;
    padding: 30px 40px;
    border-radius: 2px 15px 3px 12px / 15px 2px 12px 3px;
    transform: rotate(-4deg);
    box-shadow: 4px 8px 15px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(0, 0, 0, 0.05);
    background-image: repeating-linear-gradient(transparent, transparent 28px, rgba(163, 196, 220, 0.8) 29px);
    background-position: 0 5px;
}

.pushpin {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.pin-head {
    width: 18px;
    height: 18px;
    background: radial-gradient(circle at 30% 30%, #ff5e5e, #aa0000);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: inset -2px -2px 4px rgba(0, 0, 0, 0.6), -10px 15px 12px rgba(0, 0, 0, 0.4);
}

.pin-needle {
    position: absolute;
    top: 12px;
    left: 8px;
    width: 2px;
    height: 18px;
    background: linear-gradient(to right, #666, #ccc, #555);
    z-index: 1;
    transform-origin: top;
    transform: rotate(35deg);
}

.handwriting-text {
    font-family: 'Caveat', cursive;
    font-size: 3.5rem;
    color: #18285c;
    margin: 0;
    line-height: 1;
    text-shadow: 0px 0px 1px rgba(24, 40, 92, 0.3);
}

.handwriting-subtext {
    font-family: 'Kalam', cursive;
    font-size: 1.4rem;
    color: #c42b2b;
    margin: 10px 0 0 10px;
}

@media(max-width: 992px) {
    .scrap-note {
        top: 10%;
        left: 5%;
        padding: 20px 25px;
    }

    .handwriting-text {
        font-size: 2.5rem;
    }

}



/*  Footer  */

.footer-custom {
    background: linear-gradient(rgb(0 0 0 / 32%), rgb(0 0 0 / 32%)), url(images/footer-bg.jpg) repeat left top;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
}

.line {
    margin: 30px auto;
    width: 95%;
    height: 1px;
    border-top: 1px solid rgba(255,255,255,0.03);
    box-shadow: 0px 1px 0 rgba(0,0,0,0.6) , 0px -1px 0 rgba(255,255,255,0.08);
}

.box{
    padding:25px;
    border-left:1px solid rgba(255,255,255,0.03);
    box-shadow: inset 1px 0 0 rgba(0,0,0,0.6) , inset -1px 0 0 rgba(255,255,255,0.08);
}


.box .box-text {
    color: rgba(255, 255, 255, 0.726);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.726);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-link:hover {
    color: #fff;
    padding-left: 15px;
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.8), 0 0 20px rgba(0, 210, 255, 0.4);
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #00d2ff;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 10px #00d2ff;
}

.footer-link:hover::before {
    transform: scaleY(1);
}

@media (max-width: 768px) {
    .box{
        border-left: none;
        border-bottom: 1px solid rgba(255,255,255,0.03);
        padding-top: 31px !important;
        margin-bottom: 0px !important;

        box-shadow:
            inset 0 -1px 0 rgba(0,0,0,0.6),
            inset 0 1px 0 rgba(255,255,255,0.08);
    }

}


/* Top Btn  */

.party-scroll-btn {
    position: fixed;
    bottom: 15px;
    right: 20px;
    width: 55px;
    height: 55px;
    z-index: 9999;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.555);
    border-radius: 10%;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transform: translateY(60px);
    transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.party-scroll-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.party-scroll-btn:hover {
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
}

.wave {
    position: absolute;
    width: 150px;
    height: 150px;
    background: #13364C;
    border-radius: 40%;
    left: 50%;
    transform: translateX(-50%) rotate(0);
    top: 110%;
    transition: top 0.1s linear;
    z-index: -1;
}

.wave:nth-child(1) {
    animation: spin 8s linear infinite;
    background: #00d2ff;
}

.wave:nth-child(2) {
    opacity: 0.9;
    top: 100%;
    animation: spin 6s linear infinite;
}

@keyframes spin {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

.scroll-arrow {
    color: #000000;
    font-size: 25px;
    font-weight: bold;
    z-index: 10;
}

.party-scroll-btn:hover .wave {
    top: 2% !important;
}

.party-scroll-btn:hover .scroll-arrow {
    color: #ffffff;
}



/* Share Btn  */

.liquid-share-container {
    position: fixed;
    bottom: 15px;
    left: 20px;
    z-index: 9999;
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.gooey-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-blob {
    width: 55px;
    height: 55px;
    background: radial-gradient(circle at 30% 30%, #1e5272, #13364C);
    border-radius: 15px; 
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    pointer-events: auto;
    transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #00d2ff;

    box-shadow: 
        inset 3px 3px 6px rgba(255, 255, 255, 0.2), 
        inset -3px -3px 6px rgba(0, 0, 0, 0.5),     
        0 10px 20px rgba(0, 0, 0, 0.3),             
        0 0 15px rgba(0, 255, 136, 0.3);            
}

.main-blob::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 22px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4); 
    transform: rotate(-45deg); 
    pointer-events: none; 
}

.main-blob:hover {
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
}

.main-blob i {
    font-size: 20px;
    position: absolute;
    transition: 0.3s;
}

.close-icon {
    opacity: 0;
    transform: rotate(-180deg);
}

.share-icon {
    opacity: 1;
    transform: rotate(0);
}

.liquid-orb {
    width: 55px;
    height: 55px;
    background: #fff;
    border: 1px solid #00d2ff;
    border-radius: 50%;
    position: absolute;
    bottom: 8px;
    left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    color: #000;
    z-index: 0;
    transition: all .3s ease;
    pointer-events: auto;
    opacity: 0;
}

.whatsapp {
    color: #25D366;
}

.instagram {
    color: #E1306C;
}

.facebook {
    color: #1877F2;
}

.liquid-checkbox {
    display: none;
}

.liquid-checkbox:checked~.gooey-wrapper .main-blob {
    background: #fff;
    border: 1px solid #00d2ff;
    transform: scale(0.9);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.liquid-checkbox:checked~.gooey-wrapper:hover .main-blob {
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
}

.liquid-checkbox:checked~.gooey-wrapper .main-blob .share-icon {
    opacity: 0;
    transform: rotate(180deg);
}

.liquid-checkbox:checked~.gooey-wrapper .main-blob .close-icon {
    opacity: 1;
    transform: rotate(0);
}

.liquid-checkbox:checked~.gooey-wrapper .liquid-orb {
    opacity: 1;
}

.liquid-checkbox:checked~.gooey-wrapper .liquid-orb:nth-child(1) {
    transform: translateY(-90px);
}

.liquid-checkbox:checked~.gooey-wrapper .liquid-orb:nth-child(2) {
    transform: translate(65px, -65px);
}

.liquid-checkbox:checked~.gooey-wrapper .liquid-orb:nth-child(3) {
    transform: translate(90px, 0);
}

.liquid-orb:hover {
    background: #000;
    color: #00d2ff;
    box-shadow: 0 0 15px #00d2ff;
    z-index: 20;
}


/* Loader  */

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shutter {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #050505;
    z-index: 1;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.shutter-top {
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shutter-bottom {
    bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.loader-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    position: relative;
    margin: 0;
    padding: 0;
}

.logo-text::before {
    content: "THE BLISS BARN";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #00d2ff;
    overflow: hidden;
    border-bottom: 2px solid #00d2ff;
    height: 0%;
    animation: fillWater 1s linear forwards;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.5));
}

.sub-text {
    font-family: 'Pacifico', cursive;
    color: #fff;
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .5s ease forwards 0.3s;
}

.loader-container.loaded .shutter-top {
    transform: translateY(-100%);
}

.loader-container.loaded .shutter-bottom {
    transform: translateY(100%);
}

.loader-container.loaded .loader-content {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

@keyframes fillWater {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Media Queries */

@media (max-width: 768px) {
    .tropical-leaf {
        width: 100px;
    }

    .logo-text {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .navbar-custom.scrolled {
        padding: 5px;
    }

    .service-card-wrapper {
        position: static;
    }

    .service-card {
        top: 0;
    }
    
    .vip-form-wrapper {
        padding: 10px;
    }
    
}


@media (max-width: 991px) {
    .navbar-custom {
        background: rgba(255, 255, 255, 0.192);
        backdrop-filter: blur(10px);
        border-radius: 0px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .custom-shape-divider-top svg {
        width: auto;
    }

    .active-scene .leaf-top-right {
        top: 70px;
    }

    .hero-title {
        width: max-content;
    }

    .villa-anchor {
        width: 100%;
        opacity: 0.4;
    }

    .hero-content {
        width: 100%;
        padding: 0 20px;
    }

    .portal-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .content-box-float {
        left: 0;
        padding: 30px;
    }

    .portal-mask {
        height: 400px;
    }

    .floating-badge {
        right: 20px;
        bottom: -20px;
    }

    .service-card {
        flex-direction: column-reverse;
        /*height: auto;*/
        /*min-height: 80vh;*/
        /*margin: 20px auto;*/
    }

    .s-img-box {
        width: 100% !important;
        height: 300px;
        flex: none;
        clip-path: none !important;
        border-radius: 40px 40px 0 0;
    }

    .s-content {
        padding: 30px;
        width: auto;
    }

    .s-title {
        font-size: 2rem;
    }
}
