/*=========================================
            Package Section
=========================================*/

.pkg-section{

    padding:100px 0;

    background:#f8f9fb;

}

/*=========================================
            Heading
=========================================*/

.pkg-heading{

    max-width:800px;

    margin:0 auto 70px;

}

.pkg-subtitle{

    display:inline-block;

    color:#FDB913;

    font-size:16px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:15px;

}

.pkg-title{

    font-size:42px;

    font-weight:700;

    color:#222;

    margin-bottom:20px;

    line-height:1.3;

}

.pkg-description{

    font-size:16px;

    color:#666;

    line-height:1.9;

    margin:0;

}

/*=========================================
            Package Card
=========================================*/

.pkg-card{

    background:#ffffff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

    display:flex;

    flex-direction:column;

    position:relative;

}

.pkg-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

/*=========================================
            Image
=========================================*/

.pkg-image{

    position:relative;

    height:280px;

    overflow:hidden;

}

.pkg-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.pkg-card:hover .pkg-image img{

    transform:scale(1.08);

}

.pkg-image::after{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:linear-gradient(

        rgba(0,0,0,.05),

        rgba(0,0,0,.45)

    );

}

/*=========================================
            Badge
=========================================*/

.pkg-badge{

    position:absolute;

    left:20px;

    top:20px;

    z-index:2;

    background:#FDB913;

    color:#111;

    padding:9px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    box-shadow:0 8px 20px rgba(0,0,0,.18);

}

/*=========================================
            Content
=========================================*/

.pkg-content{

    padding:30px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.pkg-content h3{

    font-size:28px;

    font-weight:700;

    color:#222;

    margin-bottom:15px;

}

.pkg-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

/*=========================================
            Places List
=========================================*/

.pkg-list{

    list-style:none;

    padding:0;

    margin:0 0 30px;

}

.pkg-list li{

    display:flex;

    align-items:center;

    margin-bottom:15px;

    color:#444;

    font-size:15px;

    font-weight:500;

}

.pkg-list li:last-child{

    margin-bottom:0;

}

.pkg-list li i{

    width:34px;

    height:34px;

    border-radius:50%;

    background:#FFF4D6;

    color:#FDB913;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-right:12px;

    transition:.35s;

}

.pkg-card:hover .pkg-list li i{

    background:#FDB913;

    color:#ffffff;

}

/*=========================================
            Footer
=========================================*/

.pkg-footer{

    margin-top:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

}

/*=========================================
            Price
=========================================*/

.pkg-price{

    background:#FFF9E8;

    border-radius:12px;

    padding:12px 18px;

}

.pkg-price span{

    display:block;

    font-size:13px;

    color:#666;

    margin-bottom:5px;

}

.pkg-price h4{

    margin:0;

    color:#FDB913;

    font-size:28px;

    font-weight:700;

}

/*=========================================
        WhatsApp Button
=========================================*/

.pkg-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    background:#25D366;

    color:#ffffff;

    text-decoration:none;

    border-radius:50px;

    padding:14px 28px;

    font-size:15px;

    font-weight:600;

    transition:.35s;

}

.pkg-btn i{

    font-size:20px;

    margin-right:10px;

}

.pkg-btn:hover{

    background:#1EA952;

    color:#ffffff;

    text-decoration:none;

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(37,211,102,.35);

}

/*=========================================
        Decorative Border
=========================================*/

.pkg-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:#FDB913;

    transition:.4s;

}

.pkg-card:hover::before{

    width:100%;

}



/*=========================================
            Large Desktop
=========================================*/

@media (min-width:1400px){

    .pkg-title{

        font-size:46px;

    }

}

/*=========================================
                Laptop
=========================================*/

@media (max-width:1199px){

    .pkg-section{

        padding:90px 0;

    }

    .pkg-title{

        font-size:38px;

    }

    .pkg-image{

        height:250px;

    }

    .pkg-content{

        padding:25px;

    }

    .pkg-content h3{

        font-size:25px;

    }

    .pkg-price h4{

        font-size:26px;

    }

}

/*=========================================
                Tablet
=========================================*/

@media (max-width:991px){

    .pkg-section{

        padding:80px 0;

    }

    .pkg-heading{

        margin-bottom:50px;

    }

    .pkg-title{

        font-size:34px;

    }

    .pkg-description{

        font-size:15px;

    }

    .pkg-image{

        height:230px;

    }

    .pkg-content{

        padding:22px;

    }

    .pkg-content h3{

        font-size:24px;

    }

    .pkg-list li{

        font-size:14px;

    }

    .pkg-footer{

        flex-direction:column;

        align-items:flex-start;

    }

    .pkg-btn{

        width:100%;

    }

}

/*=========================================
                Mobile
=========================================*/

@media (max-width:767px){

    .pkg-section{

        padding:70px 0;

    }

    .pkg-heading{

        margin-bottom:40px;

    }

    .pkg-title{

        font-size:30px;

        line-height:1.4;

    }

    .pkg-subtitle{

        font-size:15px;

    }

    .pkg-description{

        font-size:15px;

        line-height:1.8;

    }

    .pkg-image{

        height:220px;

    }

    .pkg-content{

        padding:22px;

    }

    .pkg-content h3{

        font-size:23px;

    }

    .pkg-content p{

        font-size:15px;

        margin-bottom:20px;

    }

    .pkg-list{

        margin-bottom:25px;

    }

    .pkg-price{

        width:100%;

        text-align:center;

    }

    .pkg-price h4{

        font-size:26px;

    }

    .pkg-btn{

        width:100%;

        padding:14px;

        font-size:15px;

    }

    .pkg-btn i{

        font-size:20px;

    }

}

/*=========================================
            Small Mobile
=========================================*/

@media (max-width:575px){

    .pkg-section{

        padding:60px 0;

    }

    .pkg-heading{

        margin-bottom:35px;

    }

    .pkg-title{

        font-size:27px;

    }

    .pkg-description{

        font-size:14px;

    }

    .pkg-image{

        height:200px;

    }

    .pkg-content{

        padding:20px;

    }

    .pkg-content h3{

        font-size:21px;

    }

    .pkg-content p{

        font-size:14px;

    }

    .pkg-list li{

        font-size:14px;

        margin-bottom:12px;

    }

    .pkg-list li i{

        width:30px;

        height:30px;

        min-width:30px;

        font-size:13px;

        margin-right:10px;

    }

    .pkg-badge{

        top:15px;

        left:15px;

        padding:8px 15px;

        font-size:13px;

    }

    .pkg-price{

        padding:10px 15px;

    }

    .pkg-price h4{

        font-size:24px;

    }

    .pkg-btn{

        font-size:14px;

        padding:13px;

    }

    .pkg-btn i{

        font-size:18px;

    }

}

/*=========================================
            Extra Small Mobile
=========================================*/

@media (max-width:420px){

    .pkg-section{

        padding:50px 0;

    }

    .pkg-title{

        font-size:24px;

    }

    .pkg-image{

        height:180px;

    }

    .pkg-content{

        padding:18px;

    }

    .pkg-content h3{

        font-size:20px;

    }

    .pkg-content p{

        font-size:13px;

        line-height:1.7;

    }

    .pkg-list li{

        font-size:13px;

    }

    .pkg-badge{

        font-size:12px;

        padding:7px 14px;

    }

    .pkg-price span{

        font-size:12px;

    }

    .pkg-price h4{

        font-size:22px;

    }

    .pkg-btn{

        font-size:13px;

        border-radius:40px;

    }

}