﻿
        /* width */
:root {
    --background: 270 50% 5%;
    --foreground: 45 100% 96%;
    --card: 270 45% 10%;
    --card-foreground: 45 100% 96%;
    --primary: 280 70% 50%;
    --primary-foreground: 0 0% 100%;
    --secondary: 270 60% 20%;
    --muted: 270 30% 15%;
    --muted-foreground: 270 20% 65%;
    --accent: 35 95% 55%;
    --accent-foreground: 270 50% 5%;
    --border: 270 40% 25%;

    --gradient-primary: linear-gradient(135deg, hsl(280 70% 50%), hsl(300 60% 40%));
    --gradient-accent: linear-gradient(135deg, hsl(35 95% 55%), hsl(45 100% 60%));
    --gradient-hero: linear-gradient(180deg, hsl(270 50% 3%) 0%, hsl(270 50% 8%) 50%, hsl(280 45% 15%) 100%);
    --shadow-card: 0 20px 40px -10px hsl(270 50% 5% / 0.5);
    --font-sans: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;
}

.bg-light {
    background-color: hsl(var(--card)) !important;
    color: hsl(var(--card-foreground)) !important;
}

.bg-dark {
    background-color: hsl(var(--secondary)) !important;
}

*{}
/* Smooth hover motion for cards/images */
:root {
    --hover-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --hover-shadow: 0 18px 36px -18px hsl(var(--background) / 0.8);
}

/* Scroll reveal (JS-powered) */
.reveal {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
    transition: opacity 800ms var(--hover-ease), transform 800ms var(--hover-ease);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal--lift {
    transform: translateY(22px) scale(0.96);
}

.reveal--zoom {
    transform: translateY(12px) scale(0.94);
}

.reveal--tilt {
    transform: translateY(20px) scale(0.98) rotateX(4deg);
    transform-origin: center bottom;
}

.hover-tilt {
    transition: transform 700ms var(--hover-ease), box-shadow 700ms var(--hover-ease), filter 700ms var(--hover-ease);
    transform-style: preserve-3d;
    will-change: transform;
}
.hover-tilt:hover {
    transform: translateY(-6px) perspective(900px) rotateX(2deg) rotateY(-2deg);
}

.domestic,
.reviews-section .review-card,
.detail-card,
.choose .choose-option,
.partners .swiper-slide,
.partners .swiper-slide img,
.partners .brand-option img,
.footer-content .parthner .p-img img,
.resort-theme .container .row img,
.swiper-slide .bg-img img,
.gallery .domestic,
.brand .brand-option img {
    transition: transform 300ms var(--hover-ease), box-shadow 300ms var(--hover-ease), filter 300ms var(--hover-ease);
    will-change: transform, box-shadow;
}

.domestic:hover,
.reviews-section .review-card:hover,
.detail-card:hover,
.choose .choose-option:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow);
}

.domestic:hover .img-resort {
    transform: scale(1.03);
}

.img-resort {
    transition: transform 900ms var(--hover-ease);
    will-change: transform;
}

/* Slower hover for image-heavy elements */
.partners .swiper-slide,
.partners .swiper-slide img,
.partners .brand-option img,
.footer-content .parthner .p-img img,
.resort-theme .container .row img,
.swiper-slide .bg-img img,
.brand .brand-option img {
    transition-duration: 900ms;
}

.swiper-slide:hover .bg-img img,
.partners .swiper-slide:hover,
.partners .swiper-slide img:hover,
.partners .brand-option img:hover,
.brand .brand-option img:hover,
.footer-content .parthner .p-img img:hover,
.resort-theme .container .row img:hover {
    transform: scale(1.06);
    filter: brightness(1.05);
}

@media (prefers-reduced-motion: reduce) {
    .domestic,
    .reviews-section .review-card,
    .detail-card,
    .choose .choose-option,
    .partners .swiper-slide,
    .partners .swiper-slide img,
    .partners .brand-option img,
    .footer-content .parthner .p-img img,
    .resort-theme .container .row img,
    .swiper-slide .bg-img img,
    .gallery .domestic,
    .brand .brand-option img,
    .img-resort,
    .hover-tilt {
        transition: none !important;
        transform: none !important;
    }
}
::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: hsl(var(--muted));
    border-radius: 5px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: hsl(var(--border));
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--primary));
  }
  
a{
    text-decoration: none;
    color: hsl(var(--foreground));
}
#wap-chat {
    position: fixed;
    bottom: 30px;
    right: 24px;
    color: #fff;
    background: #25D366;
    z-index: 99999999999;
    padding: 0px 10px;
    font-size: 27px;
    border-radius: 52%;
    width: 45px;
    height: 45px;
}

#g-img{
    height: 350px !important;
    overflow: hidden;
}
#g-img div {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 3px solid hsl(var(--foreground) / 0.7);
    border-radius: 15px;
    transition: 0.3s all;
}
#g-img div:hover {
    border: 3px solid hsl(var(--primary));
    box-shadow: 0px 0px 8px 0px hsl(var(--background) / 0.6);
}


.h-title {
    margin-top: -86px;
    background-image: url("/assets/frontend/image/h-title-bg.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    background-position: center;
}
.h-title .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: hsl(var(--primary) / 0.35);
    top: 0;
    left: 0;
}
.h-title h2 {
    font-size: 37px;
    font-weight: 700;
    color: hsl(var(--foreground));
    font-family: var(--font-sans);
    position: relative;
    padding-bottom: 10px;
}
.h-title img {
    filter: invert(1)saturate(0)contrast(100);
}

/* Topbar */
.topbar{color: hsl(var(--foreground));padding: 5px;}
.topbar span a{
    color: hsl(var(--foreground));
    font-size: 14px;
    text-decoration: none;
}
.topbar span a i{
    color:hsl(var(--accent));
    font-size: 14px;
}
/* Navbar */
.header {
	z-index: 99;
	font-size: 16px;
	font-family: inherit;
	font-weight: 600;
	position: sticky;
	height: 85px;
	background: hsl(var(--secondary) / 0.7);
    
}
.navbar-expand-lg .navbar-nav .nav-link {
    color: hsl(var(--foreground)) !important;
    margin: 0px 6px;
    padding: 10px 5px 10px 5px;
    border-bottom: 2px solid rgba(41, 39, 39, 0);
    transition: 0.3s all;
    font-size: 15px;
    line-height: 1.2;
}
.navbar-expand-lg .navbar-nav .nav-link:hover {
    border-bottom: 2px solid hsl(var(--accent));
}

.nav-login-btn {
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground)) !important;
    padding: 8px 16px !important;
    border-radius: 999px;
    border-bottom: 0 !important;
    box-shadow: 0 10px 20px -12px hsl(var(--background) / 0.7);
}

.nav-login-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    transition: transform 300ms var(--hover-ease), filter 300ms var(--hover-ease);
}

/* POPUP */
.popup {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999999;
    background: hsl(var(--background) / 0.75);
    display: block;
    height: 100%;
}
.popup .content {
    margin: 10% auto;
    width: 450px;
    position: relative;
}
.popup .content #popAdsClose {
    position: absolute;
    top: 5px;
    right: 10px;
    color: hsl(var(--muted-foreground));
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    font-weight: 700;
}
.popup .content img{width: 100%;}
.popup .content .button {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}
.popup .content .button a {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: hsl(var(--accent-foreground));
    background: var(--gradient-accent);
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,.63);
    padding: 8px 15px;
    transition: 0.3s all;
}

.popup .content .button a:hover{
    color: hsl(var(--primary-foreground));
    background: hsl(var(--primary));
}

/******home Search Css Start ******/
#img-border {
    width: 200px;
    margin-top: -15px;
}
#home-s{
    margin-top: -86px;
    width: 100%;
    overflow: hidden;
}
.h-video {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    height: 900px;
    overflow: hidden;
}
.home-search{
    color: hsl(var(--foreground));
    position: relative;
}
.home-search .overlay {
    color: hsl(var(--foreground));
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: hsl(var(--background));
    display: none;
}
.home-search .h-s-form {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.hero-sound-toggle {
    position: absolute;
    left: 0;
    bottom: 41px;
    z-index: 2;
    padding: 10px 16px;
    border: 0;
    border-radius: 999px;
    background: var(--gradient-accent);
    color: hsl(var(--accent-foreground));
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 12px 20px -12px hsl(var(--background) / 0.8);
}
.hero-sound-toggle.is-hidden {
    display: none;
}
.home-search h1 {
    color: hsl(var(--foreground));
    font-size: 40px;
    font-family: var(--font-sans);
    font-weight: bold;
    text-transform: uppercase;
}
.home-search p {
    font-size: 16px;
    color: hsl(var(--foreground));
    padding-bottom: 30px;
    margin-bottom: 0px;
}
.home-search .home-search-option{
    width: 70%;
    margin: 0 auto;
    text-align: center;
    padding: 300px 0px 100px 0px;
}
.search-btn {
    font-size: 14px;
    font-weight: 700;
    border: 0;
    padding: 15px;
    border-radius: 0;
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    width: auto;
}


.video-container{
    position: relative;
    width: 100%;
    padding-bottom:56.25%;
    height: 0;
}
.banner-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/******slider Tab Css Start ******/
.slider {
    margin-top: -50px;
    position: relative;
    z-index: 5;
}

.swiper-container.static-slides .swiper-wrapper {
    display: flex;
    gap: 20px;
}

.swiper-container.static-slides .swiper-slide {
    width: calc(25% - 15px);
}

@media (max-width: 991px) {
    .swiper-container.static-slides .swiper-slide {
        width: calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .swiper-container.static-slides .swiper-slide {
        width: 100%;
    }
}
.slider h2 {
    font-size: 37px;
    font-weight: 700;
    color: hsl(var(--primary));
    font-family: var(--font-sans);
}
.slider hr {
    margin: 0px auto 15px auto;
    border: 2px solid hsl(var(--accent));
    width: 60px;
    opacity: 100%;
}

.swiper-pointer-events {
    overflow: hidden !important;
}
.swiper-slide {
    color: hsl(var(--foreground));
    display: flex;
    justify-content: center;
    text-align: center;
    transition: all .3s;
}
.h-i-slide{
    height: 350px;
}
.swiper-slide .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 5px;
}
.swiper-slide .bg-img img {
    height: 100%;
    width: 100%;
    border-radius: 15px;
}
.swiper-slide .bg-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: linear-gradient(180deg, hsl(var(--background) / 0) 30%, hsl(var(--background) / 0.75) 100%);
    opacity: 0;
    transition: opacity 700ms var(--hover-ease);
}
.swiper-slide .right {
    position: absolute;
    top: 5px;
    right: 5px;
    background: hsl(var(--accent));
    padding: 2px 5px;
}
.swiper-slide .text {
    text-align: start;
    position: absolute;
    padding: 15px;
    width: 100%;
    bottom: 20px;
    transform: translateY(18px);
    opacity: 0;
    transition: transform 700ms var(--hover-ease), opacity 700ms var(--hover-ease);
}
.swiper-slide .text h1 {
    margin: 0 0 10px 6px;
    font-size: 20px;
    font-weight: 700;
    color: hsl(var(--accent));
    text-shadow: 0px 0px 1px hsl(var(--background) / 0.7);
}
.swiper-slide .text h3 {
    font-size: 14px;
    font-family: var(--font-sans);
}

/* Featured Experiences interaction */
.featured-experiences-panels {
    display: flex;
    gap: 12px;
    height: 360px;
    align-items: stretch;
}
.featured-experience {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    border-radius: 18px;
    overflow: hidden;
    background: hsl(var(--card));
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-card);
    transition: flex 700ms var(--hover-ease), transform 700ms var(--hover-ease), box-shadow 700ms var(--hover-ease);
}
.featured-experience:focus-visible {
    outline: 2px solid hsl(var(--accent));
    outline-offset: 2px;
}
.featured-experiences-panels:hover .featured-experience {
    flex: 1 1 0;
}
.featured-experiences-panels:hover .featured-experience:hover,
.featured-experiences-panels:hover .featured-experience:focus-visible {
    flex: 4 1 0;
}
.featured-experience-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    filter: grayscale(0.1);
    transition: transform 900ms var(--hover-ease), filter 900ms var(--hover-ease);
}
.featured-experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, hsl(var(--background) / 0.1) 0%, hsl(var(--background) / 0.85) 100%);
    opacity: 0.35;
    transition: opacity 700ms var(--hover-ease);
}
.featured-experience-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 22px;
    color: hsl(var(--foreground));
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.85;
    transform: translateY(10px);
    transition: transform 700ms var(--hover-ease), opacity 700ms var(--hover-ease);
}
.featured-experience-title {
    display: inline-block;
    text-shadow: 0 10px 20px hsl(var(--background) / 0.8);
}
.featured-experience:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 36px -24px hsl(var(--background) / 0.8);
}
.featured-experience:hover .featured-experience-media,
.featured-experience:focus-visible .featured-experience-media {
    transform: scale(1.1);
    filter: grayscale(0);
}
.featured-experience:hover .featured-experience-overlay,
.featured-experience:focus-visible .featured-experience-overlay {
    opacity: 0.8;
}
.featured-experience:hover .featured-experience-content,
.featured-experience:focus-visible .featured-experience-content {
    opacity: 1;
    transform: translateY(0);
}
.featured-more {
    margin-top: 22px;
    position: relative;
    z-index: 3;
}
.featured-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 999px;
    background: var(--gradient-accent);
    color: hsl(var(--accent-foreground));
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-card);
    position: relative;
    z-index: 4;
    pointer-events: auto;
    transition: transform 300ms var(--hover-ease), box-shadow 300ms var(--hover-ease), filter 300ms var(--hover-ease);
}
.featured-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 30px -18px hsl(var(--background) / 0.8);
    filter: brightness(1.05);
}

@media (max-width: 991px) {
    .featured-experiences-panels {
        height: 280px;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
    }
    .featured-experience {
        flex: 0 0 75%;
        scroll-snap-align: center;
    }
    .featured-experiences-panels:hover .featured-experience {
        flex: 0 0 75%;
    }
    .featured-experience:hover {
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .featured-experience {
        flex-basis: 90%;
    }
}
/* Slider Css Code End */

.featured-hero {
    background: var(--gradient-hero);
    border-bottom: 1px solid hsl(var(--border));
}
.featured-hero h1 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 38px;
    font-weight: 700;
}
.featured-hero p {
    color: hsl(var(--muted-foreground));
}
.featured-grid-section {
    background: hsl(var(--background));
}
.featured-card {
    position: relative;
    display: block;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: hsl(var(--card));
    box-shadow: var(--shadow-card);
    transition: transform 700ms var(--hover-ease), box-shadow 700ms var(--hover-ease);
}
.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 40px -20px hsl(var(--background) / 0.8);
}
.featured-card-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform 900ms var(--hover-ease);
}
.featured-card:hover .featured-card-media {
    transform: scale(1.08);
}
.featured-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, hsl(var(--background) / 0) 20%, hsl(var(--background) / 0.85) 100%);
    opacity: 0.6;
    transition: opacity 700ms var(--hover-ease);
}
.featured-card:hover .featured-card-overlay {
    opacity: 0.9;
}
.featured-card-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 600;
    color: hsl(var(--foreground));
}
.featured-card-title {
    display: inline-block;
    text-shadow: 0 12px 22px hsl(var(--background) / 0.85);
}

@media (max-width: 991px) {
    .featured-card {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .featured-hero h1 {
        font-size: 28px;
    }
    .featured-card {
        height: 240px;
    }
}

.resort-theme {
    background-image: url("/assets/frontend/image/res-bg.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    margin-top: -70px;
    z-index: 1;
}
.resort-theme .overlay {
    background-color: hsl(var(--background) / 0.75);
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.resort-theme .container {
    position: relative;
    z-index: 1;
}
.resort-theme .container h2 {
    font-size: 36px;
    font-weight: 700;
    color: hsl(var(--foreground));
    font-family: var(--font-sans);
    font-weight: 700;
}
.resort-theme .container hr {
    margin: 0px auto 15px auto;
    border: 2px solid hsl(var(--accent));
    width: 60px;
    opacity: 100%;
}
.resort-theme .container .row {
    padding: 4rem 3rem 4rem 3rem;
    text-align: center;
    justify-content: center;
}
.resort-theme .container .row img {
    width: 60px;
    filter: invert(1);
}
.resort-theme .container .row p {
    font-size: 14px;
    font-weight: 500;
    color: hsl(var(--foreground));
}





.domestic-section {
    padding: 35px 0px;
}
.domestic-section .row {
    row-gap: 30px;
    column-gap: 30px;
    justify-content: center;
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}
.domestic-section h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: hsl(var(--primary));
    font-family: var(--font-sans);
}
.domestic-section hr {
    width: 100px;
    background: hsl(var(--accent));
    color: hsl(var(--accent));
    margin: 0 auto;
    opacity: 100%;
    height: 3px;
    margin-bottom: 10px;
}
.domestic {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    background: hsl(var(--card));
    color: hsl(var(--card-foreground));
    border: 1px solid hsl(var(--border) / 0.4);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all .3s;
    position: relative;
}
.domestic:hover {
    box-shadow: 0px 0px 30px -8px hsl(var(--background) / 0.7);
    z-index: 9;
}
.img-resort {
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}
#title-resort {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 18px;
    color: hsl(var(--foreground));
    font-family: var(--font-sans);
    font-weight: 600;
    text-align: center;
    margin: 0;
    padding: 10px 12px;
    background: linear-gradient(180deg, transparent 0%, hsl(var(--background) / 0.75) 100%);
    letter-spacing: 0.3px;
}

/* Signature stays grid layout */
.signature-stays .domestic-section .row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-left: 0;
    margin-right: 0;
}
.signature-stays .domestic-section .row > [class*="col-"] {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.signature-stays .domestic {
    width: 100%;
    margin: 0;
}
.signature-stays .img-resort {
    height: auto;
    aspect-ratio: 4 / 3;
}

/* Signature moments grid layout */
.signature-moments .domestic-section .row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-left: 0;
    margin-right: 0;
}
.signature-moments .domestic-section .row > [class*="col-"] {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.signature-moments .domestic {
    width: 100%;
    margin: 0;
}
.signature-moments .img-resort {
    height: auto;
    aspect-ratio: 4 / 3;
}

/* Gallery page grid layout */
.gallery-page .row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-left: 0;
    margin-right: 0;
}
.gallery-page .row > [class*="col-"] {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0 !important;
}
.gallery-page .domestic {
    width: 100%;
    margin: 0;
}
.gallery-page .img-resort {
    height: auto;
    aspect-ratio: 4 / 3;
}

.gallery-cta {
    margin-top: 5px;
}

@media (max-width: 991px) {
    .gallery-page .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .gallery-page .row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .signature-moments .domestic-section .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .signature-moments .domestic-section .row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .signature-stays .domestic-section .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .signature-stays .domestic-section .row {
        grid-template-columns: 1fr;
    }
}

.resortBg{
    background: radial-gradient(circle at center, hsl(var(--primary) / 0.25) 0%, hsl(var(--accent) / 0.25) 70%, hsl(var(--background)) 100%);
}
.resorts-slider{
   
}
.resorts-slide h1 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: hsl(var(--foreground));
    font-family: var(--font-sans);
}
.resorts-slide hr {
    width: 100px;
    background: hsl(var(--accent));
    color: hsl(var(--accent));
    margin: 0 auto;
    opacity: 100%;
    height: 3px;
    margin-bottom: 10px;
}
.slider-content .swiper-slide{
    
}




/* Choose Section Style */
.why-bg{
    background: hsl(var(--secondary) / 0.4);
}
.choose {
    padding: 50px 10px;
    text-align: center;
}
.choose h2 {
    font-size: 32px;
    font-weight: 700;
    color: hsl(var(--primary));
    font-family: var(--font-sans);
}
.choose hr {
    margin: 0px auto 15px auto;
    border: 2px solid hsl(var(--accent));
    width: 60px;
    opacity: 100%;
}
.choose .choose-option {
    padding: 30px 10px;
    text-align: center;
}
.choose .choose-option img {
    width: 80px;
}
.choose .choose-option h3 {
    font-size: 16px;
    padding: 10px;
}
.why-split {
    text-align: left;
    gap: 24px 0;
    align-items: stretch;
}
.why-list {
    display: grid;
    gap: 16px;
    height: 100%;
}
.why-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-radius: 16px;
}
.why-text h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}
.why-text p {
    margin: 6px 0 0;
    text-align: justify;
    font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.6;
}
.why-image {
    position: relative;
    padding: 6px;
    height: 100%;
}
.why-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f5f5;
    min-height: 520px;
}

@media (max-width: 991px) {
    .why-image {
        margin-bottom: 18px;
    }
    .why-image img {
        height: 280px;
    }
}


.reviewResortBg {
    background-image: url("/assets/frontend/image/why-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: bottom;
}

.detail-gallery {
    margin-top: 24px;
}

.detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.detail-gallery-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

.detail-gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .detail-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .detail-gallery-grid {
        grid-template-columns: 1fr;
    }
}
.reviewResort {
    position: relative;
    padding: 50px 10px 150px 10px !important;
    text-align: center;
}
.reviewResortBg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.reviewResort h2 {
    font-size: 32px;
    font-weight: 700;
    color: hsl(var(--primary));
    font-family: var(--font-sans);
}
.reviewResort h1 {
    font-size: 63px;
    color: hsl(var(--accent));
    font-family: var(--font-sans);
    font-weight: 900;
}
.reviewResort hr {
    margin: 0px auto 15px auto;
    border: 2px solid hsl(var(--accent));
    width: 80px;
    opacity: 100%;
}
.reviewResort .rsort-btn {
    font-size: 14px;
    font-weight: 500;
    border: 0;
    padding: 7px 15px;
    border-radius: 25px;
    background: var(--gradient-accent);
    color: hsl(var(--accent-foreground));
}


.partners {
    padding: 50px 10px;
    text-align: center;
}
.partners h2 {
    font-size: 32px;
    font-weight: 700;
    color: hsl(var(--primary));
    font-family: var(--font-sans);
}
.partners hr {
    margin: 0px auto 15px auto;
    border: 2px solid hsl(var(--accent));
    width: 60px;
    opacity: 100%;
}
.partners .brand-option {
    padding: 30px 10px;
    text-align: center;
}
.partners .brand-option img {
    width: 155px;
}
.partners .partners-slider .swiper-slide {
    width: 155px;
    height: auto;
    object-fit: contain;
}
.partners .partners-slider .swiper-wrapper {
    transition-timing-function: linear;
}


.reviews-section {
    padding: 10px 0 25px;
}
.reviews-section .swiper {
    width: 100%;
    padding-bottom: 40px;
    overflow: visible;
}
.reviews-section .swiper-slide {
    width: 360px;
    height: auto;
    display: flex;
    justify-content: center;
    transition: transform 0.6s ease;
}
.review-card {
    background: hsl(var(--card));
    color: hsl(var(--card-foreground));
    padding: 36px 26px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid hsl(var(--border) / 0.4);
    box-shadow: var(--shadow-card);
    min-height: 560px;
    max-width: 360px;
    width: 360px;
}
.review-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 16px -12px hsl(var(--background) / 0.6);
}
.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-name {
    font-size: 20px;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 10px;
}
.review-quote {
    font-size: 14px;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    margin: 0;
}
.featured-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(5, 3, 12, 0.86);
    z-index: 2000;
}
.featured-lightbox.is-open {
    display: flex;
}
.featured-lightbox img {
    max-width: min(92vw, 980px);
    max-height: 86vh;
    border-radius: 14px;
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
    background: #000;
}
.featured-lightbox.is-open img {
    animation: featuredLightboxPop 180ms ease-out;
}
body.featured-lightbox-open {
    overflow: hidden;
}
/* Review card pop-up */
.review-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(5, 3, 12, 0.86);
    z-index: 2000;
}
.review-lightbox.is-open {
    display: flex;
}
.review-lightbox-content {
    max-width: min(92vw, 560px);
    max-height: 86vh;
    overflow: auto;
}
.review-lightbox .review-card {
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
}
@keyframes featuredLightboxPop {
    from {
        transform: scale(0.96);
        opacity: 0.2;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.reviews-section .swiper-pagination {
    bottom: 6px !important;
}
.reviews-section .swiper-pagination-bullet {
    background: hsl(var(--accent));
    opacity: 0.4;
}
.reviews-section .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 991px) {
    .reviews-section .swiper-slide {
        width: 320px;
    }
    .review-card {
        max-width: 320px;
        width: 320px;
        min-height: 500px;
    }
}

@media (max-width: 576px) {
    .reviews-section .swiper-slide {
        width: 280px;
    }
    .review-card {
        max-width: 280px;
        width: 280px;
        min-height: 460px;
    }
}











/* Brand Section Style */
.brand {
    padding: 50px 10px;
}
.brand h2 {
    font-size: 32px;
    font-weight: 700;
    color: hsl(var(--primary));
    text-align: center;
}
.brand p {
    font-size: 14px;
    color: hsl(var(--muted-foreground));
    margin: 0 auto;
    text-align: center;
    width: 40%;
}
.brand .brand-option {
    padding: 30px 10px;
    text-align: center;
}
.brand .brand-option img {
    width: 70%;
}
.brand .brand-option h3 {
    font-size: 16px;
    padding: 10px;
}
.brand hr {
    width: 50px;
    background: hsl(var(--accent));
    color: hsl(var(--accent));
    margin: 0 auto;
    opacity: 100%;
    height: 3px;
    margin-bottom: 10px;
}


.contact h3 {
    border-bottom: 6px solid hsl(var(--accent));
    width: max-content;
}
.contact p,
.contact a {
    color: hsl(var(--foreground)) !important;
}
.banner-auto {
    width: 1288px;
    height: 500px;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.customer-care-banner {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    object-fit: contain;
}



/* Footer Section Style */
#footer {
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    padding: 30px 0px 0px 0px;
}
.footer{}
.footer-content{
    position: relative;
    background-image: url("/assets/frontend/image/c-9.jpg");
    background-size: cover;
}
.footer-content .overlay {
    background-color: hsl(var(--background) / 0.7);
    position: absolute;
    width: 100%;
    height: 100%;
}
.footer-content .container {
    position: relative;
    color: hsl(var(--foreground));
    padding: 50px 15px;
}
.footer-content .container .col-md-3{
    padding: 10px 15px;
}
.footer-content .container h3 {
    font-size: 22px;
    margin-bottom: 20px;
}
.footer-content .container img{
    width: 50%;
}
.footer-content .container a{
    text-decoration: none;
    color: hsl(var(--foreground));
}
.footer-content .container a{}
.footer-content .container ul {
    padding: 0;
}
.footer-content .container ul li {
    list-style: none;
    transition: 0.3s all;
    padding: 5px 5px;
}
.footer-content .container ul li:hover {
    margin-left: 5px;
}
.footer-content .container ul li a{}
.footer-content .container .gov h2 {
    border: 0;
    padding: 0px;
    font-size: 18px;
}
.footer-content .container .gov p {
    font-size: 14px;
    font-weight: 500;
}
.footer-content .social {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}
.footer-content .social a {
    margin: 5px;
    font-size: 16px;
    padding: 5px 10px;
    color: hsl(var(--foreground));
    transition: all .3s;
    border-radius: 3px;
}
.footer-content .social a:hover {
    background: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    scale: 1.1;
}
.footer-content .parthner{}
.footer-content .parthner h2 {
    padding: 15px 0px 3px 0px;
    font-size: 20px;
    border-bottom: 1px solid hsl(var(--border));
    text-align: center;
}
.footer-content .parthner .p-img {
    display: flex;
    justify-content: center;
    padding: 10px 0px;
}
.footer-content .parthner .p-img img {
    width: 50px;
    margin: 5px;
}

.copyright {
    text-align: center;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
}
.copyright p{
    padding: 15px;
    font-size: 14px;
    margin: 0;
    color: hsl(var(--foreground));
}
.copyright a {
    font-weight: 500;
    color: hsl(var(--foreground));
}











.resorts-section h1 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: hsl(var(--foreground));
}
.resorts-section hr {
    width: 100px;
    background: hsl(var(--accent));
    color: hsl(var(--accent));
    margin: 0 auto;
    opacity: 100%;
    height: 3px;
    margin-bottom: 10px;
}

.detail-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 140px 0 90px;
    margin-top: -86px;
}
.detail-overlay {
    position: absolute;
    inset: 0;
    background: hsl(var(--background) / 0.6);
}
.detail-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.detail-hero-content h1 {
    font-size: 38px;
    font-weight: 700;
    color: hsl(var(--foreground));
}
.detail-location {
    margin-top: 10px;
    font-weight: 600;
    color: hsl(var(--accent));
}
.detail-summary {
    margin: 12px auto 0;
    max-width: 720px;
    color: hsl(var(--foreground));
}
.detail-body {
    padding: 50px 0 70px;
}
.detail-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border) / 0.4);
    border-radius: 18px;
    padding: 30px;
    box-shadow: var(--shadow-card);
}
.detail-card h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: hsl(var(--foreground));
}







/* Login Page Style */
.ftco-section {
    padding: 5em 0;
}
.login-wrap {
    position: relative;
    background: hsl(var(--card));
    border-radius: 10px;
    color: hsl(var(--card-foreground));
    border: 1px solid hsl(var(--border) / 0.3);
    /* -webkit-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24); */
}
.login-wrap .icon {
    width: 80px;
    height: 80px;
    background: hsl(var(--primary));
    border-radius: 50%;
    font-size: 27px;
    margin: 0 auto;
    margin-bottom: 10px;
    color: hsl(var(--primary-foreground));
}
.login-wrap h3 {
    font-weight: 500;
}
.login-wrap .form-group {
    margin-bottom: 1rem;
}
.login-wrap .form-control {
    height: 52px;
    font-size: 14px;
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid hsl(var(--border) / 0.5);
    background: hsl(var(--muted));
    color: hsl(var(--card-foreground));
}




/* Membership Page */
.member {
    text-align: center;
}
.member h1 {
    font-size: 32px;
    color: hsl(var(--foreground));
    font-family: var(--font-sans);
    font-weight: 700;
    text-shadow: 6px 4px 13px hsl(var(--accent) / 0.45);
}
.member .member-user {}
.member .member-user .user-image {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    border: 5px solid hsl(var(--border));
}
.member .member-user .user-image img{
    width: 100%;
    height: 100%;
}
.member .member-user .user-data {
    border-left: 5px solid hsl(var(--border));
}
.member .member-user .user-data .table {
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}
.member .member-user .user-data .table tr {
    border-style: solid;
    border-color: hsl(var(--border) / 0.7);
    border-width: 3px 0px;
}
.member .member-user .user-data .table tr td {
    padding: 18px;
    color: hsl(var(--foreground));
    text-shadow: 1px 3px 15px hsl(var(--background) / 0.6);
}



.package {}
.package .package-table {}
.package .package-table tr{}
.package .package-table tr td {
    border: 1px solid hsl(var(--border));
    padding: 25px 15px;
    font-size: 16px;
    font-weight: 500;
}












/* Responsive Css code */

  @media (min-width: 1601px) {
    .h-video {
        width: 2500px;
        height: 1408px;
    }
    #home-s {
        height: 800px;
    }
    
    
  }
  
  @media (min-width: 1281px) {
  
    
    
  }
  
  @media (min-width: 1025px) and (max-width: 1280px) {
    
    .h-video {
        width: 1280px !important;
        height: 720px;
    }
    .home-search h1 {
        font-size: 22px;
    }
    
  }
  
  /* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) {
    
    .h-video {
        width: 1300px !important;
        height: 730px;
    }
    .home-search h1 {
        font-size: 22px;
    }
    .reviews-section  .swiper-slide {
        width: 56%;
    }
    .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        background: hsl(var(--background) / 0.8);
        padding: 10px;
    }
    
  }
  
  /* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    
    .h-video {
        width: 1115px !important;
        height: 629px;
    }
    .home-search h1 {
        font-size: 22px;
    }
    .reviews-section  .swiper-slide {
        width: 33%;
    }
    
  }
  
  /* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */
  
  @media (min-width: 481px) and (max-width: 767px) {
    
    .h-video {
        width: 900px !important;
        height: 500px;
        left: -127px;
    }
    .home-search h1 {
        font-size: 22px;
    }
    .home-search .home-search-option {
        padding: 150px 0px 100px 0px;
    }
    .choose p {
        width: 80%;
    }
    .reviews-section  .swiper-slide {
        width: 77%;
    }
    .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        background: hsl(var(--background) / 0.8);
        padding: 10px;
    }
    .popup .content {
        margin: 10% auto;
        width: 350px;
    }
  }
  
  /* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */
  
  @media (min-width: 320px) and (max-width: 480px) {
    
    .h-video {
        width: 1065px;
        height: 600px;
    }
    .popup .content {
        margin: 10% auto;
        width: 250px;
    }
    .home-search h1 {
        font-size: 18px;
    }
    .home-search .home-search-option {
        padding: 160px 0px 100px 0px;
    }
    .tab-margin{
        padding: 50px;
    } 
    tab {
        padding: 25px;
    }
    .tab .tablinks {
        border-bottom: 1px solid #ddd;
    }
    .choose p {
        width: 100%;
    }
    .f-border-l{
        border-left: 0;
    }
    .reviews-section  .swiper-slide {
        width: 77%;
    }
    .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        background: hsl(var(--background) / 0.8);
        padding: 10px;
    }
  }
