.tour-packages{
    background:#f8f9fa;
    padding:70px 0;
}

.tour-title h2{
    color:#d4af37;
    font-size:48px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:15px;
}

.tour-title p{
    max-width:900px;
    margin:auto;
    color:#555;
    font-size:17px;
    line-height:30px;
    margin-bottom:50px;
}

.package-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-bottom:30px;
    transition:.3s;
}

.package-card:hover{
    transform:translateY(-8px);
}

.package-image{
    position:relative;
}

.package-image img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.package-duration{
    position:absolute;
    top:15px;
    left:15px;
    background:#0d1b3e;
    color:#fff;
    padding:8px 15px;
    font-size:14px;
    font-weight:600;
    border-radius:30px;
}

.package-content{
    padding:20px;
    text-align:center;
}

.package-content h4{
    color:#0d1b3e;
    font-size:20px;
    font-weight:700;
    margin-bottom:15px;
}

.package-content p{
    color:#666;
    min-height:55px;
    line-height:24px;
}

.package-buttons{
    margin-top:20px;
}

.btn-call,
.btn-view{
    display:inline-block;
    width:48%;
    text-align:center;
    padding:12px;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.btn-call{
    background:#0d1b3e;
}

.btn-view{
    background:#d4af37;
}

.btn-call:hover,
.btn-view:hover{
    color:#fff;
    text-decoration:none;
}