/* TITLE */
.hero-title{
    transform:translateX(120px);
}

.hero-title.show{
    animation:slideInRight 1s ease forwards;
}

/* SUB */
.hero-sub.show{
    animation:fadeUp 1s ease forwards;
    animation-delay:0.2s;
}

/* BUTTON */
.hero-buttons{
    transform:translateY(60px);
}

.hero-buttons.show{
    animation:slideUp 1s ease forwards;
    animation-delay:0.4s;
}

/* EXPLORER WALK */
.explorer{
    position:absolute;
    bottom:20px;
    left:-220px;
    width:180px;

    z-index:3;

    pointer-events:none;

        animation:walkAcross 4.5s cubic-bezier(0.65,0,0.35,1) forwards;

}

@keyframes walkAcross{
    0%{
        left:-220px;
    }
    100%{
        left:110%;
    }
}
.hero-title,
.hero-sub,
.hero-buttons{
    opacity:0;
}
.hero-title{
    transform:translateX(120px);
}

.hero-title.show{
    animation:slideInRight 1s ease forwards;
}

@keyframes slideInRight{
    to{
        opacity:1;
        transform:translateX(0);
    }
}
.hero-sub.show{
    animation:fadeUp 1s ease forwards;
    animation-delay:0.2s;
}
.hero-buttons{
    transform:translateY(60px);
}

.hero-buttons.show{
    animation:slideUp 1s ease forwards;
    animation-delay:0.4s;
}

@keyframes slideUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.hero{
    height:100vh;
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;
}

/* VIDEO */
.hero-video{
    position:absolute;
    top:-10%; /* ╨Б╨п╨б╨Ш ╤А╨╢╨Щ╤А╨╢╨║╤А╨╢тЦС╤А╨╖╨Ч╤А╨╢тЦС ╤А╨╢╨Х╤А╨╢╨Т╤А╨╢тХв ╤А╨╢╨е╤А╨╢тХЫ╤А╨╢╨п╤А╨╢╨╝╤А╨╖╨Ч */
    left:0;
    width:100%;
    height:120%; /* ╨Б╨п╨б╨Ш zoom effect */

    object-fit:cover;
    object-position:center;

    z-index:-2;
}
@media(max-width:768px){

    .hero-video{
        top:-5%;
        height:110%;
        object-position:center;
    }

}
/* DARK OVERLAY */
.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    
    z-index:-1;

    background:linear-gradient(
        to bottom,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.8)
    );

}

/* TITLE */
.hero h1{
    position:relative;
    z-index:2;

    font-size:110px;
    font-weight:900;
    letter-spacing:10px;

    background:linear-gradient(90deg,#fff,#cbd5f5,#fff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    text-shadow:0 20px 60px rgba(0,0,0,0.6);

    animation:heroText 6s ease-in-out infinite alternate;
}

/* FLOATING EFFECT */
@keyframes heroText{
    0%{
        transform:translateY(0px) scale(1);
    }
    100%{
        transform:translateY(-15px) scale(1.02);
    }
}
.hero{
    perspective:1000px;
}
@media(max-width:768px){

    .hero{
        height:75vh; /* full screen ╤А╨╢╨╕╤А╨╢тХЫ, clean look */
    }

}
.hero-title{
    transform:translateX(120px) rotateY(15deg);
}
/* SUBTEXT */
.hero p{
    margin-top:20px;
    font-size:20px;
    color:#e2e8f0;

    opacity:0;
    transform:translateY(40px);
    animation:fadeUp 1.2s ease forwards;
    animation-delay:0.3s;
}
.logo{
    position:relative;
    z-index:2;

    opacity:0;
    transform:translateY(-60px);
}

.logo.show{
    animation:slideDown 1s ease forwards;
}
.hero-sub{
    transform:translateX(-120px);
}

.hero-sub.show{
    animation:slideInLeft 1s ease forwards;
}

@keyframes slideInLeft{
    to{
        opacity:1;
        transform:translateX(0);
    }
}
.hero-buttons{
    transform:translateY(80px);
}

.hero-buttons.show{
    animation:slideUp 1s ease forwards;
}

@keyframes slideUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@keyframes slideDown{
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* BUTTON ANIMATION */
.buttons{
    margin-top:60px;
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    justify-content:center;
    z-index:2;
}

/* BUTTON */
.btn{
    position:relative;
    display:flex;
    align-items:center;
    gap:10px;

    padding:16px 36px;
    border-radius:60px;

    font-size:15px;
    font-weight:500;
    letter-spacing:0.5px;

    color:#fff;
    text-decoration:none;

    /* Glass look */
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,0.2);

    /* Depth */
    box-shadow:
        0 10px 30px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.15);

    overflow:hidden;
    transition:all 0.4s ease;
}
.btn{
    animation:softGlow 3s ease-in-out infinite;
}

@keyframes softGlow{
    0%,100%{
        box-shadow:
        0 10px 30px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.1);
    }
    50%{
        box-shadow:
        0 15px 40px rgba(0,0,0,0.5),
        0 0 15px rgba(255,255,255,0.2);
    }
}
/* Hover = premium glow */
.btn:hover{
    transform:translateY(-6px) scale(1.05);

    background:rgba(255,255,255,0.95);
    color:#000;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.5),
        0 0 25px rgba(255,255,255,0.4);
}
/* ICON SIZE */
.btn span{
    font-size:18px;
    transition:transform 0.3s ease;
}

.btn:hover span{
    transform:translateX(4px) rotate(8deg);
}
.btn::after{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:120%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );

    transform:skewX(-20deg);
    transition:0.6s;
}

.btn:hover::after{
    left:120%;
}
/* GLOW EFFECT */
.btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
    transition:0.5s;
   
}
.btn::before{
    display:none !important;
}
.btn:hover::before{
    left:100%;
}


/* ANIMATION */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* MOBILE */
@media(max-width:768px){
    .hero h1{
        font-size:42px;
        letter-spacing:3px;
    }

   
}
/* Resort */
.special{
    padding:80px 5%;
    background:#f8fafc;
}

/* CENTER ALIGN */
.section-head.center{
    text-align:center;
    margin-bottom:50px;
}

/* TITLE */
.premium-title{
    font-size:36px;
    font-weight:700;

    background:linear-gradient(90deg,#0f172a,#2563eb,#0f172a);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    letter-spacing:1px;

    position:relative;
    display:inline-block;
}

/* GLOW LINE UNDER */
.premium-title::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-12px;
    transform:translateX(-50%);

    width:80px;
    height:4px;

    border-radius:10px;

    background:linear-gradient(90deg,#00c6ff,#0072ff);

    box-shadow:0 0 15px rgba(0,200,255,0.7);
}

/* SUBTEXT */
.premium-sub{
    margin-top:18px;
    color:#64748b;
    font-size:15px;
}

/* OPTIONAL ANIMATION */
.premium-title{
    animation:fadeUp 0.8s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.view-all{
    text-decoration:none;
    color:#000;
    font-size:14px;
}

/* GRID */
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

/* CARD */
.card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);

    transform:translateY(50px);
    opacity:0;
    transition:0.6s ease;
}

/* IMAGE */
.card-img{
    position:relative;
    height:200px;
    overflow:hidden;
}

.card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.card:hover img{
    transform:scale(1.1);
}

/* TOP OVERLAY */
.overlay-info{
    position:absolute;
    top:10px;
    right:10px;
    background:rgba(0,0,0,0.6);
    color:#fff;
    padding:5px 10px;
    border-radius:20px;
    font-size:12px;
}

/* BODY */
.card-body{
    padding:20px;
}

.card-body h3{
    font-size:18px;
    margin-bottom:8px;
}

.card-body p{
    font-size:14px;
    color:#666;
}

/* FOOTER */
.card-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:15px;
}

.price{
    font-weight:700;
    color:#111;
}

/* BUTTON */
.book-btn{
    padding:8px 18px;
    border-radius:30px;
    background:#111;
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.book-btn:hover{
    background:#333;
}
/* SECTION */
.special{
    padding:100px 5%;
    background:linear-gradient(to bottom,#f8fafc,#eef2f7);
}

/* GRID */
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

/* CARD */
.card{
    border-radius:22px;
    overflow:hidden;
    background:#fff;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.08),
        0 5px 15px rgba(0,0,0,0.05);

    transform:translateY(60px);
    opacity:0;
    transition:all 0.6s ease;
}

/* IMAGE */
.card-img{
    position:relative;
    height:260px;
    overflow:hidden;
}

/* IMAGE ZOOM */
.card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.6s ease;
}

/* DARK GRADIENT OVERLAY */
.card-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.2),
        transparent
    );
}

/* TOP INFO */
.card-top{
    position:absolute;
    top:15px;
    right:15px;
}

.rating{
    background:rgba(255,255,255,0.2);
    backdrop-filter:blur(10px);
    padding:6px 12px;
    border-radius:20px;
    color:#fff;
    font-size:13px;
}

/* BOTTOM TEXT */
.card-bottom{
    position:absolute;
    bottom:15px;
    left:15px;
    color:#fff;
}

.card-bottom h3{
    font-size:18px;
    margin-bottom:5px;
}

.card-bottom p{
    font-size:13px;
    opacity:0.85;
}

/* FOOTER */
.card-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px;
}

/* PRICE */
.price{
    font-weight:700;
    font-size:18px;
}

/* BUTTON */
.book-btn{
    position:relative;
    padding:10px 22px;
    border-radius:40px;
    background:#111;
    color:#fff;
    text-decoration:none;
    font-size:14px;

    transition:all 0.3s ease;
}

.book-btn:hover{
    background:#000;
    transform:translateY(-3px);
}

/* HOVER EFFECT */
.card:hover img{
    transform:scale(1.1);
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.15);
}
/* SWIPER */
.mySwiper{
    padding-bottom:50px;
}

/* CARD */
.tour-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    transition:0.4s;
}

.tour-card:hover{
    transform:translateY(-8px);
}

/* IMAGE */
.tour-img{
    height:200px;
    overflow:hidden;
}

.tour-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.tour-card:hover img{
    transform:scale(1.1);
}

/* CONTENT */
.tour-content{
    padding:15px;
}

.tour-content h3{
    font-size:16px;
    margin-bottom:8px;
}

.tour-content p{
    font-size:13px;
    color:#666;
}

/* FOOTER */
.tour-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:10px;
}

.price{
    font-weight:700;
    color:#000;
}

/* BUTTON */
.book-btn{
    background:#5b3d00;
    color:#fff;
    padding:8px 18px;
    border-radius:20px;
    text-decoration:none;
    font-size:13px;
}
/* SWIPER NAV BUTTON */
.swiper-button-next,
.swiper-button-prev{
    width:50px;
    height:50px;

    border-radius:50%;
    backdrop-filter:blur(12px);

    background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.3);

    box-shadow:0 10px 25px rgba(0,0,0,0.3);

    transition:all 0.3s ease;
}

/* REMOVE DEFAULT ICON */
.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:18px;
    color:#fff;
}

/* HOVER EFFECT */
.swiper-button-next:hover,
.swiper-button-prev:hover{
    background:#fff;
    color:#000;
    transform:scale(1.1);
}

/* ICON COLOR FIX */
.swiper-button-next:hover::after,
.swiper-button-prev:hover::after{
    color:#000;
}
/* PAGINATION */
.swiper-pagination-bullet{
    background:#000;
    opacity:0.3;
}

.swiper-pagination-bullet-active{
    opacity:1;
}
.swiper-button-next,
.swiper-button-prev{
    position:absolute;
    top:40%;
}

.swiper-button-next{
    right:-20px;
}

.swiper-button-prev{
    left:-20px;
}
@media(max-width:768px){

    .swiper-button-next,
    .swiper-button-prev{
        width:40px;
        height:40px;
    }

    .swiper-button-next{
        right:0;
    }

    .swiper-button-prev{
        left:0;
    }
}
.swiper-slide-active .tour-card{
    transform:scale(1.05);
    box-shadow:0 20px 50px rgba(0,0,0,0.2);
}
/* ABOUT */
.about-premium{
    padding:120px 5%;
    background:linear-gradient(to bottom,#f8fafc,#eef2f7);
    overflow:hidden;
}

/* GRID */
.about-container{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    align-items:center;
    gap:40px;
}

/* LEFT */
.about-left h2{
    font-size:38px;
    line-height:1.3;
    margin:15px 0;
}

.about-left p{
    color:#555;
    margin-bottom:20px;
}

.tag{
    font-size:12px;
    color:#888;
}

/* STATS */
.stats{
    display:flex;
    gap:30px;
}

.stat h3{
    font-size:22px;
    font-weight:700;
}

/* CENTER IMAGE */
.image-wrapper{
    position:relative;
    border-radius:50%;
    overflow:hidden;
    width:280px;
    height:280px;
    margin:auto;

    box-shadow:0 20px 60px rgba(0,0,0,0.2);
}

.image-wrapper img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

/* FLOATING BADGE */
.badge{
    position:absolute;
    bottom:15px;
    left:-25px;

    background:#0f172a;
    color:#fff;
    padding:12px 20px;

    border-radius:30px;
    font-size:14px;

    box-shadow:0 15px 30px rgba(0,0,0,0.3);
}

/* RIGHT */
.about-right h3{
    font-size:20px;
    margin-bottom:10px;
}

.about-right p{
    color:#666;
    margin-bottom:15px;
}

/* FEATURES */
.features{
    list-style:none;
    padding:0;
}

.features li{
    margin-bottom:10px;
}

/* HOVER EFFECT */
.image-wrapper:hover img{
    transform:scale(1.1);
}
/* LEFT */
.reveal-left{
    opacity:0;
    transform:translateX(-80px);
    transition:0.8s ease;
}
.reveal-left.active{
    opacity:1;
    transform:translateX(0);
}

/* RIGHT */
.reveal-right{
    opacity:0;
    transform:translateX(80px);
    transition:0.8s ease;
}
.reveal-right.active{
    opacity:1;
    transform:translateX(0);
}

/* CENTER */
.reveal-zoom{
    opacity:0;
    transform:scale(0.8);
    transition:0.8s ease;
}
.reveal-zoom.active{
    opacity:1;
    transform:scale(1);
}
.avatar-group{
    display:flex;
    align-items:center;
    margin:20px 0;
}

.avatar-group img{
    width:40px;
    height:40px;
    border-radius:50%;
    border:3px solid #fff;
    margin-left:-10px;
    object-fit:cover;
}

.avatar-group img:first-child{
    margin-left:0;
}

/* BLUE BADGE */
.avatar-badge{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#1e3a8a;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:12px;
    margin-left:-10px;
}
.experience-card{
    display:flex;
    align-items:center;
    gap:12px;

    background:#fff;
    padding:12px 18px;
    border-radius:14px;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    margin:15px 0;
}

.experience-card img{
    width:35px;
}
@media(max-width:768px){

    .avatar-group{
        justify-content:center;
    }

    .experience-card{
        justify-content:center;
        text-align:left;
    }

    .badge{
        left:50%;
        transform:translateX(-50%);
        bottom:-10px;
    }

    .stats{
        flex-direction:column;
        gap:15px;
    }
}

/* SECTION */
.boats-section{
    padding:100px 5%;
    background:#f9fafb;
}

/* LIST */
.boat-list{
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* CARD */
.boat-card{
    display:flex;
    gap:20px;
    align-items:center;

    background:#fff;
    border-radius:18px;
    padding:15px;

    text-decoration:none;
    color:#000;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:all 0.4s ease;
}

/* IMAGE */
.boat-img{
    width:120px;
    height:100px;
    border-radius:12px;
    overflow:hidden;
}

.boat-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

/* CONTENT */
.boat-content{
    flex:1;
}

/* TOP */
.boat-content .top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.boat-content h3{
    font-size:16px;
}

.rating{
    font-size:13px;
    color:#f59e0b;
}

/* LOCATION */
.location{
    font-size:13px;
    color:#666;
}

/* AMENITIES */
.amenities{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin:8px 0;
}

.amenities span{
    font-size:12px;
    background:#f1f5f9;
    padding:4px 10px;
    border-radius:20px;
}

/* PRICE */
.price{
    font-weight:700;
    color:#2563eb;
}

/* HOVER EFFECT */
.boat-card:hover{
    transform:translateY(-5px) scale(1.01);
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.boat-card:hover img{
    transform:scale(1.1);
}
.boat-card{
    animation:floatCard 6s ease-in-out infinite;
}

@keyframes floatCard{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-5px); }
}
@media(max-width:768px){

    .boat-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .boat-img{
        width:100%;
        height:180px;
    }

}
/* CARD */
.boat-card{
    display:flex;
    gap:20px;
    align-items:center;

    background:rgba(255,255,255,0.8);
    backdrop-filter:blur(12px);

    border-radius:20px;
    padding:16px;

    text-decoration:none;
    color:#000;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.4);

    transition:all 0.5s cubic-bezier(0.22,1,0.36,1);
    position:relative;
    overflow:hidden;
}

/* GLOW BORDER */
.boat-card::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:20px;
    background:linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    opacity:0;
    transition:0.5s;
}

.boat-card:hover::before{
    opacity:1;
}

/* IMAGE */
.boat-img{
    width:130px;
    height:110px;
    border-radius:14px;
    overflow:hidden;
    position:relative;
}

.boat-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s ease;
}

/* IMAGE OVERLAY */
.img-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

/* CONTENT */
.boat-content{
    flex:1;
}

/* TOP */
.top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.boat-content h3{
    font-size:17px;
    font-weight:600;
}

/* LOCATION */
.location{
    font-size:13px;
    color:#666;
}

/* AMENITIES */
.amenities{
    display:flex;
    gap:8px;
    margin:8px 0;
}

.amenities span{
    font-size:11px;
    background:#eef2f7;
    padding:4px 10px;
    border-radius:20px;
}

/* BOTTOM */
.bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.price{
    font-weight:700;
    color:#2563eb;
}

/* ARROW */
.arrow{
    font-size:18px;
    transition:0.3s;
}

/* HOVER MAGIC */
.boat-card:hover{
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.boat-card:hover img{
    transform:scale(1.12);
}

.boat-card:hover .arrow{
    transform:translateX(6px);
}
.reveal-up{
    opacity:0;
    transform:translateY(80px) scale(0.95);
    filter:blur(6px);
    transition:all 0.8s cubic-bezier(0.22,1,0.36,1);
}

.reveal-up.active{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
}
.boat-card:nth-child(1){ transition-delay:0.1s; }
.boat-card:nth-child(2){ transition-delay:0.2s; }
.boat-card:nth-child(3){ transition-delay:0.3s; }
.boat-card:nth-child(4){ transition-delay:0.4s; }
@media(max-width:768px){

    .boat-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .boat-img{
        width:100%;
        height:200px;
    }

    .boat-content{
        width:100%;
    }
}

.trips-section{
    padding:100px 5%;
    background:linear-gradient(to bottom,#f8fafc,#eef2f7);
}

/* GRID */
.trip-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

/* CARD */
.trip-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,0.08);

    transform:translateY(0);
    opacity:1;
    transition:all 0.6s cubic-bezier(0.22,1,0.36,1);
}

/* SHOW ANIMATION */
.trip-card.show{
    transform:translateY(0);
    opacity:1;
}

/* IMAGE */
.trip-img{
    position:relative;
    height:200px;
}

.trip-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

/* BADGE */
.trip-badge{
    position:absolute;
    top:12px;
    left:12px;

    background:#0f172a;
    color:#fff;
    font-size:11px;

    padding:5px 12px;
    border-radius:20px;
}

/* CONTENT */
.trip-content{
    padding:15px;
}

.trip-content h3{
    font-size:17px;
    margin-bottom:8px;
}

/* INFO */
.trip-info,
.trip-meta{
    display:flex;
    gap:12px;
    font-size:13px;
    color:#666;
    margin-bottom:6px;
}

/* FOOTER */
.trip-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:10px;
}

.price{
    font-weight:700;
    color:#2563eb;
}

/* BUTTON */
.trip-btn{
    background:#111;
    color:#fff;
    padding:8px 18px;
    border-radius:20px;
    text-decoration:none;
}

/* HOVER */
.trip-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.trip-card:hover img{
    transform:scale(1.1);
}

/* HIDDEN */
.hidden-card{
    opacity:0;
    transform:translateY(40px);
    height:0;
    overflow:hidden;
    pointer-events:none;
}

/* VIEW MORE */
.view-more-wrap{
    text-align:center;
    margin-top:40px;
}

#viewMoreBtn{
    padding:12px 30px;
    border-radius:30px;
    border:none;

    background:#111;
    color:#fff;

    cursor:pointer;
    transition:0.3s;
}

#viewMoreBtn:hover{
    background:#333;
}
/* CARD */
.sponsor-card{
    position:relative;
    min-width:240px;
    flex-shrink:0;

    padding:30px 20px;
    border-radius:22px;

    background:#ffffff;
    text-align:center;

    text-decoration:none;
    color:#111;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.08),
        0 5px 15px rgba(0,0,0,0.04);

    transition:all 0.4s cubic-bezier(0.22,1,0.36,1);
}

/* IMAGE (LOGO) */
.sponsor-card img{
    width:90px;
    height:90px;

    object-fit:contain;
    margin-bottom:15px;

    background:#fff;
    padding:12px;
    border-radius:16px;

    box-shadow:0 10px 25px rgba(0,0,0,0.1);

    transition:0.4s;
}

/* TEXT */
.sponsor-head{
    text-align: center;
}
.sponsor-card h4{
    font-size:18px;
    font-weight:700;
    margin-bottom:6px;
}

.sponsor-card p{
    font-size:14px;
    color:#444;
    margin-bottom:4px;
}

.sponsor-card span{
    font-size:12px;
    color:#888;
}

/* HOVER */
.sponsor-card:hover{
    transform:translateY(-10px) scale(1.05);
    box-shadow:0 25px 60px rgba(0,0,0,0.2);
}

/* LOGO HOVER */
.sponsor-card:hover img{
    transform:scale(1.1) rotate(3deg);
}

/* PREMIUM GOLD */
.premium{
    background:linear-gradient(135deg,#facc15,#f59e0b);
    color:#000;

    box-shadow:
        0 20px 60px rgba(250,204,21,0.4);
}
/* DARK HIGHLIGHT */
.highlight{
    background:#0f172a;
    color:#fff;

    box-shadow:
        0 25px 70px rgba(0,0,0,0.4);
}
.sponsor-card{
    opacity:0.6;
}

.sponsor-card:hover{
    opacity:1;
}
.sponsor-card:active{
    transform:scale(0.97);
}
.sponsor-card::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:18px;

    background:linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    opacity:0;
    transition:0.4s;
    pointer-events:none;
}

.sponsor-card:hover::before{
    opacity:1;
}
/* MARQUEE FIX */
.marquee{
    overflow:hidden;
    width:100%;
    position:relative;
}

.marquee-track{
    display:flex;
    gap:30px;
    width:max-content;

    animation:marqueeScroll 20s linear infinite;
}
.marquee:hover .marquee-track{
    animation-play-state:paused;
}
.sponsor-card{
    opacity:0.6;
}

.sponsor-card:hover{
    opacity:1;
}
/* SMOOTH LOOP */
@keyframes marqueeScroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

.review-section{
    padding:100px 5%;
    background:linear-gradient(to bottom,#0f172a,#020617);
}

.review-box{
    max-width:700px;
    margin:auto;
    padding:40px;

    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(20px);

    border-radius:20px;
    color:#fff;

    box-shadow:0 20px 60px rgba(0,0,0,0.5);
}

.review-box h2{
    text-align:center;
    margin-bottom:25px;
}

.field{
    margin-bottom:20px;
}

.field label{
    display:block;
    margin-bottom:6px;
    font-size:14px;
}

.field input,
.field select,
.field textarea{
    width:100%;
    padding:12px;
    border-radius:10px;
    border:none;
    outline:none;

    background:rgba(255,255,255,0.1);
    color:#fff;
}

/* BUTTON */
.submit-btn{
    width:100%;
    padding:14px;
    border-radius:30px;

    background:linear-gradient(135deg,#facc15,#f59e0b);
    border:none;

    font-weight:600;
    cursor:pointer;
}

/* IMAGE PREVIEW */
#preview{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:10px;
}

#preview img{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:10px;
}

/* SECTION */
.review-section{
    padding:100px 5%;
    background:#f8fafc;
}

/* CONTAINER */
.review-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* LEFT */
.review-left h2{
    font-size:32px;
    margin-bottom:15px;
}

.review-left p{
    color:#555;
    margin-bottom:15px;
}

.review-left ul{
    margin-bottom:20px;
}

.review-left li{
    margin-bottom:8px;
    color:#333;
}

.review-left img{
    width:100%;
    max-width:350px;
}

/* FORM */
.review-form{
    background:#fff;
    padding:30px;
    border-radius:16px;

    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* FIELD */
.field{
    margin-bottom:18px;
}

.field label{
    display:block;
    font-size:14px;
    margin-bottom:6px;
    color:#111;
}

.field input,
.field select,
.field textarea{
    width:100%;
    padding:12px;
    border-radius:8px;
    border:1px solid #ddd;

    font-size:14px;
    color:#000;
    background:#fff;
}

/* BUTTON */
.submit-btn{
    width:100%;
    padding:14px;

    border:none;
    border-radius:30px;

    background:#111;
    color:#fff;

    font-weight:600;
    cursor:pointer;
}

/* IMAGE PREVIEW */
#preview{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:10px;
}

#preview img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:8px;
}
@media(max-width:768px){

    .review-container{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
    }

    .review-left img{
        margin:auto;
    }

}

.index-review{
    padding:100px 5%;
    background:#f8fafc;
}

.review-slider{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
}

.review-card{
    min-width:280px;
    flex-shrink:0;

    border-radius:18px;
    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.4s ease;

    scroll-snap-align:start;
}

.review-card img{
    width:100%;
    height:350px;
    object-fit:cover;
}

/* Hover effect */
.review-card:hover{
    transform:translateY(-8px) scale(1.03);
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

/* Hide scrollbar */
.review-slider::-webkit-scrollbar{
    display:none;
}

.view-more-btn{
    display:inline-block;
    margin-top:30px;
    padding:12px 30px;
    background:#111;
    color:#fff;
    border-radius:30px;
    text-decoration:none;
}

/* SECTION */
.room-section-index{
    padding:100px 5%;
    background:linear-gradient(to bottom,#f8fafc,#eef2f7);
}

/* GRID */
.room-grid-index{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* MOBILE */
@media(max-width:768px){
    .room-grid-index{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }
}

/* CARD */
.room-card-index{
    background:#fff;
    border-radius:22px;
    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    transition:all 0.4s cubic-bezier(0.22,1,0.36,1);

    opacity:0;
    transform:translateY(40px) scale(0.95);
}

/* SHOW ANIMATION */
.room-card-index.show{
    opacity:1;
    transform:translateY(0) scale(1);
}

/* IMAGE FULL WIDTH FIX */
.room-img{
    width:100%;
    height:220px;
    overflow:hidden;
    position:relative;
}

.room-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.6s ease;
}

/* SOFT OVERLAY */
.img-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.25), transparent);
}

/* CONTENT */
.room-content{
    padding:18px;
    text-align:center;
}

.room-content h3{
    font-size:18px;
    font-weight:600;
    margin-bottom:6px;
}

/* PRICE */
.price{
    font-size:17px;
    font-weight:700;
    color:#2563eb;
    margin-bottom:12px;
}

/* PREMIUM BUTTON */
.reserve-btn{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;

    font-size:14px;
    font-weight:500;

    background:linear-gradient(135deg,#00c6ff,#0072ff);
    color:#fff;
    text-decoration:none;

    box-shadow:0 8px 20px rgba(0,114,255,0.4);

    transition:all 0.3s ease;
}

/* BUTTON HOVER */
.reserve-btn:hover{
    transform:translateY(-2px) scale(1.05);
    box-shadow:0 15px 35px rgba(0,114,255,0.5);
}

/* CARD HOVER */
.room-card-index:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 30px 80px rgba(0,0,0,0.15);
}

.room-card-index:hover img{
    transform:scale(1.1);
}

/* HIDDEN */
.hidden-room{
    display:none;
}
#roomViewMore{
    margin-top:40px;
    padding:14px 40px;

    border-radius:50px;
    border:none;

    font-size:15px;
    font-weight:600;

    color:#fff;
    cursor:pointer;

    background:linear-gradient(135deg,#111,#333);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);

    transition:all 0.4s ease;

    position:relative;
    overflow:hidden;
}

/* SHINE EFFECT */
#roomViewMore::after{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:120%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );

    transform:skewX(-20deg);
    transition:0.6s;
}

#roomViewMore:hover::after{
    left:120%;
}

/* HOVER */
#roomViewMore:hover{
    transform:translateY(-3px) scale(1.05);
    background:#000;
}
.room-card-index{
    opacity:0;
    transform:translateY(40px) scale(0.95);
}

.room-card-index.show{
    opacity:1;
    transform:translateY(0) scale(1);
}
.room-img{
    border-bottom:1px solid #f1f5f9;
}


/* =========================
HOUSEBOAT GALLERY
========================= */

.houseboat-gallery-section{
    padding:120px 5%;
    background:
    linear-gradient(
        to bottom,
        #f8fafc,
        #eef2f7
    );

    overflow:hidden;
}

/* HEAD */
.gallery-head{
    text-align:center;
    max-width:700px;
    margin:auto auto 70px;
}

.gallery-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;

    background:#dbeafe;
    color:#2563eb;

    font-size:13px;
    font-weight:600;
}

.gallery-head h2{
    font-size:52px;
    margin:20px 0 15px;
    line-height:1.2;
    color:#0f172a;
}

.gallery-head h2 span{
    background:linear-gradient(135deg,#2563eb,#00c6ff);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.gallery-head p{
    color:#64748b;
    font-size:16px;
    line-height:1.8;
}

/* GRID */
.houseboat-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:260px;
    gap:22px;
}

/* ITEMS */
.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:26px;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.08);

    transform:translateY(0);
    transition:all .5s cubic-bezier(.22,1,.36,1);
}

.gallery-item.large{
    grid-column:span 2;
    grid-row:span 2;
}

.gallery-item.wide{
    grid-column:span 2;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:transform .8s ease;
}

/* OVERLAY */
.gallery-item::after{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.45),
        transparent
    );

    opacity:.7;
    transition:.4s;
}

/* HOVER */
.gallery-item:hover{
    transform:
        translateY(-10px)
        scale(1.02);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.18);
}

.gallery-item:hover img{
    transform:scale(1.12);
}

.gallery-item:hover::after{
    opacity:1;
}

/* VIDEO WRAP */
.gallery-video-wrap{
    margin-top:70px;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* VIDEO CARD */
.video-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.08);

    transition:all .5s ease;
}

.video-card video{
    width:100%;
    height:320px;
    object-fit:cover;

    display:block;
}

/* CONTENT */
.video-content{
    padding:24px;
}

.video-content h3{
    font-size:22px;
    margin-bottom:8px;
    color:#0f172a;
}

.video-content p{
    color:#64748b;
    font-size:15px;
}

/* HOVER */
.video-card:hover{
    transform:
        translateY(-10px)
        scale(1.02);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.16);
}

/* REVEAL ANIMATION */
.reveal-gallery{
    opacity:0;
    transform:
        translateY(80px)
        scale(.95);

    transition:
        all .9s cubic-bezier(.22,1,.36,1);
}

.reveal-gallery.active{
    opacity:1;
    transform:
        translateY(0)
        scale(1);
}

/* MOBILE */
@media(max-width:992px){

    .houseboat-gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-video-wrap{
        grid-template-columns:1fr;
    }

}

/* =========================
PREMIUM MOBILE GALLERY
========================= */

@media(max-width:768px){

    .houseboat-gallery-section{
        padding:90px 0 80px;
        position:relative;
        overflow:hidden;
    }

    /* BLUR BACKGROUND */
    .houseboat-gallery-section::before{
        content:"";
        position:absolute;
        width:280px;
        height:280px;

        background:rgba(37,99,235,.18);

        filter:blur(100px);

        top:0;
        right:-100px;

        border-radius:50%;
    }

    .houseboat-gallery-section::after{
        content:"";
        position:absolute;
        width:220px;
        height:220px;

        background:rgba(0,198,255,.15);

        filter:blur(100px);

        bottom:0;
        left:-80px;

        border-radius:50%;
    }

    /* HEAD */
    .gallery-head{
        padding:0 20px;
        margin-bottom:40px;
        position:relative;
        z-index:2;
    }

    .gallery-tag{
        font-size:11px;
        padding:8px 16px;
        letter-spacing:.5px;
    }

    .gallery-head h2{
        font-size:38px;
        line-height:1.15;
        margin:18px 0 14px;
    }

    .gallery-head p{
        font-size:14px;
        line-height:1.7;
    }

    /* =========================
PREMIUM MOBILE GRID
========================= */

.houseboat-gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:14px;

    padding:
    10px
    16px
    10px;

}

/* CARD */
.gallery-item{

    min-width:unset;
    height:180px;

    border-radius:24px;

    position:relative;
    overflow:hidden;

    background:#fff;

    box-shadow:
        0 15px 40px rgba(0,0,0,.12);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

/* BIG CARD */
.gallery-item.large{

    grid-column:span 2;
    height:260px;
}

/* WIDE CARD */
.gallery-item.wide{

    grid-column:span 2;
    height:210px;
}

/* IMAGE */
.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:transform .6s ease;
}

/* PREMIUM HOVER */
.gallery-item:hover{

    transform:
        translateY(-4px)
        scale(1.02);

    box-shadow:
        0 20px 60px rgba(0,0,0,.18);
}

.gallery-item:hover img{
    transform:scale(1.08);
}

    /* ACTIVE FEEL */
    .gallery-item:hover{
        transform:scale(1);
    }

    /* REMOVE GRID SPAN */
    .gallery-item.large,
    .gallery-item.wide{
        grid-column:auto;
        grid-row:auto;
    }

    /* IMAGE */
    .gallery-item img{
        width:100%;
        height:100%;
        object-fit:cover;
    }

    /* CINEMATIC OVERLAY */
    .gallery-item::before{
        content:"";
        position:absolute;
        inset:0;

        background:
        linear-gradient(
            to top,
            rgba(0,0,0,.75),
            rgba(0,0,0,.15),
            transparent
        );

        z-index:1;
    }

    /* FLOATING LIGHT */
    .gallery-item::after{
        content:"";
        position:absolute;

        top:-40%;
        left:-40%;

        width:180px;
        height:180px;

        background:
        rgba(255,255,255,.18);

        filter:blur(60px);

        border-radius:50%;

        z-index:1;
    }

    .gallery-video-wrap{

    display:grid;

    grid-template-columns:1fr;

    gap:18px;

    padding:0 16px;

    margin-top:30px;
}

    .gallery-video-wrap::-webkit-scrollbar{
        display:none;
    }

    /* VIDEO CARD */
    .video-card{

        min-width:100%;
        flex-shrink:0;

        scroll-snap-align:center;

        border-radius:30px;

        overflow:hidden;

        background:
        rgba(255,255,255,.7);

        backdrop-filter:blur(20px);

        box-shadow:
            0 25px 80px rgba(0,0,0,.15);

        border:
            1px solid rgba(255,255,255,.5);
    }

    .video-card video{
        height:260px;
    }

    /* CONTENT */
    .video-content{
        padding:22px;
    }

    .video-content h3{
        font-size:20px;
        margin-bottom:6px;
    }

    .video-content p{
        font-size:14px;
        line-height:1.6;
    }

    /* PREMIUM TOUCH */
    .video-card:hover{
        transform:
            translateY(-5px)
            scale(1.02);
    }

}
/* =========================
BEACH BINDHU SECTION
========================= */

.beachbindu-section{

    position:relative;
    padding:120px 5%;

    background:
    linear-gradient(
        to bottom,
        #06131f,
        #0b1724,
        #101f2e
    );

    overflow:hidden;
}

/* GLOW */
.bb-glow{

    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    opacity:.25;
}

.bb-glow-1{

    width:350px;
    height:350px;

    background:#00c6ff;

    top:-120px;
    right:-120px;
}

.bb-glow-2{

    width:300px;
    height:300px;

    background:#2563eb;

    bottom:-100px;
    left:-100px;
}

/* HEAD */
.beachbindu-head{

    text-align:center;
    max-width:760px;
    margin:auto auto 70px;

    position:relative;
    z-index:2;
}

.bb-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    border:
    1px solid rgba(255,255,255,.12);

    color:#fff;

    font-size:13px;
    letter-spacing:.5px;
}

.beachbindu-head h2{

    font-size:64px;
    line-height:1.1;

    margin:24px 0 18px;

    color:#fff;
}

.beachbindu-head h2 span{

    background:
    linear-gradient(
        135deg,
        #00c6ff,
        #2563eb
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.beachbindu-head p{

    color:#cbd5e1;

    font-size:16px;
    line-height:1.9;
}

/* GRID */
.beachbindu-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    grid-auto-rows:260px;

    gap:22px;

    position:relative;
    z-index:2;
}

/* CARD */
.bb-card{

    position:relative;
    overflow:hidden;

    border-radius:28px;

    box-shadow:
    0 25px 70px rgba(0,0,0,.28);

    transition:
    all .6s cubic-bezier(.22,1,.36,1);

    transform-style:preserve-3d;
}

/* BIG */
.bb-card.large{

    grid-column:span 2;
    grid-row:span 2;
}

/* WIDE */
.bb-card.wide{

    grid-column:span 2;
}

/* IMAGE */
.bb-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:
    transform 1s ease;
}

/* OVERLAY */
.bb-card::after{

    content:"";

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.55),
        transparent
    );

    opacity:.75;

    transition:.5s;
}

/* HOVER */
.bb-card:hover{

    transform:
    translateY(-12px)
    rotateX(3deg)
    rotateY(-3deg)
    scale(1.02);

    box-shadow:
    0 40px 100px rgba(0,0,0,.45);
}

.bb-card:hover img{
    transform:scale(1.12);
}

.bb-card:hover::after{
    opacity:1;
}

/* REVEAL */
.reveal-bb{

    opacity:0;

    transform:
    translateY(90px)
    scale(.92);

    transition:
    all 1s cubic-bezier(.22,1,.36,1);
}

.reveal-bb.active{

    opacity:1;

    transform:
    translateY(0)
    scale(1);
}

/* MOBILE */
@media(max-width:768px){

    .beachbindu-section{
        padding:90px 0;
    }

    .beachbindu-head{
        padding:0 20px;
        margin-bottom:40px;
    }

    .beachbindu-head h2{
        font-size:38px;
    }

    .beachbindu-head p{
        font-size:14px;
    }

    .beachbindu-grid{

        grid-template-columns:
        repeat(2,1fr);

        gap:14px;

        padding:0 16px;
    }

    .bb-card{

        height:190px;
        border-radius:24px;
    }

    .bb-card.large{

        grid-column:span 2;
        height:280px;
    }

    .bb-card.wide{

        grid-column:span 2;
        height:220px;
    }

}