/* PACKAGES PAGE STYLES */

/* Page Header */
.page-header {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.page-header .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #fff;
}

.page-header p {
    font-size: 18px;
    color: #f0f0f0;
}

/* Package Filters */
.package-filters {
    padding: 40px 0 20px;
    background: #f8f9fa;
}

.filter-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 12px 28px;
    border: none;
    background: #fff;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover,
.filter-btn.active {
    background: #D4AF37;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Featured Package */
.featured-package {
    padding: 60px 0;
    background: #fff;
}

.featured-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #D4AF37;
    color: #000;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.featured-content {
    padding-left: 40px;
}

.featured-tag {
    background: #0B2545;
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.featured-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.package-meta span {
    color: #666;
    font-size: 14px;
}

.package-meta i {
    color: #D4AF37;
    margin-right: 5px;
}

.featured-desc {
    line-height: 1.8;
    margin-bottom: 25px;
}

.featured-highlights {
    margin-bottom: 25px;
}

.featured-highlights h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.featured-highlights ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.featured-highlights li {
    color: #555;
}

.featured-highlights i {
    color: #D4AF37;
    margin-right: 8px;
}

.featured-price {
    margin-bottom: 25px;
}

.price-label {
    font-size: 14px;
    color: #777;
    margin-right: 10px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: #D4AF37;
}

.price-person {
    color: #777;
    font-size: 14px;
}

.featured-buttons {
    display: flex;
    gap: 15px;
}

/* All Packages */
.all-packages {
    background: #f8f9fa;
}

/* Package Cards (enhanced) */
.package-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: .3s;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.package-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.package-card:hover .package-img img {
    transform: scale(1.05);
}

.package-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.package-card-body {
    padding: 20px;
}

.package-card-body h3 {
    margin-bottom: 5px;
}

.package-rating {
    color: #D4AF37;
    font-size: 13px;
    margin-bottom: 10px;
}

.package-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.package-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #777;
}

.package-features i {
    color: #D4AF37;
    margin-right: 5px;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.package-price {
    font-size: 22px;
    font-weight: 700;
    color: #D4AF37;
}

.btn-small {
    padding: 8px 20px;
    font-size: 13px;
}

/* Custom Package Section */
.custom-package {
    padding: 80px 0;
    background: linear-gradient(135deg, #0B2545, #1B3A6B);
    color: #fff;
}

.custom-content h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
}

.custom-content p {
    color: #ddd;
    margin-bottom: 30px;
}

.custom-features {
    margin-bottom: 30px;
}

.custom-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.custom-features i {
    color: #D4AF37;
    font-size: 20px;
    margin-right: 15px;
}

.custom-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media(max-width: 992px) {
    .featured-content {
        padding-left: 0;
    }
    
    .featured-content h2 {
        font-size: 28px;
    }
}

@media(max-width: 768px) {
    .filter-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .featured-highlights ul {
        grid-template-columns: 1fr;
    }
    
    .featured-buttons {
        flex-direction: column;
    }
}