/* Package Card Styles for Homepage */
.package-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    max-width: 400px;
    margin: 0 auto;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

/* Package Content */
.package-content {
    padding: 20px;
}

.package-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.package-title a {
    color: inherit;
    text-decoration: none;
}

.package-title a:hover {
    color: #ff6b35;
}

.package-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    color: #666;
    font-size: 14px;
}

.package-location i {
    color: #ff6b35;
    font-size: 12px;
}

.package-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.package-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 13px;
}

.meta-item i {
    color: #ff6b35;
    font-size: 12px;
}

/* Package Highlights */
.package-highlights {
    margin-bottom: 20px;
}

.package-highlights h4 {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.highlights-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.highlight-tag {
    background: #f8f9fa;
    color: #2c3e50;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

/* Package Footer */
.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.currency {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b35;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: #ff6b35;
    line-height: 1;
}

.old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 4px;
}

.price-details {
    display: flex;
    align-items: center;
    gap: 8px;
}

.per-person {
    font-size: 12px;
    color: #666;
}

.discount-badge {
    background: #28a745;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
}

/* View Details Button */
.view-details-btn {
    background: #ff6b35;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.view-details-btn:hover {
    background: #e55a2b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    color: white;
    text-decoration: none;
}

/* Category Badge */
.package-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff6b35;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Rating Badge */
.package-rating-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 4px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.package-rating-badge i {
    color: #ffd700;
    font-size: 12px;
}

.package-rating-badge .rating-number {
    color: #2c3e50;
    font-weight: 700;
}

.package-rating-badge .rating-count {
    color: #666;
    font-size: 11px;
}

/* Wishlist Button */
.wishlist-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.wishlist-btn:hover {
    background: #ff6b35;
    color: white;
    transform: scale(1.1);
}

.wishlist-btn.active {
    background: #ff6b35;
    color: white;
}

.wishlist-btn i {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .package-card {
        max-width: 100%;
    }

    .package-content {
        padding: 16px;
    }

    .package-meta {
        gap: 15px;
    }

    .package-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .view-details-btn {
        text-align: center;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .package-image {
        height: 180px;
    }

    .package-content {
        padding: 14px;
    }

    .package-title {
        font-size: 16px;
    }

    .current-price {
        font-size: 18px;
    }
}