/*====================================
  SAFARI PACKAGES
====================================*/

.safari-packages{
    padding:100px 0;
    background:#f8f9fb;
}

.safari-packages .container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/*====================================
  SECTION TITLE
====================================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    color:#c99717;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.section-title h2{
    font-size:48px;
    color:#0b4d2d;
    margin-bottom:20px;
    font-weight:700;
}

.section-title p{
    max-width:720px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:18px;
}

/*====================================
  GRID
====================================*/

.packages-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/*====================================
  CARD
====================================*/

.package-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s ease;
}

.package-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

/*====================================
 IMAGE
====================================*/

.package-image{
    display:block;
    overflow:hidden;
}

.package-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
    display:block;
}

.package-card:hover .package-image img{
    transform:scale(1.08);
}

/*====================================
 CONTENT
====================================*/

.package-content{
    padding:28px;
}

/*====================================
 CATEGORY
====================================*/

.package-category{
    margin-bottom:15px;
}

.package-category a{
    display:inline-block;
    background:#eef7f2;
    color:#0b4d2d;
    text-decoration:none;
    padding:7px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/*====================================
 TITLE
====================================*/

.package-content h3{
    margin-bottom:15px;
    line-height:1.4;
}

.package-content h3 a{
    color:#222;
    text-decoration:none;
    font-size:24px;
    font-weight:700;
    transition:.3s;
}

.package-content h3 a:hover{
    color:#0b4d2d;
}

/*====================================
 DESCRIPTION
====================================*/

.package-excerpt{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
    font-size:15px;
}

/*====================================
 PRICE & BUTTON
====================================*/

.package-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}

.package-price{
    color:#c99717;
    font-size:24px;
    font-weight:700;
}

.package-price del{
    color:#999;
    font-size:15px;
    margin-right:5px;
}

.package-price ins{
    text-decoration:none;
}

.package-btn{
    background:#0b4d2d;
    color:#fff;
    text-decoration:none;
    padding:12px 22px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
    white-space:nowrap;
}

.package-btn:hover{
    background:#c99717;
}

/*====================================
 VIEW ALL BUTTON
====================================*/

.view-all{
    text-align:center;
    margin-top:60px;
}

.view-all a{
    display:inline-block;
    background:#c99717;
    color:#fff;
    text-decoration:none;
    padding:16px 38px;
    border-radius:8px;
    font-size:17px;
    font-weight:700;
    transition:.3s;
}

.view-all a:hover{
    background:#0b4d2d;
}

/*====================================
 RESPONSIVE
====================================*/

@media(max-width:1100px){

.packages-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.safari-packages{
    padding:70px 0;
}

.section-title h2{
    font-size:34px;
}

.section-title p{
    font-size:16px;
}

.packages-grid{
    grid-template-columns:1fr;
}

.package-image img{
    height:240px;
}

.package-bottom{
    flex-direction:column;
    align-items:flex-start;
}

.package-btn{
    width:100%;
    text-align:center;
}

.view-all a{
    width:100%;
    max-width:300px;
}

}
/*====================================
 SEARCH & FILTER
====================================*/

.package-filter{
    margin-bottom:50px;
}

.package-filter form{
    display:flex;
    gap:20px;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
}

.package-filter input,
.package-filter select{
    padding:15px 20px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
    min-width:260px;
    outline:none;
}

.package-filter input:focus,
.package-filter select:focus{
    border-color:#0b4d2d;
}

.package-filter button{
    background:#0b4d2d;
    color:#fff;
    border:none;
    padding:15px 30px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.package-filter button:hover{
    background:#c99717;
}

@media(max-width:768px){

.package-filter form{
    flex-direction:column;
}

.package-filter input,
.package-filter select,
.package-filter button{
    width:100%;
}

}