
.packages-hero {
background: linear-gradient(135deg, #ff8c42, #ffa726);    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    color: white;
    padding: 4rem 0 2rem;
    padding-top: 15%;
    /* margin-top: 10%; */
    text-align: center;
}

.packages-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.packages-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.promo-banner {
    background: linear-gradient(135deg, #ff8c42, #ffa726);
    color: white;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

.promo-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.1) 10px,
            rgba(255, 255, 255, 0.1) 20px);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.promo-banner-content {
    position: relative;
    z-index: 1;
}

.filters-section {
    background: #f8f9fa;
    padding: 2rem 0;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.filter-pill {
    background: white;
    border: 2px solid #dee2e6;
    color: #495057;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    text-align: center;
}

.filter-pill:hover {
    border-color: #ff8c42;
    color: #ff8c42;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.2);
}

.filter-pill.active {
    background: #ff8c42;
    border-color: #ff8c42;
    color: white;
}

.filter-pill .count {
    background: rgba(0, 0, 0, 0.1);
    color: inherit;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.package-card.promo-card {
    border: 2px solid #ff8c42;
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.2);
}

.package-card.promo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 140, 66, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.package-image {
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-img-placeholder {
    color: #dee2e6;
    text-align: center;
}

.package-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.package-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.badge-promo {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    animation: promoPulse 2s infinite;
}

.badge-featured {
    background: #ffc107;
    color: #000;
}

@keyframes promoPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.package-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.package-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.package-destination {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.package-duration {
    background: #e9ecef;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
}

.package-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.promo-price {
    color: #ff8c42;
    font-weight: bold;
    font-size: 1.3rem;
}

.regular-price {
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.discount-badge {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
}

.package-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.package-actions {
    display: flex;
    gap: 1rem;
}

.btn-book {
    flex: 1;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border: none;
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: linear-gradient(45deg, #ff8c42, #ffa726);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-details {
    background: transparent;
    border: 2px solid #ff8c42;
    color: #ff8c42;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background: #ff8c42;
    color: white;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .packages-hero {
        padding-top: 200px;
    }
    .packages-hero h1 {
        font-size: 2rem;
    }

    .filter-pills {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-actions {
        flex-direction: column;
    }
}