/* Modern Package Card Styles */
.modern-package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.modern-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
/* Image Container */
.package-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.modern-package-card:hover .package-image {
    transform: scale(1.1);
}
/* Price Badge */
.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #95735b, #b8956b);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(149, 115, 91, 0.3);
    z-index: 3;
}
/* Image Overlay */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: 1;
}
/* Permanent Info Bar */
.permanent-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.info-item {
    display: flex;
    align-items: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}
.info-item i {
    margin-right: 5px;
    width: 12px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.8));
}
/* Content Section */
.package-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
/* Package Header */
.package-header {
    margin-bottom: 15px;
}
.package-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.8rem;
}
.package-type {
    color: #95735b;
    font-size: 14px;
    font-weight: 500;
}
/* Description */
.package-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
/* Feature Tags */
.package-features {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.feature-tag {
    background: #f8f9fa;
    color: #495057;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}
.feature-tag.luxury {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #8b6914;
    border-color: #ffd700;
}
.feature-tag:hover {
    background: #95735b;
    color: white;
    border-color: #95735b;
}
/* Modern Button */
.modern-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #95735b, #b8956b);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(149, 115, 91, 0.2);
}
.modern-btn:hover {
    background: linear-gradient(135deg, #7a5d47, #95735b);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(149, 115, 91, 0.3);
}
.modern-btn i {
    transition: transform 0.3s ease;
}
.modern-btn:hover i {
    transform: translateX(5px);
}
/* No Results Styling */
.no-results-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 40px;
}
.no-results-content {
    text-align: center;
    max-width: 400px;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .package-image-container {
        height: 220px;
    }
    .package-content {
        padding: 20px;
    }
    .package-title {
        font-size: 1.1rem;
    }
    .modern-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    .price-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 13px;
    }
}
/* Animation for cards appearing */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.package-card {
    animation: cardFadeIn 0.6s ease forwards;
}
/* Stagger animation delay for multiple cards */
.package-card:nth-child(1) { animation-delay: 0.1s; }
.package-card:nth-child(2) { animation-delay: 0.2s; }
.package-card:nth-child(3) { animation-delay: 0.3s; }
.package-card:nth-child(4) { animation-delay: 0.4s; }
.package-card:nth-child(5) { animation-delay: 0.5s; }
.package-card:nth-child(6) { animation-delay: 0.6s; }
