:root{
    --zp-deep:#002755;
    --zp-blue:#005EA8;
    --zp-ocean:#00A6D6;

    --zp-gold:#D6A529;
    --zp-gold-light:#F1D46E;

    --zp-white:#FFFFFF;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    min-height:100%;
}

body{
    font-family:'DM Sans',sans-serif;
    background:#fff;
}

a{
    text-decoration:none;
}

img{
    display:block;
}

button,
input,
select{
    font:inherit;
}


/* =================================================
   HEADER
================================================= */

.site-header{
    position:absolute;
    top:0;
    left:0;
    right:0;

    z-index:100;

    background:transparent;
}

.top-bar{
    display:none;
}

.main-navbar{
    border-bottom:1px solid rgba(255,255,255,.12);
}

.nav-container{
    width:min(1410px,calc(100% - 70px));
    height:82px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:35px;
}

.site-logo{
    display:flex;
    align-items:center;
}

.site-logo img{
    width:auto;
    height:61px;
    max-width:220px;

    object-fit:contain;
}

.main-menu{
    display:flex;
    align-items:center;

    gap:36px;
}

.main-menu a{
    color:#fff;

    font-size:12px;
    font-weight:600;

    transition:.2s;
}

.main-menu a:hover,
.main-menu a.active{
    color:var(--zp-gold-light);
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.book-btn{
    height:44px;

    padding:0 18px;

    display:flex;
    align-items:center;

    border-radius:6px;

    background:var(--zp-gold);

    color:var(--zp-deep);

    font-size:11px;
    font-weight:800;
}

.book-btn span{
    display:none;
}

.menu-toggle{
    display:none;

    width:44px;
    height:44px;

    border:0;

    background:transparent;
    color:#fff;

    font-size:21px;
}


/* =================================================
   HERO
================================================= */

.zp-home-hero{
    position:relative;

    height:590px;
    min-height:590px;

    overflow:hidden;

    background:var(--zp-deep);
}


/* SLIDES */

.zp-hero-slides{
    position:absolute;
    inset:0;

    z-index:0;
}

.zp-hero-slide{
    position:absolute;
    inset:0;

    opacity:0;
    visibility:hidden;

    transition:
        opacity 1.2s ease,
        visibility 1.2s ease;
}

.zp-hero-slide.active{
    opacity:1;
    visibility:visible;
}

.zp-hero-slide img{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    transform:scale(1);
}

.zp-hero-slide.active img{
    animation:zpHeroZoom 6.5s ease-in-out forwards;
}

@keyframes zpHeroZoom{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.08);
    }

}


/* OVERLAY */

.zp-hero-overlay{
    position:absolute;

    inset:0;

    z-index:1;

    background:
        linear-gradient(
            rgba(0,32,67,.47),
            rgba(0,30,64,.57)
        );
}


/* CONTENT */

.zp-hero-content-wrap{
    position:relative;

    z-index:5;

    width:min(1250px,calc(100% - 70px));

    height:100%;

    margin:auto;

    padding-top:123px;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.zp-hero-content{
    text-align:center;

    max-width:850px;

    margin:auto auto 28px;
}

.zp-hero-subtitle{
    display:block;

    margin-bottom:10px;

    color:#fff;

    font-size:12px;
    font-weight:600;
}

.zp-hero-content h1{
    margin:0;

    color:#fff;

    font-family:'Manrope',sans-serif;

    font-size:58px;

    line-height:1.05;

    letter-spacing:-2.8px;

    font-weight:700;

    transition:
        opacity .35s ease,
        transform .35s ease;
}

.zp-hero-content p{
    max-width:660px;

    margin:13px auto 0;

    color:rgba(255,255,255,.78);

    font-size:12px;
    line-height:1.7;

    transition:
        opacity .35s ease,
        transform .35s ease;
}

.zp-hero-btn{
    min-height:43px;

    margin-top:16px;

    padding:0 17px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    border-radius:6px;

    background:var(--zp-gold);

    color:var(--zp-deep);

    font-size:10px;
    font-weight:800;
}


/* =================================================
   SEARCH
================================================= */

.zp-search-box{
    width:100%;
    max-width:1080px;

    margin-top:auto;
    margin-bottom:35px;

    padding:15px;

    border:1px solid rgba(255,255,255,.22);

    border-radius:10px;

    background:rgba(0,32,64,.17);

    backdrop-filter:blur(4px);
}


/* SEARCH TABS */

.zp-search-tabs{
    display:flex;

    gap:6px;

    margin-bottom:10px;
}

.zp-search-tab{
    height:31px;

    padding:0 13px;

    border:1px solid rgba(255,255,255,.28);

    border-radius:5px;

    background:rgba(255,255,255,.06);

    color:#fff;

    font-size:9px;
    font-weight:700;

    cursor:pointer;
}

.zp-search-tab i{
    margin-right:5px;
}

.zp-search-tab.active{
    border-color:var(--zp-gold);

    background:var(--zp-gold);

    color:var(--zp-deep);
}


/* SEARCH FORM */

.zp-search-form{
    display:none;

    grid-template-columns:
        1fr
        1fr
        .85fr
        115px;

    gap:8px;
}

.zp-search-form.active{
    display:grid;
}

.zp-search-field{
    height:46px;

    padding:0 11px;

    display:flex;
    align-items:center;

    gap:8px;

    border:1px solid rgba(255,255,255,.34);

    border-radius:6px;

    background:rgba(0,36,73,.19);

    color:#fff;
}

.zp-search-field i{
    flex:none;

    width:17px;

    color:#fff;

    font-size:11px;
}

.zp-search-field input,
.zp-search-field select{
    width:100%;

    min-width:0;

    border:0;
    outline:0;

    background:transparent;

    color:#fff;

    font-size:9px;
}

.zp-search-field input::placeholder{
    color:#fff;
}

.zp-search-field select option{
    color:#17334e;

    background:#fff;
}

.zp-search-submit{
    height:46px;

    border:0;

    border-radius:6px;

    background:var(--zp-gold);

    color:var(--zp-deep);

    font-size:11px;
    font-weight:800;

    cursor:pointer;
}


/* hide footer until hero approved */

.site-footer{
    display:none;
}


/* =================================================
   TABLET
================================================= */

@media(max-width:1000px){

    .main-menu{
        position:fixed;

        top:0;
        right:-100%;

        width:min(350px,88%);
        height:100vh;

        padding:100px 30px;

        flex-direction:column;
        align-items:flex-start;

        background:var(--zp-deep);

        transition:.35s;
    }

    .main-menu.open{
        right:0;
    }

    .menu-toggle{
        display:block;
    }

    .book-btn{
        display:none;
    }

}


/* =================================================
   MOBILE
================================================= */

@media(max-width:650px){

    .nav-container{
        width:calc(100% - 28px);

        height:70px;
    }

    .site-logo img{
        height:50px;
        max-width:180px;
    }

    .zp-home-hero{
        height:630px;
        min-height:630px;
    }

    .zp-hero-content-wrap{
        width:calc(100% - 28px);

        padding-top:94px;
    }

    .zp-hero-content{
        margin-bottom:20px;
    }

    .zp-hero-content h1{
        font-size:39px;

        letter-spacing:-1.8px;
    }

    .zp-hero-content p{
        font-size:10px;
    }

    .zp-search-box{
        margin-bottom:20px;
    }

    .zp-search-tabs{
        display:grid;

        grid-template-columns:repeat(3,1fr);
    }

    .zp-search-tab{
        padding:0 5px;

        font-size:8px;
    }

    .zp-search-form{
        grid-template-columns:1fr;
    }

}

/* =========================================
   ZAN PEARL LOGO IMPROVEMENT
========================================= */

.site-logo{
    display:flex;
    align-items:center;
    justify-content:center;

    padding:5px 12px;

    border-radius:10px;

    background:rgba(255,255,255,.94);

    box-shadow:
        0 8px 25px
        rgba(0,25,55,.14);

    flex:none;
}

.site-logo img{
    width:auto;

    height:66px;

    max-width:235px;

    object-fit:contain;

    display:block;

    filter:
        contrast(1.06)
        saturate(1.05);
}

.site-header.sticky .site-logo{
    padding:4px 10px;
}

.site-header.sticky .site-logo img{
    height:57px;
}

@media(max-width:650px){

    .site-logo{
        padding:4px 8px;
    }

    .site-logo img{
        height:53px;
        max-width:190px;
    }

}


/* =====================================================
   MOST POPULAR TOURS - ZAN PEARL
===================================================== */

.popular-tours-section{
    padding:85px 0 95px;

    background:#ffffff;

    color:#092d50;
}

.popular-heading{
    max-width:760px;

    margin:0 auto 42px;

    text-align:center;
}

.popular-kicker{
    display:block;

    margin-bottom:8px;

    color:#d6a529;

    font-size:10px;
    font-weight:900;

    letter-spacing:1.6px;

    text-transform:uppercase;
}

.popular-heading h2{
    margin:0;

    color:#002755;

    font-family:'Manrope',sans-serif;

    font-size:43px;

    line-height:1.15;

    letter-spacing:-1.8px;

    font-weight:800;
}

.popular-heading p{
    max-width:680px;

    margin:12px auto 0;

    color:#718391;

    font-size:11px;

    line-height:1.8;
}


/* GRID */

.popular-tours-grid{
    display:grid;

    grid-template-columns:repeat(4,minmax(0,1fr));

    gap:20px;
}


/* CARD */

.popular-tour-card{
    overflow:hidden;

    border-radius:18px;

    background:#ffffff;

    box-shadow:
        0 12px 35px
        rgba(0,39,85,.08);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.popular-tour-card:hover{
    transform:translateY(-6px);

    box-shadow:
        0 20px 50px
        rgba(0,39,85,.14);
}


/* IMAGE */

.popular-tour-image{
    position:relative;

    height:220px;

    display:block;

    overflow:hidden;

    background:#e8eef2;
}

.popular-tour-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .5s ease;
}

.popular-tour-card:hover .popular-tour-image img{
    transform:scale(1.06);
}

.popular-image-placeholder{
    width:100%;
    height:100%;

    display:flex;

    align-items:center;
    justify-content:center;

    background:
        linear-gradient(
            135deg,
            #e5eef3,
            #cadce7
        );

    color:#7592a4;

    font-size:28px;
}


/* BADGES */

.tour-featured-badge,
.tour-offer-badge{
    position:absolute;

    top:16px;

    padding:7px 11px;

    border-radius:7px;

    font-size:8px;
    font-weight:900;

    z-index:2;
}

.tour-featured-badge{
    left:16px;

    background:#006cb7;

    color:#ffffff;
}

.tour-offer-badge{
    right:16px;

    background:
        linear-gradient(
            135deg,
            #f1d46e,
            #d6a529
        );

    color:#002755;
}


/* BODY */

.popular-tour-body{
    padding:18px;
}

.popular-review{
    display:flex;

    align-items:center;

    gap:11px;

    margin-bottom:12px;

    color:#768792;

    font-size:8px;
}

.tour-stars{
    display:flex;

    gap:2px;

    color:#d6a529;

    font-size:9px;
}

.popular-tour-body h3{
    min-height:52px;

    margin:0;

    color:#092d50;

    font-family:'Manrope',sans-serif;

    font-size:15px;

    line-height:1.45;

    font-weight:800;
}

.popular-tour-body h3 a{
    color:inherit;
}


/* INFO BOX */

.popular-tour-info{
    margin-top:14px;

    padding:13px 14px;

    border-radius:11px;

    background:#f1f6f8;
}

.popular-tour-info > div:first-child{
    display:flex;

    align-items:center;

    gap:14px;

    padding-bottom:11px;

    border-bottom:1px solid #dce6eb;
}

.popular-tour-info span{
    color:#5e7482;

    font-size:8px;
}

.popular-tour-info span i{
    margin-right:4px;

    color:#0085b7;
}


/* PRICE */

.popular-price-row{
    margin-top:11px;

    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:10px;
}

.popular-price{
    min-width:0;
}

.popular-price small{
    display:block;

    margin-bottom:1px;

    color:#8b999f;

    font-size:7px;
}

.popular-price strong{
    color:#002755;

    font-family:'Manrope',sans-serif;

    font-size:14px;

    font-weight:800;
}

.popular-price > span{
    margin-left:3px;

    color:#71818a;

    font-size:7px;
}


/* HEART */

.popular-heart{
    width:34px;
    height:34px;

    flex:none;

    border:0;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#ffffff;

    color:#006cb7;

    box-shadow:
        0 5px 18px
        rgba(0,39,85,.08);

    cursor:pointer;
}

.popular-heart:hover{
    background:#002755;

    color:#f1d46e;
}


/* VIEW ALL */

.popular-view-all{
    margin-top:34px;

    text-align:center;
}

.popular-all-btn{
    min-height:44px;

    padding:0 17px;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:10px;

    border:1px solid #006cb7;

    border-radius:7px;

    color:#002755;

    font-size:9px;
    font-weight:900;

    transition:.25s;
}

.popular-all-btn:hover{
    background:#002755;

    border-color:#002755;

    color:#ffffff;
}

.popular-all-btn i:first-child{
    color:#d6a529;
}


/* EMPTY */

.popular-empty{
    grid-column:1 / -1;

    padding:40px;

    text-align:center;

    color:#8797a0;
}


/* TABLET */

@media(max-width:1100px){

    .popular-tours-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}


/* MOBILE */

@media(max-width:650px){

    .popular-tours-section{
        padding:65px 0 75px;
    }

    .popular-heading h2{
        font-size:32px;
    }

    .popular-tours-grid{
        grid-template-columns:1fr;
    }

    .popular-tour-image{
        height:235px;
    }

}

