/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#111111;
    overflow-x:hidden;
}

body.dark{
    background:#111;
    color:#fff;
}

a{
    text-decoration:none;
    color:inherit;
}

body.dark a{
    text-decoration:none;
    color:#fff;
}

ul{
    list-style:none;
}

img{
    width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* ==========================
   COLORS
========================== */

:root{
    --gold:#C89B4A;
    --black:#111111;
    --ivory:#F7F3ED;
    --gray:#777;
    --light:#fafafa;
}

/* ==========================
   TOP BAR
========================== */

.topbar{
    background:#0f0f0f;
    color:#fff;
    font-size:14px;
}

.topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
}

.topbar .left,
.topbar .right{
    display:flex;
    align-items:center;
    gap:15px;
}

.topbar i{
    color:var(--gold);
}

.topbar .right a{
    transition:.3s;
}

.topbar .right a:hover{
    color:var(--gold);
}

/* ==========================
   HEADER
========================== */

header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 15px rgba(0,0,0,.05);
}

header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:24px 0;
}

.logo h1{
    font-family:'Cinzel',serif;
    font-size:42px;
    font-weight:600;
    letter-spacing:3px;
}

.logo span{
    display:block;
    color:var(--gold);
    letter-spacing:8px;
    font-size:12px;
}

nav ul{
    display:flex;
    gap:35px;
}

nav a{
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:var(--gold);
}

.contact-btn{
    background: linear-gradient(to right, #b58a48, #966821);
    color:#fff;
    padding:14px 24px;
    border-radius:10px;
    transition:.3s;
}

.social-img3{
    width:22px;
    padding:2px;
}

.social-img3:hover{
    border:1px solid var(--gold);
    transition:.4s;
}

.contact-btn:hover{
    transform:translateY(-3px);
}

/* ==========================
   HERO
========================== */

.hero{
    height:90vh;
    position:relative;
    overflow:hidden;
}

.hero video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,.6),
        rgba(0,0,0,.2)
    );
}

.hero-content{
    position:relative;
    z-index:10;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    width:90%;
    max-width:1400px;
    margin:auto;
    margin-left:80px;;
}

.hero h1{
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    color:white;
    max-width:800px;
}

.hero h1 span{
    color:var(--gold);
}

.hero p{
    color:#fff;
    margin-top:25px;
    max-width:550px;
    font-size:18px;
    line-height:1.8;
}




.hero-btn{
    margin-top:35px;
    background: linear-gradient(to right, #b58a48, #966821);
    color:white;
    width:fit-content;
    padding:18px 35px;
    border-radius:12px;
    transition:.4s;
}

.hero-btn:hover{
    transform:translateY(-4px);
}

/* ==========================
   SECTION HEADER
========================== */

.section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.section-header h2{
    font-size:38px;
    font-family:'Cinzel',serif;
}

.section-header a{
    color:var(--gold);
}

/* ==========================
   DESTINATIONS
========================== */

.destinations{
    padding:100px 0;
}

.destination-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.destination-card{
    height:420px;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    cursor:pointer;
}

.destination-card video{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.destination-card:hover video{
    transform:scale(1.1);
}

.destination-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        transparent
    );
}

.destination-card .content{
    position:absolute;
    left:25px;
    bottom:25px;
    z-index:2;
}

.destination-card h3{
    color:white;
    font-size:28px;
    margin-bottom:8px;
}

.destination-card p{
    color:#ddd;
}

/* ==========================
   PACKAGES
========================== */

.packages{
    padding:40px 0 100px;
}

.package-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.package-card{
    background:white;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
}

body.dark .package-card{
    background:#121212;
    border:1px solid #393939;
}

.package-card:hover{
    transform:translateY(-10px);
}

.package-card img{
    height:260px;
    object-fit:cover;
}

.package-content{
    padding:30px;
}

.package-content h3{
    font-size:28px;
    margin-bottom:10px;
}

.package-content span{
    color:#666;
}

.package-content ul{
    margin-top:25px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.package-content li{
    color:#666;
}

.package-content .bottom{
    margin-top:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.package-content strong{
    font-size:28px;
    color:var(--gold);
}

.package-content .bottom a{
    background:var(--gold);
    color:white;
    padding:12px 24px;
    border-radius:10px;
}

/* ==========================
   WORLD MAP
========================== */

.world-map{
    background:var(--ivory);
    padding:120px 0;
}

body.dark .world-map{
    background:#1a1a1a;
    padding:120px 0;
}

.world-map .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.map-left h2{
    font-size:50px;
    font-family:'Cinzel',serif;
    margin-bottom:20px;
}

.map-left p{
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

body.dark .map-left p{
    color:#555;
}

.map-left a{
    background:var(--gold);
    color:white;
    padding:16px 30px;
    border-radius:10px;
}

.map-left a{
    background: linear-gradient(to right, #b58a48, #966821);
    color:white;
    padding:16px 30px;
    border-radius:10px;
}

.map-left a:hover{
    transform:translateY(-3px);
}

.map-right img{
    filter:drop-shadow(0 20px 40px rgba(0,0,0,.12));
}

/* ==========================
   SERVICES
========================== */

.services{
    padding:80px 0;
}

.services .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.service-box{
    padding:40px;
    background:white;
    border-radius:20px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    display:flex;
}

body.dark .service-box{
     background:#161616;
}

.service-box img{
    width:60px;
    padding-right:20px;
}

.service-box p{
    padding-top:10px;
}

/* ==========================
   INSTAGRAM
========================== */

.instagram{
    padding:100px 0;
}

.instagram-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:15px;
}

.instagram-grid img{
    height:220px;
    object-fit:cover;
    border-radius:18px;
    transition:.5s;
}

@media(max-width:440px){
.map-left h2{
    font-size:30px;
}
}

.instagram-grid img:hover{
    transform:scale(1.05);
}

.header-logo{
    width:200px;
    background-image:url("images.logo.png");
}

@media(max-width:500){
    .header-logo{
        width:150px;
    }
}

/* ==========================
   NEWSLETTER
========================== */

.newsletter{
    position:relative;
    padding:120px 0;
    background-image: url("../images/footer.png");
    background-size:cover;
    background-position:center;
}

.newsletter .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.newsletter .container{
    position:relative;
    z-index:10;
}

.newsletter h2{
    color:white;
    font-size:48px;
    max-width:700px;
    margin-bottom:35px;
}

.newsletter form{
    display:flex;
    gap:15px;
}

.newsletter input{
    width:420px;
    padding:18px;
    border:none;
    border-radius:10px;
}

.newsletter button{
    border:none;
    background:var(--gold);
    color:white;
    padding:18px 35px;
    border-radius:10px;
    cursor:pointer;
}

/* ==========================
   FOOTER
========================== */

footer{
    background:#0d0d0d;
    color:white;
    padding:90px 0 40px;
}

footer .container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-col h3{
    font-size:36px;
    margin-bottom:20px;
    font-family:'Cinzel',serif;
}

.footer-col h4{
    margin-bottom:25px;
    color:var(--gold);
}

.footer-col p{
    color:#aaa;
    line-height:1.8;
}

/* ==========================
   STORIES
========================== */

.stories{
    padding:120px 0;
    background:#fafafa;
}

body.dark .stories{
    background:#111;
}

.story-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.story-card{
    height:520px;
    border-radius:28px;
    overflow:hidden;
    position:relative;
    cursor:pointer;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.story-card video{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.story-card:hover video{
    transform:scale(1.08);
}

.story-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.15)
    );
}

.story-card::after{
    content:'▶';
    position:absolute;
    width:70px;
    height:70px;
    background:rgba(255,255,255,.2);
    backdrop-filter:blur(12px);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:24px;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

/* ==========================
   SCROLLBAR
========================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f2f2f2;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(
        var(--gold),
        #9d752e
    );
    border-radius:50px;
}

/* ==========================
   GLOBAL HOVER
========================== */

.package-card,
.destination-card,
.story-card,
.service-box{
    transition:.4s ease;
}

.package-card:hover,
.service-box:hover{
    box-shadow:
        0 25px 50px rgba(0,0,0,.12);
}

header{
    backdrop-filter:blur(20px);
    background:rgba(255,255,255,.92);
}

body.dark header{
    backdrop-filter:blur(20px);
    background:rgba(0,0,0,.92);
}

.section-header h2{
    position:relative;
    display:inline-block;
    margin-bottom:10px;
}

.section-header h2::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-22px;

    width:80px;
    height:3px;
    background:var(--gold);
}



.instagram-grid img{
    cursor:pointer;
}

.instagram-grid img:hover{
    transform:scale(1.08);
}

.newsletter input{
    background:white;
    font-size:16px;
}

.newsletter input:focus{
    outline:none;
}

.newsletter button{
    transition:.3s;
}

.newsletter button:hover{
    transform:translateY(-3px);
}

footer{
    border-top:1px solid rgba(255,255,255,.08);
    background-image:url("../images/footer-bg.png");
}

hr{
    border:1px solid #373737;
}

.footer-p{
    text-align: center;
    height:0px;
}

.pp{
    margin-top:10px;
    margin-bottom:10px;
    color:#ccc;
}

.logo-img{
    width:250px;
}

.footer-col ul{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-col a{
    color:#aaa;
    transition:.3s;
}

.footer-icons{
    display:flex;
}

.social-img{
    width:50px;
    border-radius:50%;
    border:1px solid #fff;
    padding:10px;
    margin-right:30px;
    transition:.3s;
}

.social-img:hover{
    width:50px;
    border-radius:50%;
    border:1px solid #b08543;
    padding:10px;
    margin-right:30px;
}


.social-img1{
    width:30px;
    padding:2px;
    margin-right:20px;
    background-position: center;
    background-size: contain;
}

.footer-div1{
    display:flex;
    flex-direction: column;
}

.footer-div2{
    display:flex;
    flex-direction: column;
}

.footer-div2 a{
    display:flex;
}

.footer-col a:hover{
    color:var(--gold);
}

/* ==========================
   ANIMATIONS
========================== */

.fade-up{
    opacity:0;
    transform:translateY(50px);
    transition:.8s;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:1200px){

    .destination-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .package-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .story-grid{
        grid-template-columns:repeat(2,1fr);
    }

    footer .container{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    nav{
        display:none;
    }

    .hero{
        height:80vh;
    }

    .hero h1{
        font-size:32px;
    }

    .section-header{
        display:inline;
        gap:30px;
    }

    .hero p{
        font-size:15px;
    }

    .destination-grid{
        grid-template-columns:1fr;
    }

    .package-grid{
        grid-template-columns:1fr;
    }

    .story-grid{
        grid-template-columns:1fr;
    }

    .services .container{
        grid-template-columns:1fr;
    }

    .instagram-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .world-map .container{
        grid-template-columns:1fr;
    }

    footer .container{
        grid-template-columns:1fr;
    }

    .newsletter form{
        flex-direction:column;
    }

    .newsletter input{
        width:100%;
    }

}

body::before{
    content:'';
    position:fixed;
    width:600px;
    height:600px;
    border-radius:50%;
    background:rgba(200,155,74,.05);
    top:-250px;
    right:-250px;
    z-index:-1;
}

body::after{
    content:'';
    position:fixed;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(200,155,74,.04);
    bottom:-200px;
    left:-200px;
    z-index:-1;
}

header{
    transition:.4s;
}

header.shrink{
    padding:0;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

header.shrink .container{
    padding:16px 0;
}

nav a.active{
    color:var(--gold);
}

.cursor{
    width:18px;
    height:18px;
    border:2px solid var(--gold);
    border-radius:50%;
    position:fixed;
    pointer-events:none;
    z-index:9999;
    transform:translate(-50%,-50%);
}

#topBtn{
    position:fixed;
    right:30px;
    bottom:30px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:var(--gold);
    color:white;
    cursor:pointer;
    display:none;
    z-index:999;
}

@media(max-width:565px){
    .instagram-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .instagram-grid img {
        height: 320px;
    }
    .delete{
        display:none;
    }
}

@media(max-width:768px){
    .delete-later{
        display:none;
    }
    .section-header a{
        display:none;
    }
    .hero-content {
        width:auto;
    }
}
/*==========================================
        ZURA CONTACT PAGE CSS
==========================================*/

:root{

    --zr-gold:#C7A35A;
    --zr-gold-dark:#a8853f;

    --zr-dark:#111111;
    --zr-dark2:#181818;
    --zr-dark3:#202020;

    --zr-white:#ffffff;
    --zr-text:#cfcfcf;

    --zr-radius:22px;

    --zr-shadow:
        0 15px 45px rgba(0,0,0,.28);

    --zr-speed:.35s ease;

}

.zrcontact-page{

    width:100%;
    background:#fff;

    color:#fff;

}

body.dark .zrcontact-page{
    background:#111;
    color:#fff;
}

#themeBtn {
    background: linear-gradient(to right, #b58a48, #966821);
    border: none;
    cursor: pointer;
    transition: .3s;
    padding:8px;
    border-radius:10px;
}

#themeIcon {
     width:35px;
     height:35px;
     transition: .3s;
}

#themeBtn:hover{
    transform: translateY(-3px);

}
/*================ HERO =================*/

.zrcontact-hero{

    position:relative;

    height:650px;

    background:
        linear-gradient(rgba(0,0,0,.55),
        rgba(0,0,0,.65)),
        url(images/contact-bg.jpg);

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.zrcontact-overlay{

    position:absolute;

    inset:0;

        background: radial-gradient(circle at top right, rgba(199, 163, 90, .18), #000000 40%);

}

.zrcontact-hero-content{

    position:relative;

    z-index:2;

    max-width:700px;

}

.zrcontact-breadcrumb{

    display:flex;

    gap:10px;

    margin-bottom:25px;

    font-size:14px;

}

.zrcontact-breadcrumb a{

    color:#ddd;

    text-decoration:none;

}

.zrcontact-breadcrumb span{

    color:#999;

}

.zrcontact-hero h5{

    color:var(--zr-gold);

    letter-spacing:3px;

    margin-bottom:18px;

    font-weight:600;

}

.zrcontact-hero h1{

    font-size:70px;

    line-height:1.05;

    margin-bottom:25px;

}

.zrcontact-hero h1 span{

    color:var(--zr-gold);

}

.zrcontact-hero p{

    color:#d2d2d2;

    line-height:1.9;

    max-width:520px;

    font-size:17px;

}



/*================ CONTACT =================*/

.zrcontact-wrapper{

    padding:110px 0;

    background:#fff;

}

body.dark .zrcontact-wrapper{
    background:#111;
}

.zrcontact-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:45px;

}



/*================ LEFT CARD =================*/

.zrcontact-card{

    background:#191919;

    border-radius:28px;

    padding:45px;

    box-shadow:var(--zr-shadow);

}

.zrcontact-card h2{

    font-size:33px;

    margin-bottom:15px;

}

.zrcontact-desc{

    color:#bdbdbd;

    line-height:1.8;

    margin-bottom:40px;

}

.zrcontact-item{

    display:flex;

    gap:22px;

    margin-bottom:35px;

}

.zrcontact-icon{

    width:62px;

    height:62px;

    border-radius:18px;

    background:rgba(199,163,90,.12);

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--zr-gold);

    font-size:22px;

    transition:var(--zr-speed);

}

.zrcontact-item:hover .zrcontact-icon{

    background:var(--zr-gold);

    color:#111;

    transform:translateY(-5px);

}

.zrcontact-item h4{

    margin-bottom:8px;

}

.zrcontact-item p{

    color:#c9c9c9;

}

.zrcontact-item span{

    color:#999;

    font-size:14px;

}

.zrcontact-socials{

    margin-top:45px;

    display:flex;

    gap:15px;

}

.zrcontact-socials a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#222;

    color:white;

    transition:.35s;

    text-decoration:none;

}

.zrcontact-socials a:hover{

    background:var(--zr-gold);

    color:#111;

}



/*================ FORM =================*/

.zrcontact-formbox{

    background:#191919;

    border-radius:28px;

    padding:50px;

    box-shadow:var(--zr-shadow);

}

.zrcontact-formbox h2{

    font-size:34px;

    margin-bottom:12px;

}

.zrcontact-formbox>p{

    color:#bbb;

    margin-bottom:40px;

}

.zrcontact-double{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

}

.zrcontact-field{

    margin-bottom:28px;

}

.zrcontact-field label{

    display:block;

    margin-bottom:12px;

    font-weight:600;

}

.zrcontact-field input,

.zrcontact-field textarea{

    width:100%;

    background:#222;

    border:none;

    outline:none;

    border-radius:15px;

    padding:18px 20px;

    color:white;

    font-size:15px;

    transition:.35s;

}

.zrcontact-field textarea{

    resize:none;

}

.zrcontact-field input:focus,

.zrcontact-field textarea:focus{

    background:#292929;

    box-shadow:0 0 0 2px var(--zr-gold);

}

.zrcontact-button{

    border:none;

    background:var(--zr-gold);

    color:#111;

    padding:18px 42px;

    border-radius:14px;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.zrcontact-button:hover{

    background:#fff;

    transform:translateY(-4px);

}
/*==================================
        RESPONSIVE
==================================*/

/* 1200px */
@media (max-width:1200px){

    .zrcontact-grid{

        grid-template-columns:360px 1fr;

        gap:30px;

    }

    .zrcontact-hero h1{

        font-size:58px;

    }

}


/* 992px */
@media (max-width:992px){

    .zrcontact-hero{

        height:520px;

    }

    .zrcontact-grid{

        grid-template-columns:1fr;

    }

    .zrcontact-card{

        order:2;

    }

    .zrcontact-formbox{

        order:1;

    }

}


/* 768px */
@media (max-width:768px){

    .zrcontact-wrapper{

        padding:70px 0;

    }

    .zrcontact-hero{

        height:420px;

        text-align:center;

    }

    .zrcontact-hero-content{

        max-width:100%;

    }

    .zrcontact-breadcrumb{

        justify-content:center;

    }

    .zrcontact-hero h1{

        font-size:42px;

    }

    .zrcontact-hero p{

        max-width:100%;

        font-size:15px;

    }

    .zrcontact-double{

        grid-template-columns:1fr;

    }

    .zrcontact-card,

    .zrcontact-formbox{

        padding:30px;

    }

}


/* 576px */
@media (max-width:576px){

    .zrcontact-hero{

        height:370px;

        padding:0 20px;

    }

    .zrcontact-hero h5{

        font-size:13px;

    }

    .zrcontact-hero h1{

        font-size:33px;

    }

    .zrcontact-hero p{

        font-size:14px;

        line-height:1.7;

    }

    .zrcontact-card h2,

    .zrcontact-formbox h2{

        font-size:28px;

    }

    .zrcontact-item{

        gap:15px;

    }

    .zrcontact-icon{

        width:50px;

        height:50px;

        font-size:18px;

        border-radius:14px;

    }

    .zrcontact-button{

        width:100%;

    }

}


/* 420px */
@media (max-width:420px){

    .zrcontact-card,

    .zrcontact-formbox{

        padding:22px;

        border-radius:18px;

    }

    .zrcontact-hero{

        height:340px;

    }

    .zrcontact-hero h1{

        font-size:28px;

    }

    .zrcontact-socials{

        justify-content:center;

        flex-wrap:wrap;

    }

}

/*==================================
        JOURNEY BANNER
==================================*/

.zzrjourney-banner{

    position:relative;

    width:100%;

    padding:140px 0;

    overflow:hidden;

    background:
        linear-gradient(rgba(0,0,0,.55),
        rgba(0,0,0,.65)),
         url("../images/Switzerland.jpg");

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

}

.zzrjourney-banner1{

    position:relative;

    width:100%;

    padding:140px 0;

    overflow:hidden;

    background:
        linear-gradient(rgba(0,0,0,.55),
        rgba(0,0,0,.65)),
         url("../images/i4.jpg");

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

}

.zzrjourney-layer{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top right,
    rgba(199,163,90,.25),
    transparent 35%),

    linear-gradient(to right,
    rgba(0,0,0,.65),
    rgba(0,0,0,.35));

}

.zzrjourney-content{

    position:relative;

    z-index:2;

    max-width:760px;

}

.zzrjourney-mini{

    display:inline-block;

    padding:8px 20px;

    border-radius:40px;

    background:rgba(199,163,90,.15);

    color:#C7A35A;

    letter-spacing:2px;

    font-size:13px;

    margin-bottom:25px;

}

.zzrjourney-content h2{

    font-size:62px;

    line-height:1.1;

    margin-bottom:25px;

    color:#fff;

}

.zzrjourney-content p{

    max-width:620px;

    font-size:17px;

    line-height:1.8;

    color:#d7d7d7;

    margin-bottom:40px;

}

.zzrjourney-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.zzrjourney-btn-primary{

    padding:18px 36px;

    border-radius:14px;

    background:#C7A35A;

    color:#111;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.zzrjourney-btn-primary:hover{

    transform:translateY(-6px);

    background:white;

}

.zzrjourney-btn-secondary{

    padding:18px 36px;

    border-radius:14px;

    border:2px solid rgba(255,255,255,.3);

    color:white;

    text-decoration:none;

    transition:.35s;

}

.zzrjourney-btn-secondary:hover{

    background:white;

    color:#111;

}
@media(max-width:768px){

    .zzrjourney-banner{

        padding:90px 0;

        background-attachment:scroll;

    }

    .zzrjourney-content{

        text-align:center;

        max-width:100%;

    }

    .zzrjourney-content h2{

        font-size:40px;

    }

    .zzrjourney-content p{

        font-size:15px;

    }

    .zzrjourney-buttons{

        justify-content:center;

    }

}

@media(max-width:480px){

    .zzrjourney-content h2{

        font-size:30px;

    }

    .zzrjourney-btn-primary,

    .zzrjourney-btn-secondary{

        width:100%;

        text-align:center;

    }

}

/*==========================================
            ABOUT HERO
==========================================*/

.zrabout-hero{

    position:relative;

    height:620px;

    display:flex;

    align-items:center;

    background:

    linear-gradient(rgba(0,0,0,.55),
    rgba(0,0,0,.65)),

    url(images/about-bg.jpg);

    background-size:cover;

    background-position:center;

    overflow:hidden;

}

.zrabout-hero-overlay{

    position:absolute;

    inset:0;

        background: radial-gradient(circle at right, rgba(199, 163, 90, .18), #000000 45%);

}

.zrabout-hero-content{

    position:relative;

    z-index:2;

    max-width:720px;

}

.zrabout-breadcrumb{

    display:flex;

    gap:10px;

    margin-bottom:25px;

    font-size:14px;

}

.zrabout-breadcrumb a{

    color:#ddd;

    text-decoration:none;

}

.zrabout-breadcrumb span{

    color:#999;

}

.zrabout-mini-title{

    display:inline-block;

    color:#C7A35A;

    letter-spacing:3px;

    margin-bottom:20px;

}

.zrabout-hero h1{

    font-size:68px;

    line-height:1.1;

    margin-bottom:25px;

    color:white;

}

.zrabout-hero p{

    max-width:600px;

    color:#ddd;

    line-height:1.9;

}



/*==========================================
        COMPANY
==========================================*/

.zrabout-company{

    padding:120px 0;

    background:#fff;

}

body.dark .zrabout-company{
    background:#111;
}

.zrabout-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.zrabout-image{

    position:relative;

}

.zrabout-image img{

    width:100%;

    border-radius:30px;

    display:block;

}

.zrabout-exp{

    position:absolute;

    bottom:35px;

    right:-30px;

    background:#C7A35A;

    color:#111;

    padding:30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 20px 40px rgba(0,0,0,.3);

}

.zrabout-exp h2{

    font-size:44px;

}

.zrabout-exp span{

    font-weight:600;

}

.zrabout-tag{

    color:#C7A35A;

    letter-spacing:3px;

}

.zrabout-content h2{

    font-size:48px;

    margin:18px 0 25px;

    color:#111;

}

body.dark .zrabout-content h2{
    color:#fff;
}

.zrabout-content p{

    color:#555;

    line-height:1.9;

    margin-bottom:18px;

}

body.dark .zrabout-content p{
    color:#999;
}

.zrabout-feature-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-top:45px;

}

.zrabout-feature{

    display:flex;

    gap:18px;

    padding:22px;

    border-radius:18px;

    background:#fff;

    border: 1px solid #ccc;
    box-shadow: x-offset y-offset blur spread color;
    transition:.35s;

}

body.dark .zrabout-feature{
    background:#181818;
    border: none;
}

.zrabout-feature:hover{

    transform:translateY(-8px);

    background:#ccc;

}

.zrabout-feature i{

    width:60px;

    height:60px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(199,163,90,.15);

    color:#C7A35A;

    font-size:22px;

}

.zrabout-feature h4{

    color:#111;

    margin-bottom:6px;

}

body.dark .zrabout-feature h4{
    color:#fff;
}

.zrabout-feature p{

    margin:0;

    color:#555;

}

@media(max-width:992px){

    .zrabout-grid{

        grid-template-columns:1fr;

    }

    .zrabout-content{

        margin-top:40px;

    }

}

@media(max-width:768px){

    .zrabout-hero{

        height:450px;

        text-align:center;

    }

    .zrabout-hero h1{

        font-size:42px;

    }

    .zrabout-feature-grid{

        grid-template-columns:1fr;

    }

    .zrabout-exp{

        right:20px;

        bottom:20px;

        padding:20px;

    }

}

@media(max-width:480px){

    .zrabout-company{

        padding:80px 0;

    }

    .zrabout-content h2{

        font-size:32px;

    }

    .zrabout-hero h1{

        font-size:30px;

    }

}

/*==================================
        WHY CHOOSE US
==================================*/

.zrwhy-section{

    padding:120px 0;

    background:#fff;

}

body.dark .zrwhy-section{
    background:#111;
}

.zrwhy-heading{

    max-width:700px;

    text-align:center;

    margin:auto;

    margin-bottom:70px;

}

.zrwhy-heading span{

    color:#C7A35A;

    letter-spacing:3px;

    font-size:14px;

}

.zrwhy-heading h2{

    font-size:52px;

    color:#111;

    margin:20px 0;

}

body.dark .zrwhy-heading h2{
    color:#fff;
}

.zrwhy-heading p{

    color:#555;

    line-height:1.9;

}

body.dark .zrwhy-heading p{
    color:#999;
}

.zrwhy-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.zrwhy-card{

    background:#fff;

    padding:40px 30px;

    border-radius:22px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(0,0,0,.55);

}

body.dark .zrwhy-card{
    background:#161616;
    border:none;

}

.zrwhy-card:hover{

    transform:translateY(-10px);

    background:#ccc;

}

.zrwhy-card i{

    width:75px;

    height:75px;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:20px;

    background:rgba(199,163,90,.15);

    color:#C7A35A;

    font-size:28px;

    margin-bottom:25px;

}

.zrwhy-card h3{

    color:#111;

    margin-bottom:15px;

}

body.dark .zrwhy-card h3{
    color:#fff;

}

.zrwhy-card p{

    color:#555;

    line-height:1.8;

}

body.dark .zrwhy-card p{
    color:#999;
}

/*==================================
        STATISTICS
==================================*/

.zrstats-section{

    position:relative;

    padding:110px 0;

    background:

    linear-gradient(rgba(0,0,0,.55),
    rgba(0,0,0,.65)),

    url(images/statistics-bg.jpg);

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

}

.zrstats-overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at left,
    rgba(199,163,90,.12),
    transparent 45%);

}

.zrstats-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.zrstats-box{

    text-align:center;

    padding:45px 20px;

    border-radius:22px;

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

}

.zrstats-box h2{

    color:#C7A35A;

    font-size:58px;

    margin-bottom:15px;

}

.zrstats-box p{

    color:white;

    letter-spacing:1px;

}
@media(max-width:992px){

.zrwhy-grid{

grid-template-columns:repeat(2,1fr);

}

.zrstats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.zrwhy-heading h2{

font-size:38px;

}

.zrstats-section{

background-attachment:scroll;

}

}

@media(max-width:576px){

.zrwhy-grid,

.zrstats-grid{

grid-template-columns:1fr;

}

.zrwhy-section{

padding:80px 0;

}

.zrstats-box h2{

font-size:42px;

}

}

/*================ TEAM ================*/

.zrteam-section{

padding:120px 0;
background:#fff;

}

body.dark .zrteam-section{
background:#111;
}

.zrteam-title{

text-align:center;
margin-bottom:70px;

}

.zrteam-title span{

color:#C7A35A;
letter-spacing:3px;

}

.zrteam-title h2{

font-size:50px;
color:#111;
margin:20px 0;

}

body.dark .zrteam-title h2{
color:#fff;
}

.zrteam-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

.zrteam-card{

position:relative;
overflow:hidden;
border-radius:24px;
background:#1a1a1a;
transition:.4s;

}

.zrteam-card img{

width:100%;
height:420px;
object-fit:cover;
display:block;

}

.zrteam-info{

padding:25px;

}

.zrteam-info h3{

color:#fff;

}

.zrteam-info p{

color:#111;

}

.zrteam-info span{

color:#C7A35A;

}

.zrteam-social{

position:absolute;
top:20px;
right:-60px;

display:flex;
flex-direction:column;
gap:12px;

transition:.4s;

}

.zrteam-card:hover .zrteam-social{

right:20px;

}

.zrteam-social a{

width:42px;
height:42px;

display:flex;
justify-content:center;
align-items:center;

background:#C7A35A;
color:#111;

border-radius:50%;

text-decoration:none;

}



/*================ CERTIFICATE ================*/

.zrcert-section{

padding:110px 0;

background:#161616;

}

.zrcert-title{

text-align:center;

margin-bottom:60px;

}

.zrcert-title span{

color:#C7A35A;

}

.zrcert-title h2{

color:white;

font-size:48px;

margin-top:20px;

}

.zrcert-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.zrcert-card{

padding:40px;

background:#1d1d1d;

border-radius:22px;

text-align:center;

transition:.35s;

}

.zrcert-card:hover{

transform:translateY(-10px);

}

.zrcert-card i{

font-size:42px;

color:#C7A35A;

margin-bottom:20px;

}

.zrcert-card h3{

color:white;

}



/*================ CTA ================*/

.zrcta-banner{

position:relative;

padding:130px 0;

background:

linear-gradient(rgba(0,0,0,.6),
rgba(0,0,0,.7)),

url(images/about-banner.jpg);

background-size:cover;

background-position:center;

text-align:center;

}

.zrcta-overlay{

position:absolute;
inset:0;

background:

radial-gradient(circle,
rgba(199,163,90,.15),
transparent);

}

.zrcta-content{

position:relative;

z-index:2;

}

.zrcta-content span{

color:#C7A35A;

letter-spacing:3px;

}

.zrcta-content h2{

font-size:60px;

color:white;

margin:25px 0;

}

.zrcta-content p{

color:#ddd;

margin-bottom:40px;

}

.zrcta-content a{

padding:18px 42px;

background:#C7A35A;

color:#111;

text-decoration:none;

border-radius:15px;

font-weight:700;

transition:.35s;

}

.zrcta-content a:hover{

background:white;

}
@media(max-width:992px){

.zrteam-grid,
.zrcert-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.zrteam-title h2,
.zrcert-title h2,
.zrcta-content h2{

font-size:36px;

}

}

@media(max-width:576px){

.zrteam-grid,
.zrcert-grid{

grid-template-columns:1fr;

}

.zrcta-banner{

padding:80px 20px;

}

.zrcta-content h2{

font-size:28px;

}

.zrcta-content a{

display:inline-block;
width:100%;

}

}

/*==================================
            BLOG
==================================*/

.zrblog-section{

    padding:120px 0;

    background:#fff;

}

body.dark .zrblog-section{
    background:#111;
}

.zrblog-title{

    text-align:center;

    max-width:720px;

    margin:auto;

    margin-bottom:70px;

}

.zrblog-title span{

    color:#C7A35A;

    letter-spacing:3px;

    font-size:14px;

}

.zrblog-title h2{

    color:#111;

    font-size:52px;

    margin:18px 0;

}

body.dark .zrblog-title h2{
    color:#fff;
}

.zrblog-title p{

    color:#555;

    line-height:1.8;

}

body.dark .zrblog-title p{
    color:#999;
}

.zrblog-card{

    display:grid;

    grid-template-columns:45% 55%;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

body.dark .zrblog-card{
  background:#161616;
}

.zrblog-image{

    position:relative;

}

.zrblog-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.zrblog-card:hover img{

    transform:scale(1.08);

}

.zrblog-category{

    position:absolute;

    top:25px;

    left:25px;

    background:#C7A35A;

    color:#111;

    padding:10px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

}

.zrblog-content{

    padding:55px;

}

.zrblog-meta{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

    margin-bottom:30px;

}

.zrblog-meta span{

    color:#555;

    font-size:14px;

}

.zrblog-meta i{

    color:#C7A35A;

    margin-right:8px;

}

.zrblog-content h2{

    color:#111;

    font-size:40px;

    line-height:1.2;

    margin-bottom:25px;

}

body.dark .zrblog-content h2{
    color:#fff;
}

.zrblog-content p{

    color:#555;

    line-height:1.9;

    margin-bottom:35px;

}

body.dark .zrblog-content p{
    color:#999;
}

.zrblog-content a{

    display:inline-flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    color:#C7A35A;

    font-weight:700;

    transition:.35s;

}

.zrblog-content a:hover{

    gap:20px;

}
@media(max-width:992px){

    .zrblog-card{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .zrblog-title h2{

        font-size:38px;

    }

    .zrblog-content{

        padding:35px;

    }

    .zrblog-content h2{

        font-size:30px;

    }

}

@media(max-width:576px){

    .zrblog-section{

        padding:80px 0;

    }

    .zrblog-meta{

        flex-direction:column;

        gap:12px;

    }

    .zrblog-content{

        padding:25px;

    }

    .zrblog-content h2{

        font-size:25px;

    }

}
/*=========================
      TOUR SECTION
==========================*/

.ztp-tour-section{

    background:#fff;

    padding:100px 7%;

}

body.dark .ztp-tour-section{

    background:#111;

}

.ztp-tour-title{

    text-align:center;

    margin-bottom:60px;

}

.ztp-tour-title span{

    color:#e9b200;

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:.85rem;

}

.ztp-tour-title h2{

    color:#111;

    font-size:42px;

    margin:15px 0;

}

body.dark .ztp-tour-title h2{
    color:#fff;
}

.ztp-tour-title p{

    color:#555;

    max-width:650px;

    margin:auto;

    line-height:1.8;

}

/* GRID */

.ztp-tour-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/* CARD */

.ztp-tour-card{

    background:#fff;

    border-radius:22px;
    overflow:hidden;

    transition:.4s;

    border:1px solid rgb(0 0 0 / 65%);

}

body.dark .ztp-tour-card{

    background:#181818;

    border:none;

}

.ztp-tour-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.ztp-tour-image{

    position:relative;

    height:260px;

    overflow:hidden;

}

.ztp-tour-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.ztp-tour-card:hover img{

    transform:scale(1.08);

}

.ztp-tour-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,rgba(0,0,0,.65),transparent);

}

.ztp-tour-badge{

    position:absolute;

    top:20px;

    left:20px;

    z-index:5;

    background:#D4AF37;

    color:#111;

    padding:8px 16px;

    border-radius:40px;

    font-size:.8rem;

    font-weight:600;

}

.ztp-tour-body{

    padding:28px;

}

.ztp-tour-body h3{

    color:#111;

    margin-bottom:10px;

}

body.dark .ztp-tour-body h3{
    color:#fff;
}

.ztp-tour-location{

    color:#D4AF37;

    margin-bottom:20px;

}

.ztp-tour-info{

    display:flex;

    justify-content:space-between;

    color:#bbb;

    margin-bottom:20px;

    font-size:.9rem;

}

.ztp-tour-body p{

    color:#555;

    line-height:1.7;

    margin-bottom:28px;

}

body.dark .ztp-tour-body p{

    color:#999;

    line-height:1.7;

    margin-bottom:28px;

}

.ztp-tour-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.ztp-tour-footer small{

    color:#777;

}

.ztp-tour-footer h4{

    color:#fff;

    margin-top:5px;

    font-size:24px;

}

.ztp-tour-footer a{

    padding:12px 22px;

    border-radius:8px;

    text-decoration:none;

    background:#D4AF37;

    color:#111;

    font-weight:600;

    transition:.3s;

}

.ztp-tour-footer a:hover{

    background:white;

}
@media (max-width:1200px){

.ztp-tour-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media (max-width:768px){

.ztp-tour-section{

padding:70px 20px;

}

.ztp-tour-grid{

grid-template-columns:1fr;

}

.ztp-tour-title h2{

font-size:32px;

}

.ztp-tour-footer{

flex-direction:column;

gap:18px;

align-items:flex-start;

}

.ztp-tour-footer a{

width:100%;

text-align:center;

}

}
@media(max-width:600px){
    .contact-btn{
        gap:20px;
    }
}

/* =========================
   HEADER
========================= */

.header{
    height:70px;
    padding:0 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#fff;
}

/* Desktop menu */

.desktop-menu{
    display:flex;
    gap:30px;
}

.desktop-menu a{
    text-decoration:none;
    color:#fff;
    font-weight:500;
}

/* =========================
   HAMBURGER BUTTON
========================= */

.menu-btn{
    width:52px;
    height:52px;
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:6px;
    background: linear-gradient(to right, #b58a48, #966821);
    border:none;
    border-radius:8px;
    color:#fff;
    font-size:26px;
    cursor:pointer;
}

/* 3 ta oq chiziq */

.menu-btn span{
    width:26px;
    height:3px;
    background:#fff;
    border-radius:10px;
    transition:.3s;
}

/* =========================
   MOBILE OVERLAY
========================= */

.mobile-menu{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.96);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.35s ease;

    z-index:9999;
}

.mobile-menu.active{
    opacity:1;
    visibility:visible;
}

/* Menu */

.mobile-menu nav{
    display:flex;
    flex-direction:column;
    gap:28px;
    text-align:center;
    background-color:none;
    width:100%;
}

.mobile-menu nav a{
    color:#fff;
    text-decoration:none;
    font-size:32px;
    font-weight:600;
    transition:.3s;
}

.mobile-menu nav a:hover{
    color:#D4AF37;
}

/* =========================
   CLOSE BUTTON
========================= */

.close-btn{
    position:absolute;
    top:25px;
    right:20px;

    width:50px;
    height:50px;

    background: linear-gradient(to right, #b58a48, #966821);
    border:none;
    border-radius:8px;

    color:#fff;
    font-size:28px;
    cursor:pointer;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:768px){

    .desktop-menu{
        display:none;
    }

    .menu-btn{
        display:flex;
    }

}

@media (min-width:769px){

    .menu-btn{
        display:none;
    }

    .mobile-menu{
        display:none;
    }
    .topbar .left, .topbar .right {
        gap: 10px;
    }
}