/* ============================
   RESET
============================ */

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

html{
    scroll-behavior:smooth;
}

body{

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

    background:#f6fbff;

    color:#333;

    overflow-x:hidden;

}

/* ============================
        NAVBAR
============================ */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 8%;

    background:rgba(0,0,0,.25);

    backdrop-filter:blur(12px);

    z-index:9999;

    transition:.4s;

}

.navbar.scrolled{

    background:#0a4d8f;

    box-shadow:0 5px 15px rgba(0,0,0,.25);

}

.logo-area{

    display:flex;

    align-items:center;

}

.logo-area img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

    margin-right:12px;

    border:3px solid white;

}

.logo-area h2{

    color:white;

    font-size:22px;

}

.logo-area span{

    color:white;

    font-size:13px;

}

.navbar ul{

    display:flex;

    list-style:none;

}

.navbar li{

    margin-left:28px;

}

.navbar a{

    text-decoration:none;

    color:white;

    font-weight:600;

    transition:.3s;

}

.navbar a:hover{

    color:#ffd34d;

}

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

.hero{

    width:100%;

    height:100vh;

    position:relative;

    overflow:hidden;

}

.slider{

    width:100%;

    height:100%;

    position:absolute;

}

.slide{

    width:100%;

    height:100%;

    object-fit:cover;

    position:absolute;

    opacity:0;

    transition:1s;

}

.slide.active{

    opacity:1;

}

.overlay{

    position:absolute;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.45);

}

.hero-content{

    position:relative;

    z-index:5;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    height:100%;

    color:white;

    padding:20px;

}

.hero-logo{

    width:120px;

    height:120px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid white;

    margin-bottom:20px;

}

.hero-content h1{

    font-size:58px;

    max-width:850px;

    line-height:1.2;

}

.hero-content p{

    max-width:760px;

    margin-top:25px;

    font-size:19px;

    line-height:1.8;

}

/* ============================
        BUTTON
============================ */

.hero-button{

    margin-top:35px;

}

.btn{

    display:inline-block;

    background:#0099ff;

    color:white;

    padding:15px 35px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    margin-right:15px;

    transition:.3s;

}

.btn:hover{

    background:#0075c9;

    transform:translateY(-4px);

}

.btn2{

    display:inline-block;

    border:2px solid white;

    color:white;

    padding:15px 35px;

    border-radius:40px;

    text-decoration:none;

    transition:.3s;

}

.btn2:hover{

    background:white;

    color:#0a4d8f;

}

/* ============================
        STATISTIK
============================ */

.statistik{

    display:grid;

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

    gap:20px;

    width:90%;

    margin:auto;

    margin-top:-70px;

    position:relative;

    z-index:10;

}

.item{

    background:white;

    border-radius:20px;

    padding:30px;

    text-align:center;

    box-shadow:0 12px 25px rgba(0,0,0,.12);

}

.item h2{

    color:#0a7be7;

    font-size:38px;

}

.item p{

    margin-top:8px;

    color:#666;

}

/* =====================================
            ABOUT
===================================== */

.about{

    width:90%;

    margin:100px auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about img{

    width:100%;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.about h4{

    color:#0b83ff;

    font-size:18px;

    margin-bottom:10px;

}

.about h2{

    font-size:40px;

    margin-bottom:20px;

    color:#1f2937;

}

.about p{

    line-height:1.9;

    color:#666;

    font-size:17px;

}

.check{

    margin-top:30px;

    display:grid;

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

    gap:20px;

}

.check div{

    display:flex;

    align-items:center;

    font-weight:600;

}

.check i{

    color:#13b65c;

    margin-right:10px;

    font-size:20px;

}

/* =====================================
        DESTINATION
===================================== */

.destination{

    width:90%;

    margin:100px auto;

}

.destination h2{

    text-align:center;

    font-size:40px;

    margin-bottom:50px;

    color:#1f2937;

}

.card-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.18);

}

.card-image{

    overflow:hidden;

}

.card-image img{

    width:100%;

    height:230px;

    object-fit:cover;

    transition:.6s;

}

.card:hover img{

    transform:scale(1.1);

}

.card-body{

    padding:25px;

}

.card-body h3{

    font-size:25px;

    margin-bottom:15px;

}

.card-body p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.card-btn{

    display:inline-block;

    padding:12px 28px;

    background:#0b83ff;

    color:white;

    text-decoration:none;

    border-radius:40px;

    transition:.3s;

}

.card-btn:hover{

    background:#005dc1;

}

/* =====================================
      SERVICE
===================================== */

.service{

    background:linear-gradient(135deg,#0d6efd,#3ab4ff);

    padding:100px 8%;

    color:white;

}

.service h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

    color:white;

}

.service-box{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.box{

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

    border-radius:20px;

    padding:40px;

    text-align:center;

    backdrop-filter:blur(8px);

    transition:.4s;

}

.box:hover{

    transform:translateY(-10px);

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

}

.box i{

    font-size:50px;

    margin-bottom:20px;

}

.box h3{

    margin-bottom:15px;

    font-size:25px;

}

.box p{

    line-height:1.8;

}

/* =====================================
         GALLERY
===================================== */

.gallery-section{

    width:90%;

    margin:100px auto;

}

.gallery-section h2{

    text-align:center;

    font-size:40px;

    margin-bottom:50px;

}

.gallery{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

}

.gallery img{

    width:100%;

    height:250px;

    object-fit:cover;

    border-radius:18px;

    cursor:pointer;

    transition:.5s;

    box-shadow:0 12px 25px rgba(0,0,0,.12);

}

.gallery img:hover{

    transform:scale(1.05);

}

/* =====================================
            REVIEW
===================================== */

.review-section{

    padding:100px 8%;

    background:#f7fbff;

}

.title{

    text-align:center;

    margin-bottom:60px;

}

.title h4{

    color:#0b83ff;

    letter-spacing:2px;

    margin-bottom:10px;

}

.title h2{

    font-size:42px;

    color:#1f2937;

    margin-bottom:15px;

}

.title p{

    color:#666;

    max-width:650px;

    margin:auto;

    line-height:1.8;

}

.review-slider{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}

.review-card{

    width:350px;

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.review-card:hover{

    transform:translateY(-12px);

}

.review-card img{

    width:90px;

    height:90px;

    object-fit:cover;

    border-radius:50%;

    margin-bottom:20px;

    border:4px solid #0b83ff;

}

.review-card h3{

    margin-bottom:5px;

}

.review-card span{

    color:#777;

}

.star{

    color:#ffc107;

    font-size:20px;

    margin:15px 0;

}

.review-card p{

    line-height:1.8;

    color:#666;

}

/* =====================================
              FAQ
===================================== */

.faq{

    width:90%;

    margin:100px auto;

}

.faq-box{

    display:grid;

    gap:25px;

}

.faq-item{

    background:white;

    border-radius:15px;

    padding:25px;

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

}

.faq-item h3{

    color:#0b83ff;

    margin-bottom:12px;

}

.faq-item p{

    color:#666;

    line-height:1.8;

}

/* =====================================
          CTA
===================================== */

.cta{

    background:linear-gradient(135deg,#0b83ff,#0065d1);

    padding:90px 20px;

    text-align:center;

    color:white;

}

.cta h2{

    font-size:42px;

    margin-bottom:20px;

}

.cta p{

    font-size:18px;

    margin-bottom:35px;

}

.cta-btn{

    display:inline-block;

    background:white;

    color:#0b83ff;

    text-decoration:none;

    padding:16px 35px;

    border-radius:50px;

    font-weight:bold;

    transition:.3s;

}

.cta-btn:hover{

    transform:translateY(-5px);

}

/* =====================================
          FOOTER
===================================== */

footer{

    background:#081b31;

    color:white;

    padding-top:70px;

}

.footer-container{

    width:90%;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

}

.footer-logo{

    width:90px;

    border-radius:50%;

    margin-bottom:15px;

}

.footer-about p{

    line-height:1.8;

    color:#c9d4df;

}

.footer-menu{

    display:flex;

    flex-direction:column;

}

.footer-menu a{

    color:#d7e2ed;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;

}

.footer-menu a:hover{

    color:#46b2ff;

}

.footer-contact p{

    margin-bottom:15px;

    color:#d7e2ed;

}

.footer-contact i{

    color:#46b2ff;

    margin-right:10px;

}

.footer-social a{

    display:block;

    color:white;

    text-decoration:none;

    margin-bottom:15px;

}

.footer-social i{

    margin-right:10px;

}

.copyright{

    margin-top:50px;

    padding:25px;

    text-align:center;

    background:#061423;

    color:#cfd8df;

}

/* =====================================
     WHATSAPP FLOAT
===================================== */

.wa-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.3);

    z-index:9999;

    animation:waFloat 2s infinite;

}

@keyframes waFloat{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}

/* =====================================
       LIGHTBOX
===================================== */

.lightbox{

    position:fixed;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.9);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.lightbox img{

    max-width:90%;

    max-height:90%;

    border-radius:15px;

}

.close{

    position:absolute;

    top:30px;

    right:40px;

    color:white;

    font-size:45px;

    cursor:pointer;

}

/* =====================================
        RESPONSIVE
===================================== */

@media(max-width:991px){

.navbar{

flex-direction:column;

padding:20px;

}

.navbar ul{

margin-top:15px;

flex-wrap:wrap;

justify-content:center;

}

.hero-content h1{

font-size:42px;

}

.about{

grid-template-columns:1fr;

}

.statistik{

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

}

}

@media(max-width:768px){

.hero-content h1{

font-size:34px;

}

.hero-content p{

font-size:16px;

}

.statistik{

grid-template-columns:1fr;

}

.check{

grid-template-columns:1fr;

}

.destination h2,

.gallery-section h2,

.service h2,

.title h2,

.cta h2{

font-size:30px;

}

}

.card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:transform .4s ease, box-shadow .4s ease;
    will-change:transform;
    backface-visibility:hidden;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.card-image img{
    display:block;
    width:100%;
    height:230px;
    object-fit:cover;
    transition:transform .6s ease;
    backface-visibility:hidden;
}

.card:hover .card-image img{
    transform:scale(1.05);
}