
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins', sans-serif;
}

body{overflow-x:hidden;}

/* NAV */

/* ===========================
   COLORS
=========================== */

:root{

--primary:#0F3D5E;
--secondary:#D4A017;
--cream:#F5E6C8;
--dark:#111;
--white:#fff;

}

/* ===========================
   NAVBAR
=========================== */

.navbar{

position:fixed;
top:0;
left:0;

width:100%;

display:flex;
justify-content:space-between;
align-items:center;

padding:10px 6%;

background:rgba(15,61,94,.55);

backdrop-filter:blur(12px);

z-index:999;

}

.logo img{

height:52px;
border-radius:12px;
}

.nav-links{

display:flex;
gap:30px;
list-style:none;

}

.nav-links a{

text-decoration:none;
color:white;
font-weight:500;

position:relative;

}

.nav-links a::after{

content:"";

position:absolute;
left:0;
bottom:-5px;

width:0;
height:2px;

background:var(--secondary);

transition:.3s;

}

.nav-links a:hover::after,
.nav-links a.active::after{

width:100%;

}

.nav-links.active{
    display:flex;
}

.hamburger{

display:none;

    cursor:pointer;
}

.hamburger span{
    display:block;
    width:25px;
    height:3px;
    margin:5px 0;
    background:white;
    border-radius:3px;
}

/* HERO */
.hero{
height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
background:url("img/desti_banner.webp") center/cover;
position:relative;
}

.hero::after{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.5);
}

.hero-content{position:relative;z-index:1;}

.btn{
padding:12px 25px;
background:#d4a017;
color:black;
display:inline-block;
margin-top:15px;
border-radius:30px;
text-decoration:none;
}
.btn:hover{
    transform:translateY(3px);
}

/* Process */
.travel-process{
    padding:80px 8%;
    background:#f5f7fa;
}

.process-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.process-image{
    order:1;
}

.process-card{
    order:2;
}

.process-steps{
    list-style:none;
    padding:0;
}

.process-steps li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin:14px 0;
    font-size:1rem;
    color:#333;
    line-height:1.6;
}

.process-steps i{
    color:#d4a017;
    font-size:1.2rem;
    margin-top:3px;
    min-width:20px;
}

/* LEFT CARD */
.process-card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.process-card h2{
    margin-bottom:20px;
    color:#0f3d5e;
}

.process-card ul{
    list-style:none;
}

.process-card li{
    margin:12px 0;
    font-size:1rem;
    color:#333;
    line-height:1.6;
}

/* RIGHT IMAGE */
.process-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* MOBILE */
@media(max-width:768px){

    .process-container{
        grid-template-columns:1fr;
    }

}

/* ACCORDION */

.packages{
    padding:80px 8%;
    background:linear-gradient(180deg, #eef4fb 0%, #f3e5c8 100%);
}

.package-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:40px;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:2.2rem;
    color:#0f3d5e;
    font-weight:700;
    position:relative;
    display:inline-block;
}

.section-title h2::after{
    content:"";
    width:60%;
    height:3px;
    background:#d4a017;
    position:absolute;
    left:20%;
    bottom:-10px;
    border-radius:10px;
}

.package-card{
    background:linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);

    padding:30px;
    border-radius:18px;
    box-shadow:0 12px 28px rgba(0,0,0,0.08);
    cursor:pointer;
    transition:0.35s ease;
    position:relative;
    overflow:hidden;

    border:1px solid rgba(15,61,94,0.08);
}

.package-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg, #d4a017, #f1d27a, #d4a017);
}


.package-card:hover{
    transform:translateY(-10px);
    box-shadow:0 24px 45px rgba(15,61,94,0.18);
    border:1px solid rgba(212,160,23,0.35);
}

.package-tag{

    position:absolute;

    top:18px;

    left:18px;

    background:linear-gradient(135deg,#C62828,#8E0000);

    color:#160606;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    letter-spacing:.4px;

    box-shadow:0 6px 15px rgba(0,0,0,.25);

    z-index:10;

}


.package-card h3{
    font-size:1.32rem;
    margin-bottom:12px;
    color:#0f3d5e;
    line-height:1.35;
    font-weight:700;
}

.package-card p{
    margin:7px 0;
    color:#4b5563;
    line-height:1.5;
    font-size:0.97rem;
}

.package-card span{
    display:inline-block;
    margin-top:16px;
    color:#0f3d5e;
    font-weight:700;
    font-size:1.05rem;
    padding:10px 16px;
    border-radius:999px;
    background:linear-gradient(135deg, #f8edd1, #f2dfaa);
    border:1px solid rgba(212,160,23,0.35);
    transition:0.3s ease;
    box-shadow:0 6px 16px rgba(212,160,23,0.12);
}

.package-card:hover span{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(212,160,23,0.18);
}


.package-card img{
    width:100%;
    height:190px;
    object-fit:cover;
    border-radius:14px;
    margin-bottom:18px;
    transition:0.4s ease;
    display:block;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.package-card:hover img{
    transform:scale(1.04);
    filter:brightness(0.92) saturate(1.05);
}


.modal{
    display:none;
    position:fixed;
    inset:0;

    background:rgba(0,0,0,0.6);
    backdrop-filter:blur(6px);

    justify-content:center;
    align-items:center;

    overflow:hidden;

    z-index:9999;
}

#modalItinerary p{
    margin-top:12px;
    line-height:1.7;
}

.day-card{

    background:#f8f8f8;

    border-left:4px solid #d4a017;

    padding:15px;

    margin:15px 0;

    border-radius:12px;

    box-shadow:0 3px 10px rgba(0,0,0,.05);

}

.day-card strong{

    color:#0f3d5e;
    display:block;
    margin-bottom:8px;

}


.modal-content{
    background:white;
    padding:25px;
    border-radius:15px;
    width:90%;
    max-width:650px;
    max-height:90vh;

    overflow-y:auto;
    overflow-x:hidden;

    overscroll-behavior:contain;

    -webkit-overflow-scrolling:touch;

    position:relative;
}

.close{
    position:absolute;
    top:10px;
    right:15px;
    font-size:24px;
    cursor:pointer;
}

.price{
    color:#d4a017;
    font-size:1.4rem;
    font-weight:700;
}

.available{
    color:#1e88e5;
    font-weight:600;
}

.not-available{
    color:#e53935;
    font-weight:600;
}




/*=========================================
     EXCLUSIVE TRAVEL EXPERIENCES
=========================================*/

.experience-section{

    padding:90px 8%;
    background:#f8f9fb;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;
    color:#0b3d91;
    margin-bottom:15px;

}

.section-title p{

    max-width:850px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:18px;

}

.experience-container{

    display:flex;
    flex-direction:column;
    gap:40px;

}

.experience-card{

    display:flex;
    align-items:center;

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s ease;

}

.experience-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.experience-image{

    width:42%;
    flex-shrink:0;

}

.experience-image img{

    width:100%;
    height:100%;
    display:block;
    object-fit:cover;

}

.experience-content{

    width:58%;

    padding:40px;

}

.experience-content h3{

    font-size:32px;

    color:#0b3d91;

    margin-bottom:18px;

}

.experience-content p{

    font-size:18px;

    color:#555;

    line-height:1.9;

}

.experience-note{

    margin-top:70px;

    background:#fff;

    border-radius:20px;

    padding:45px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.experience-note h3{

    color:#0b3d91;

    font-size:30px;

    margin-bottom:15px;

}

.experience-note p{

    color:#555;

    font-size:18px;

    line-height:1.8;

}

/*=========================================
            MOBILE RESPONSIVE
=========================================*/

@media(max-width:991px){

.experience-card{

    flex-direction:column;

}

.experience-image{

    width:100%;

}

.experience-image img{

    width:100%;

}

.experience-content{

    width:100%;

    padding:30px;

}

.experience-content h3{

    font-size:26px;

}

}

@media(max-width:768px){

.experience-section{

    padding:70px 6%;

}

.section-title h2{

    font-size:34px;

}

.section-title p{

    font-size:16px;

}

.experience-content{

    padding:25px;

}

.experience-content h3{

    font-size:24px;

}

.experience-content p{

    font-size:16px;

}

.experience-note{

    padding:30px 20px;

}

.experience-note h3{

    font-size:24px;

}

.experience-note p{

    font-size:16px;

}

}



/* ================= HOTEL ASSISTANCE ================= */

.gold-divider{
    width:200px;
    height:4px;
    background:#d4a017;
    margin:60px auto 40px;
    border-radius:10px;
}

.hotel-assistance{
    text-align:center;
    padding:20px 8% 60px;
}

.hotel-card{
    max-width:500px;
    margin:auto;
    background:white;
    padding:35px;
    border-radius:18px;
    box-shadow:0 20px 25px rgba(0,0,0,0.08);
    cursor:pointer;
    transition:0.3s ease;
    
    position:relative;
    overflow:hidden;


}

.hotel-card:hover{ 
   transform:translateY(-8px);
    box-shadow:0 40px 40px rgba(0,0,0,.30);
    border:2px solid rgba(212,160,23,0.4);
}

.hotel-card i{
    font-size:2.5rem;
    color:#d4a017;
    margin-bottom:15px;
}

.hotel-card h3{
    color:#0f3d5e;
    margin-bottom:10px;
}

.hotel-card p{
    color:#666;
}




/* ================= CTA SECTION (Whstsapp) ================= */


.cta{
background:#eef1f4;
color:rgb(4, 4, 4);
text-align:center;
padding:60px;

}

/* ================= TOUR HIGHLIGHTS ================= */

.highlights{
    padding:80px 8%;
    background:#f5f7fa;
}

.highlights .section-title{
    text-align:center;
    margin-bottom:50px;
}

.highlights .section-title h2{
    font-size:2.2rem;
    color:#0f3d5e;
}

.highlights .section-title p{
    color:#666;
    margin-top:10px;
}

.highlight-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.highlight-card{
    position:relative;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s ease;
    background:white;
}

.highlight-card img{
    width:100%;
    height:200px;
    object-fit:cover;
    display:block;
}

.highlight-content{
    padding:20px;
    text-align:center;
}

.highlight-content i{
    font-size:1.5rem;
    color:#d4a017;
    margin-bottom:10px;
}

.highlight-content h3{
    margin:10px 0;
    color:#0f3d5e;
}

.highlight-content p{
    font-size:0.95rem;
    color:#555;
    line-height:1.5;
}

/* hover effect */
.highlight-card:hover{
    transform:translateY(-8px);
}


/* FOOTER */
.simple-footer{

background:#0f2d4a;

color:white;

text-align:center;

padding:60px 20px;

display:flex;

flex-direction:column;

align-items:center;

gap:18px;

}

.simple-footer .footer-logo img{

height:80px;

border-radius:15px;

}

.footer-tagline{

font-size:16px;

opacity:0.9;

}

.footer-social{

display:flex;

gap:20px;

font-size:20px;

}

.footer-social a{

color:white;

transition:0.3s;

}

.footer-social a:hover{

color:#d4a017;

transform:translateY(-3px);

}

.footer-copy{

font-size:14px;

opacity:0.8;

margin-top:10px;

}

/* MOBILE */
@media(max-width:768px){
.nav-links{
    position:absolute;
    top:70px;
    left:50%;
    transform:translateX(-50%);
    width:92%;
    background:linear-gradient(135deg, rgba(15,61,94,0.96), rgba(9,35,55,0.96));
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    flex-direction:column;
    display:none;
    padding:14px;
    border-radius:0 0 18px 18px;
    box-shadow:0 18px 35px rgba(0,0,0,0.22);
    border:1px solid rgba(255,255,255,0.08);
    gap:8px;
}

.nav-links li{
    width:100%;
}

.nav-links a{
    display:block;
    width:100%;
    padding:12px 16px;
    border-radius:12px;
    transition:0.3s ease;
    color:#fff;
    position:relative;
}

.nav-links a:hover,
.nav-links a.active{
    background:rgba(255,255,255,0.06);
    color:#fff;
    transform:translateX(4px);
}

.nav-links a::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:3px;
    height:0;
    background:#d4a017;
    border-radius:10px;
    transition:0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before{
    height:60%;
}

.hotel-card{
        padding:25px;
}

.nav-links.active{display:flex;}

.hamburger{display:block;}


}

@media(max-width:991px){

.experience-card{

    flex-direction:column;

}

.experience-image{

    width:100%;

}

.experience-image img{

    width:100%;

}

.experience-content{

    width:100%;

    padding:30px;

}

.experience-content h3{

    font-size:26px;

}

}

@media(max-width:768px){

.experience-section{

    padding:70px 6%;

}

.section-title h2{

    font-size:34px;

}

.section-title p{

    font-size:16px;

}

.experience-content{

    padding:25px;

}

.experience-content h3{

    font-size:24px;

}

.experience-content p{

    font-size:16px;

}

.experience-note{

    padding:30px 20px;

}

.experience-note h3{

    font-size:24px;

}

.experience-note p{

    font-size:16px;

}

}







    




