/* ==========================
   TOUR PACKAGES
========================== */

.tour-packages{
    padding:80px 0;
    background:#f8f8f8;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:20px;
}

.section-title p{
    max-width:950px;
    margin:auto;
    line-height:30px;
    color:#666;
    font-size:16px;
}

/* Card */

.package-card{

    background:#fff;

    border-radius:10px;

    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    margin-bottom:30px;

    transition:.3s;
}

.package-card:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* Image */

.package-img{
    position:relative;
}

.package-img img{
    width:100%;
}

.package-days{

    position:absolute;

    top:15px;
    left:15px;

    background:#ff5b4d;

    color:#fff;

    padding:8px 15px;

    border-radius:30px;

    font-size:14px;
}

/* Content */

.package-content{
    padding:20px;
}

.package-content h3{

    font-size:22px;

    margin:0 0 10px;

    color:#222;

    font-weight:600;
}

.package-content p{
    color:#777;
}

/* Buttons */

.package-btns{

    display:flex;

    gap:10px;

    margin-top:20px;
}

.call-btn{

    flex:1;

    background:#222;

    color:#fff;

    text-align:center;

    padding:12px;

    text-decoration:none;
}

.call-btn:hover{

    background:#000;

    color:#fff;
}

.view-btn{

    flex:1;

    background:#ff5b4d;

    color:#fff;

    text-align:center;

    padding:12px;

    text-decoration:none;
}

.view-btn:hover{

    background:#000;

    color:#fff;
}