#destination-container{
    width:90%;
    max-width:1200px;
    margin:120px auto 50px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.destination-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    transition:.3s;
    display:flex;
    flex-direction:column;
}

.destination-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.destination-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.destination-card small{
    display:inline-block;
    margin:18px 20px 8px;
    background:#eaf4ff;
    color:#0f5db8;
    padding:6px 14px;
    border-radius:20px;
    width:fit-content;
}

.destination-card h2{
    margin:0 20px;
    color:#009966;
    font-size:22px;
    line-height:1.4;
}

.destination-card p{
    margin:15px 20px;
    color:#666;
}

.price-box{
    margin:15px 20px;
}

.price{
    font-size:30px;
    color:#009966;
    font-weight:bold;
}

.from{
    display:block;
    color:#666;
}

.destination-card label{
    margin:0 20px 8px;
    font-weight:600;
}

.destination-card input[type="date"]{
    width:calc(100% - 40px);
    margin:0 20px 20px;
    padding:12px;
    border:1px solid #ccc;
    border-radius:8px;
    box-sizing:border-box;
}

.destination-card button{
    width:calc(100% - 40px);
    margin:20px;
    margin-top:auto;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#1f7aec;
    color:white;
    cursor:pointer;
    font-size:16px;
}

.destination-card button:hover{
    background:#005fd6;
}

.search-box{
    width:90%;
    margin:120px auto 30px;
    display:flex;
    justify-content:center;
    gap:10px;
}

.search-box input{
    width:400px;
    padding:12px 18px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
}

.search-box button{
    padding:12px 24px;
    background:#1f7aec;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

.search-box button:hover{
    background:#005fd6;
}