*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f5f6fb;
color:#333;
}


/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 80px;
background:white;
}

.logo{
font-weight:600;
color:#f5b400;
font-size:20px;
}

.nav-links{
display:flex;
gap:30px;
list-style:none;
font-size:14px;
}

.login-btn{
background:#2f3d8f;
color:white;
border:none;
padding:10px 20px;
border-radius:20px;
cursor:pointer;
}


/* TITLE */

.title-section{
padding:40px 80px 20px;
}

.title-section h1{
font-size:28px;
color:#1d2352;
}


/* MAIN LAYOUT */

.main-container{
display:flex;
gap:40px;
padding:20px 80px;
}


/* FILTER SIDEBAR */

.filters{
width:260px;
background:white;
padding:20px;
border-radius:10px;
}

.travel-box{
background:#2f3d8f;
padding:15px;
border-radius:8px;
color:white;
margin-bottom:20px;
}

.travel-box input{
width:100%;
padding:10px;
border:none;
border-radius:6px;
margin-top:10px;
}

.filters h4{
margin-top:15px;
margin-bottom:10px;
}

.filters label{
display:block;
font-size:14px;
margin-bottom:8px;
}

.filters hr{
margin:15px 0;
border:none;
border-top:1px solid #eee;
}

.see-more{
font-size:13px;
color:#2f3d8f;
cursor:pointer;
}


/* RESULTS */

.results{
flex:1;
}

.results-header{
display:flex;
justify-content:space-between;
margin-bottom:20px;
}


/* LISTING CARD */

.listing{
display:flex;
background:white;
border-radius:10px;
padding:15px;
margin-bottom:25px;
box-shadow:0 2px 5px rgba(0,0,0,0.05);
}

.listing img{
width:230px;
height:150px;
object-fit:cover;
border-radius:8px;
}

.listing-info{
padding:0 20px;
flex:1;
}

.listing-info h3{
font-size:16px;
margin-bottom:10px;
}

.listing-info ul{
font-size:13px;
line-height:1.6;
}

.listing-side{
width:180px;
text-align:center;
border-left:1px solid #eee;
padding-left:15px;
}

.note{
font-size:13px;
color:#555;
margin-bottom:10px;
}

.price{
font-weight:600;
margin:10px 0;
}

.listing-side button{
padding:8px 16px;
border:1px solid #2f3d8f;
background:white;
color:#2f3d8f;
border-radius:6px;
cursor:pointer;
}