/*==================================
PACKAGES
==================================*/

.packages{

padding:90px 0;

background:#f8fafc;

}

.home-packages-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.home-package-card{

width:100%;

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.35s;

position:relative;

}

.home-package-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.home-package-card img{

height:220px;

object-fit:cover;

}

.home-package-badge{

position:absolute;

top:18px;

left:18px;

background:#0F766E;

color:white;

padding:6px 12px;

border-radius:20px;

font-size:13px;

font-weight:700;

}

.home-popular{

background:#7C3AED;

}

.home-wishlist{

position:absolute;

right:18px;

top:18px;

background:white;

width:40px;

height:40px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

cursor:pointer;

}

.home-package-content{

padding:22px;

}

.home-duration{

display:block;

margin:10px 0;

color:#64748B;

}

.home-package-content p{

color:#64748B;

margin-bottom:18px;

}

.home-package-bottom{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:20px;

}

.home-book-btn{

display:block;

text-align:center;

background:#0F766E;

color:white;

padding:14px;

border-radius:12px;

font-weight:700;

transition:.3s;

}

.home-book-btn:hover{

background:#14532D;

}