.package-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1.000);
    backdrop-filter: blur(5px);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.05), transparent);
    z-index: -1;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 20px rgba(59, 130, 246, 0.15);
}

.package-card__image-container {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
}

.package-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.package-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
}

.package-card__placeholder i {
    font-size: 48px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.package-card__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(to right, #3b82f6, #6366f1);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.package-card__content {
    padding: 20px 25px;
    flex: 1;
}

.package-card__title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, #d1d5db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.package-card__description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.package-card__features {
    margin-top: 15px;
}

.package-card__features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-card__features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.package-card__features li i {
    color: #3b82f6;
    margin-right: 10px;
    font-size: 12px;
}

.package-card__footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(59, 130, 246, 0.15);
    background: rgba(30, 41, 59, 0.6);
}

.package-card__price {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.package-card__price .currency {
    font-size: 16px;
    font-weight: 400;
    margin-right: 2px;
    opacity: 0.8;
}

.package-card__actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.package-card__link {
    flex: 1;
    color: #fff;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    transition: all 0.3s ease;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
}

.package-card__link:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

.package-card__button {
    flex: 1;
    display: block;
    background: linear-gradient(to right, #3b82f6, #6366f1);
    color: white;
    text-align: center;
    padding: 10px 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.package-card__button:hover {
    background: linear-gradient(to right, #2563eb, #4f46e5);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    color: white;
}