
.packages-hero {
    background: linear-gradient(rgba(7, 17, 31, 0.9), rgba(7, 17, 31, 0.95)), url('images/about-travel.jpg') center/cover no-repeat;
    padding: 70px 0 40px;
    color: #fff;
    text-align: center;
}
.filter-bar {
    background: #ffffff;
    border-bottom: 1px solid #e9edf2;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.package-card-item {
    background: #ffffff;
    border: 1px solid #e9edf2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.package-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.package-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
}
.package-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.package-card-item:hover .package-img-wrap img {
    transform: scale(1.05);
}
.package-price-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #d4af37;
    color: #07111f;
    font-weight: 800;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.package-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #1f589d;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}
.package-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.package-body h4 {
    font-size: 18px;
    font-weight: 800;
    color: #07111f;
    margin-bottom: 6px;
}
.package-body p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}
.package-footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
    font-size: 12px;
    color: #475569;
}
.btn-book-now {
    background: #1f589d;
    color: #fff;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-book-now:hover {
    background: #153e72;
    color: #fff;
}
